27.07.2011, 22:09
In that case you could use a variable which you toggle.
pawn Код:
new bool:skipThisTime;
forward Timer();
public Timer()
{
if(skipThisTime == true)
{
skipThisTime = false;
return true;
}
}
// if you want to skip the next occurrence
skipThisTime = true;