12.09.2013, 15:57
Quote:
What if you have more than one team ??
i mean how to assign (team1) to spawn at this RandomSpawns area, and (team2) in another RandomSpawns area ? if you know what i mean ! |
pawn Code:
OnPlayerSpawn(etc)
{
if(playerteam == team1)
{
//Spawn code for team 1
}
else if(playerteam == team2)
{
//Spawn code for team 2
}
return 1;
}