12.01.2010, 07:47
pawn Код:
public OnPlayerSpawn(playerid)
{
//Set the co-ords of the holding place
SetTimerEx("Out", /*The time here in milliseconds*/, false, "d", playerid);
return 1;
}
forward Out(playerid);
public Out(playerid)
{
//Set the new player co-ords.
return 1;
}