18.01.2013, 10:15
(
Последний раз редактировалось DaRk_RaiN; 18.01.2013 в 15:26.
)
Oh i know your problem pretty well, am so sure that you've SetTimer and not SetTimerEx.
Your timer is set something like this
And then you used
Well that ofc won't work, it will give the money ect to ID 0, now try to replace that timer with this one
Your timer is set something like this
pawn Код:
SetTimer("Robbed",9000,0);
pawn Код:
forward Robbed(playerid);
public Robbed(playerid)
{
GivePlayerMoney(playerid,5000);
//bla bla
}
pawn Код:
SetTimerEx("Robbed",9000,0,"i",playerid);