05.05.2009, 17:47
At The top of the script
OnGameModeInit
Where you assign the team
Thats how I would do it.
There is proberly a better way but oh well.
pawn Код:
new TeamPM;
pawn Код:
TeamPM = 0;
pawn Код:
if(TeamPM == 0)
{
TeamPM = 1;
//ASSIGN THE TEAM HERE.
}
else
{
SendClientMessage(playerid,Color,"Theres already somebody on that team.");
}
There is proberly a better way but oh well.

