23.11.2010, 02:17
i think this is what u needed
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
SetTimer("Wooo",2000,false);// 2 seconds it will spawn u
return 1;
}
forward Wooo(playerid);
public Wooo(playerid)
{
SpawnPlayer(playerid);
SetPlayerPos(playerid, -2868.3137,471.6636,4.8773);
SetPlayerSkin(playerid, 29);
return 1;
}

