21.01.2013, 15:26
I'm sure that the Hospital spawn is from AddPlayerClass.
To fix this just set the player team of use a variable such as gTeam and then when the player spawns
Or use it with cases.
To fix this just set the player team of use a variable such as gTeam and then when the player spawns
pawn Код:
if(GetPlayerTeam(playerid) == 1)
{
SetPlayerPos(playerid,x,y,z);
}
else if(GetPlayerTeam(playerid) == 2)
{
SetPlayerPos(playerid,x,y,z);
}