View Single Post
Re: Hold the key ???
Old
  (#2)
BAStumm
Member
 
BAStumm's Avatar
 
Status: Offline
Posts: 138
Join Date: Jan 2004
Location: Spokane, WA USA
Default Re: Hold the key ??? - 02-03-2004

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....







Last edited by BAStumm; 02-03-2004 at 12:24..
  
Reply With Quote