19.06.2010, 22:36
Hi, I have problem with timers... they don't call functions! OK, I'll explain.
So I put
under my
and also I have
under it.
And ofcourse the function(example):
The problem is:
is still true after the timer calls function... (It supposed to be false)
So I put
Код:
SetTimer("FunctionName", 10000, 0);
Код:
OnPlayerConnect(playerid)
Код:
Example[playerid] = 1;
And ofcourse the function(example):
Код:
forward FunctionName(playerid); public FunctionName(playerid) { Example[playerid] = 0; return 1; }
Код:
Example[playerid]