11.07.2012, 01:49
pawn Код:
CMD:trazertodos(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] < 3)
return SendClientMessage(playerid, COR_CINZA, "Vocк nгo й Administrador Level 3!");
new equipe, Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
if(sscanf(params, "d", equipe))
return SendClientMessage(playerid, COR_CINZA, "USE: /trazertodos [1 ou 2] (1 = Zombies | 2 = Sobreviventes)");
new rand = random(3);
foreach(new i : Player) //---linha 999
if(PlayerInfo[i][pEquipe] == equipe) SendClientMessage(playerid, COR_VERMELHO, "O Administrador trouxe vocк atй ele!"), SetPlayerPos(i, X+rand, Y+rand, Z);
return 1;
}