12.08.2009, 05:18
Код:
OnPlayerRequestSpawn(playerid)
{
if(GetPlayerName(playerid) == "insert the name here")
{
SetPlayerPos(playerid, x, y, z); //replace x, y, z with coords
SetPlayerSkin(playerid, skin); //replace skin with the skin id
return 1;
}
else{ }
return 1;
}

