21.11.2013, 17:29
Quote:
|
Well what is global?
![]() EDIT: if I change it to your code I get errors "underfined playerid" that's why I have FLower(playerid) some more help please ^^ |
Any callback is used by SetTimer doesn't have parameters; however those callbacks are used by SetTimerEx do have parameters (such as playerid etc - that depends on the arguments though).
So it should be:
pawn Код:
// Before the public function:
forward FLower();
// Somewhere else:
public FLower()
{
// code..
}
pawn Код:
FLower(playerid);



