21.02.2012, 21:19
i edited the cmd look is it good??
PHP код:
if( !strcmp( cmd, "/admins", true ) )
{
new a_string[ 128 ],b_string[ 1000 ];
count++
for( new i; i < MAX_PLAYERS; i++ )
{
if( !IsPlayerConnected( i ) )
continue;
if( PlayerInfo[ i ][ pAdmin ] > 0 )
{
GetPlayerName( i, sendername, 24 );
format( a_string, 128, "{ACFF05}Admins {FFFFFF}-- {E60000}%s {FFFFFF}-- {ACFF05}LVL: {E60000}%d\n", sendername, PlayerInfo[ i ][ pAdmin ] );
strcat(b_string, a_string);
}
if(count == 0) ShowPlayerDialog(playerid,1,DIALOG_STYLE_MSGBOX,"{278227}Admins Online", "{E60000}Nu Sunt Admini Online","Inchide","");
}
ShowPlayerDialog( playerid, 1, DIALOG_STYLE_MSGBOX, "{278227}Admins Online", b_string, "Inchide", "" );
return 1;
}