17.01.2013, 12:53
use a timer before Spawn
an eample
an eample
PHP код:
public OnPlayerSpawn(playerid)
{
if(playerinfaction =3) return SetTimerEx("spawnfact3", 3000, false, "i", playerid); // 3 seconde time to loading a mapping
return true;
}
forward spawnfact3(playerid);
public spawnfact3(playerid)
{
// setplayerpos your code
return true;
}