Quote:
Originally posted by Sep3kP2P
and thats not how timeouts work at all. they go like this...
NPC Code:
if(created){
timeout=.05;
}
if(timeout){
timeout=.05;
COMMANDS;
}
|
well accually if your doing it for a npc server you can only have timeout = .1;
and I always go like this
if(timeout){
commands;
timeout=0.1;
}
but either way it works