20.04.2012, 11:03
public functions can be called via timer, or CallRemote/LocalFunction.
Stocks however cannot.
So
will not work.
Will work.
Also, public functions can't return strings, currently.
Stocks however cannot.
So
pawn Код:
SetTimer("Function",1000,false);
stock Function(playeird)
pawn Код:
SetTimer("Function",1000,false);
forward Function(playerid);
public Function(playeird)
Also, public functions can't return strings, currently.