09-20-2016, 07:23 PM
I don"t know which wait function Fabio uses, but wait(x) is based on the fps so far I know.
In other words, the zombies are able to do damage sooner with wait(x) in combo with high fps.
So if Fabio uses:
Then it would maybe be smarter to use:
In other words, the zombies are able to do damage sooner with wait(x) in combo with high fps.
So if Fabio uses:
Code:
object = getent ("(zombie/bot)","targetname");
object moveX (x,y,z,a);
wait(b)
// zombie allow do damage = true;
Code:
object = getent ("(zombie/bot)","targetname");
object moveX (x,y,z,a);
object waittill ("movedone");
// zombie allow do damage = true;