09.09.2013, 16:07
In-game tambйm й super fбcil. Como estou no colйgio, nгo tenho o SA-MP para testar, apenas o SA-MP Server.
Й apenas um exemplo... .
Com INI serб um pouco mais complicado de se fazer.
pawn Код:
mysql_function_query(varConn, "select nome, level from users order by level desc limit 10", true, "ShowRankingDialog", "");
forward ShowRankingDialog();
public ShowRankingDialog() {
static
linhas,
campos;
cache_get_data(linhas, campos);
if (linhas) {
new
gBuf[70],
gBuffer[500],
gGet[25],
gLevel,
gPercorrer = -1;
while (++gPercorrer < linhas) {
cache_get_field_content(gPercorrer, "level", gGet); gLevel = strval(gGet);
cache_get_field_content(gPercorrer, "nome", gGet);
format(gBuf, 50, "%iє - Nome: %s - Level: %i\n", gPercorrer+1, gGet, gLevel);
strcat(gBuffer, gBuf);
}
//ShowPlayerDialog(playerid, 9992, DIALOG_STYLE_MSGBOX, "Ranking - Level:", gBuffer, "Fechar", "");
print(gBuffer);
}
return 1;
}
Com INI serб um pouco mais complicado de se fazer.