Code:
if(pBot->f_spawn_time+0.0<gpGlobals->time)
{
bBotMovement = TRUE;
}
That code means they will move immediately doesn't it? should you set it to some future time? ie:
Code:
if(pBot->f_spawn_time+1.0<gpGlobals->time)
perhaps? Give them at least a tenth of a sec or summat to do whatever task you want done? granted I allowed a full second but you get my point....