06.05.2010, 17:17
Nгo Sei Bem as Variveis mais mesmo assim tenta:
Iso Ira Lhe Ajudar
Isto й Apenas um Exemplo, nгo sei se coincide com as Variбveis de Seu GM mesmo assim entenda como apenas uma "BASE"
Iso Ira Lhe Ajudar
pawn Code:
if(strcmp(cmd, "/lideres", true) == 0)//Comando
{
new x;
SendClientMessage(playerid, COLOR_GREEN, "[DraKoN's Server]: Lista de Gangs :");
for(new i=0; i < MAX_GANGS; i++) {
if(gangInfo[i][0]==4) {//Level no meu caso 4
format(string, sizeof(string), "%s%s(%d) - %d Lider", string,gangNames[i],i,gangInfo[i][1]);
x++;
if(x > 4) {
SendClientMessage(playerid, COLOR_YELLOW, string);
x = 0;
format(string, sizeof(string), "");
} else {
format(string, sizeof(string), "%s, ", string);
}
}
}
if(x <= 4 && x > 0) {
string[strlen(string)-2] = '.';
SendClientMessage(playerid, COLOR_YELLOW, string);//COR
}
return 1;
}