26.04.2010, 16:35
Hey,
Is it possible that when I forward a timer, that I forward playerid to? Like
Now it forwards without playerid
This is what I want: forward with playerid.
Regards, Jochem
Is it possible that when I forward a timer, that I forward playerid to? Like
pawn Код:
forward FlightToLosSantos();
public FlightToLosSantos()
{
return 1;
}
pawn Код:
forward FlightToLosSantos(playerid);
public FlightToLosSantos(playerid)
{
GivePlayerMoney(playerid,-500);
SetPlayerPos(playerid,0,0,0);
return 1;
}
Regards, Jochem