30.12.2011, 19:57
Hello guys,i've this public function: (example).
This is a unique timer that has Health and Armour anticheat,this 2 has ONE single public/forward.
My question is: I need to run 1 for every "if" (2 same timers total) or just 1 timer globally?
pawn Код:
public Anticheat()
(
if(health == 100.0)
{
SetTimer("HealthArmourCheat", 5000, true);
{
continue;
}
if(armour == 100.0)
{
SetTimer("HealthArmourCheat", 5000, true);
}
}
return 1;
My question is: I need to run 1 for every "if" (2 same timers total) or just 1 timer globally?