Dota 2
BOT EXPERIMENT Credit:FURIOUSPUPPY
GGelson Dec 17, 2020 @ 8:24pm
How to get the bots on local game to use my skins ?
So i used the method below to choose the heroes of both teams on local game all pick, but the bots come with default skin. wether before applying this method, the bots on local game all pick used to come with my skins, arcanas, etc. Is there a specific command to use so the bots come with skins again ?

The method to choose heroes i used :

"1. Delete all content of the function of a mode you wanna play, for me its turbo so i delete everything between the lines of

---
function NewTurboModeLogic()

end
---

now it has to be the right end but if you're using notepad++ or something like that it should help you with that.

2. Copy and paste following lines between the ones you left

---
local teamA = team1;
local teamB = team2;

if GameTime() >= 5 then
SelectHero(2, teamA[1]);
SelectHero(3, teamA[2]);
SelectHero(4, teamA[3]);
SelectHero(5, teamA[4]);
SelectHero(6, teamA[5]);
SelectHero(7, teamB[1]);
SelectHero(8, teamB[2]);
SelectHero(9, teamB[3]);
SelectHero(10, teamB[4]);
SelectHero(11, teamB[5]);
return;
end
---

so it's inside the chosen function.

3. Above the function line (in this example above "function NewTurboModeLogic()" line put following lines:

---
local team1 = {
'npc_dota_hero_leshrac',
'npc_dota_hero_nevermore',
'npc_dota_hero_lich',
'npc_dota_hero_shredder',
'npc_dota_hero_crystal_maiden'
};

local team2 = {
'npc_dota_hero_sniper',
'npc_dota_hero_morphling',
'npc_dota_hero_undying',
'npc_dota_hero_bristleback',
'npc_dota_hero_snapfire'
};
---"