Une condition et 2 tableaux avec les positions pour chaque team :
new Float:SPAWNTEAMONE[NOMBRE_DE_LIGNE][NOMBRE_DE_COORDONNEE] = {
{100.5698, -165.1987, 0.5},
{149.8767, -103.7393, 23},
{66.1463, -120.2624, 3717},
{62.4328, -178.3873, 6},
{37.4471, -205.9436, 7},
{145.3468, -26.7778, 71},
{160.8089, -2122.6721, 543},
{86.2626, -1354, 505}
};
new Float:SPAWNTEAMTWO[NOMBRE_DE_LIGNE][NOMBRE_DE_COORDONNEE] = {
{100.5698, -165.1987, 0.5},
{149.8767, -103.7393, 23},
{66.1463, -120.2624, 3717},
{62.4328, -178.3873, 6},
{37.4471, -205.9436, 7},
{145.3468, -26.7778, 71},
{160.8089, -2122.6721, 543},
{86.2626, -1354, 505}
};
// Ensuite avec une condition simple au spawn :
if(gTeam[playerid] == TEAM_ONE)
{
new SP = random(sizeof(SPAWNTEAMONE)); // Random entre 0 et la taille du tableau.
SetPlayerPos(playerid, SPAWNTEAMONE[SP][0], SPAWNTEAMONE[SP][1], SPAWNTEAMONE[SP][2]); // et les coordonnée.
}
Sinon y'a plus simple :
if(gTeam[playerid] == TEAM_ONE)
{
new SP = random(NOMBRE_DE_SPAWN);
if(SP == 0) SetPlayerPos(playerid, X, Y, Z);
else if(SP == 1) SetPlay...
...
else if(SP == NOMBRE_DE_SPAWN)
}