08.08.2010, 08:31
In OnPlayerSpawn
If you are not using teams just swap if(GetPlayerTeam(playerid)==blahblah -for- if(GetPlayerSkin(playerid)==blahblah
pawn Код:
if(GetPlayerTeam(playerid)== YOUR_TEAM_IDS) //swap for your team id
{
SetPlayerPos(playerid,x,y,z); //spawnpoint co-ords
}
]if(GetPlayerTeam(playerid)== YOUR_TEAM_IDS)//swap for another team id
{
SetPlayerPos(playerid,x,y,z); //more spawnpoint co-ords
}

