12.01.2015, 17:24
hello,
can you please convert this into r38?
can you please convert this into r38?
pawn Код:
mysql_tquery("SELECT `Username`, `Scores` FROM `players` ORDER BY `Scores` DESC LIMIT 10");
mysql_store_result();
new ID, output[800];
while(mysql_retrieve_row())
{
ID ++;
new username[24], scorevariable[80];
cache_get_field_content_int(username, "Username");
cache_get_field_content_int(scorevariable, "Scores");
format(output, sizeof(output), "%s%d. %s %d Kills\n", output, ID, username, strval(scorevariable));
}
mysql_free_result();
ShowPlayerDialog(playerid, DIALOG_TOPSCORES, DIALOG_STYLE_MSGBOX, "Top 10 Scorer", output, "Ok", "Back");