Nice find thx
I've also customized this script a bit. A while ago I changed this line so that players only have to click once to go from 16 to 0 AI. Click twice to go to 32.

I've also customized this script a bit. A while ago I changed this line so that players only have to click once to go from 16 to 0 AI. Click twice to go to 32.
Code Select
elseif (this.CurButton == "bots") then
--this.iNumBots = max(0,this.iNumBots - 1)
if(this.iNumBots == 0) then
if(this.bDedicated) then
this.iNumBots =this.iMaxDedicatedBots
else
this.iNumBots =this.iMaxBots
end
else
this.iNumBots = this.iNumBots - 16 ---- stock -1, fix added June 2014 by Phobos
end