25.04.2016, 22:05
PHP код:
forward SkipSpawn(playerid);
public OnPlayerRequestClass(playerid)
{
SetTimerEx("SkipSpawn",0,1,"i",playerid);//It's required to have atleast 1 millisecond
return 1;
}
public SkipSpawn(playerid)
{
//Set Spawn Information Here Using SpawnInfo(...);
SpawnPlayer(playerid);
return 1;
}