09.03.2018, 21:55
Quote:
Tente:
Код:
forward MResultado(playerid); public MResultado(playerid) { new rows, fields, MNome[128], MScore[128], DialogBox[1200], MResultado[128]; cache_get_data(rows,fields,mysqlConnection); if(rows) { for(new i = 0; i < rows; i++ ) { cache_get_field_content(i,"Nome",MNome, mysqlConnection); cache_get_field_content(i,"Score",MScore, mysqlConnection); if(IsPlayerConnected(i) && !IsPlayerNPC(i)) { format(MResultado,sizeof(MResultado),"Nome: %s -> Score: %d -> Status: {00FF00}Online\n", MNome, strval(MScore)); } else { format(MResultado,sizeof(MResultado),"Nome: %s -> Score: %d -> Status: {FF0000}Offline\n", MNome, strval(MScore)); } strcat(DialogBox,MResultado); } ShowPlayerDialog(playerid,0,DIALOG_STYLE_MSGBOX,"Jogadores",DialogBox,"OK",""); } } |