[DUV] criando /lideres - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [DUV] criando /lideres (
/showthread.php?tid=146294)
[DUV] criando /lideres -
Lipepva - 06.05.2010
Assim eu criei as gTeams dos lideres,
E queria que qnd escrevesse /lideres, mostrase todos das gteams ex:
#define lider1 1
#define lider2 2
Dai eu queria que quando escrevese /lideres mostrase todos que estгo na gteam lider1 e lider2
Eu usei o search nгo achei nada do tipo...
Grato
Re: [DUV] criando /lideres -
ipsBruno - 06.05.2010
Nгo Sei Bem as Variveis mais mesmo assim tenta:
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;
}
Isto й Apenas um
Exemplo,
nгo sei se coincide com as Variбveis de Seu GM mesmo assim entenda como apenas uma
"BASE"
Re: [DUV] criando /lideres -
Lipepva - 06.05.2010
Hum, vou dar uma arrumada e vou tentar de qualquer forma obrigado