[Ajuda] /admins em dialog - 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: [Ajuda] /admins em dialog (
/showthread.php?tid=581585)
/admins em dialog -
Welconha - 14.07.2015
Код:
if( !strcmp( cmd, "/adminss", true ))
{
new
a_d_m
;
foreach(Player, i )
{
if( Info[ i ][ Ajudante ] == 1 )
{
if( Info[ i ][ Ocultado ] == false )
{
a_d_m ++;
format( gstring, 100,, "{93F1E4}Ajudante {FFFFFF}%s ( %d )", PlayerName( i ), i );
strcat( dialog, gstring );
}
}
}
ShowPlayerDialog( playerid, 0, DIALOG_STYLE_LIST, "BWR Staff", gstring, "Fechar", "");
if( a_d_m == 0 ) return format( dialog, sizeof( dialog ), "[ BWR Staff ] Nenhum membro da staff conectado no momento !");
return 1;
}
Estou tentando fazer o comando /admins sу que em dialog, sу que estб parando de funcionar quando eu compilo '-'
Re: /admins em dialog -
zSuYaNw - 14.07.2015
Ai tu forзa mano.
PHP код:
if(!strcmp(cmdtext, "/admins", true)){
static
i, x, bool: b;
for(b = false, i = 0, x = GetMaxPlayers(); i ^ x; ++i){
if( Info[ i ][ Ajudante ] == 1 )
{
if( Info[ i ][ Ocultado ] == false )
{
format( gstring, 100,, "{93F1E4}Ajudante {FFFFFF}%s ( %d )", PlayerName( i ), i );
strcat( dialog, gstring );
b = true;
}
}
}
if(!b) return format( dialog, sizeof( dialog ), "[ BWR Staff ] Nenhum membro da staff conectado no momento !");
ShowPlayerDialog(playerid, 0, DIALOG_STYLE_LIST, "BWR Staff", dialog, "Fechar", "");
return true;
}
Re: /admins em dialog -
Welconha - 14.07.2015
Continua parando de funcionar =\
Jб testei compilar sem o cmd e compila de boa...
Re: /admins em dialog -
zSuYaNw - 14.07.2015
Qual erro?
Re: /admins em dialog -
Welconha - 14.07.2015
Tinha editado lб, o pawn para de funcionar man =\