[Ajuda] Sobre mysql
#7

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.

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;
}
Й apenas um exemplo... .
Com INI serб um pouco mais complicado de se fazer.
Reply


Messages In This Thread
Sobre mysql - by Russo66 - 09.09.2013, 03:03
Re: Sobre mysql - by PT - 09.09.2013, 03:13
Re: Sobre mysql - by Russo66 - 09.09.2013, 03:18
Re: Sobre mysql - by mau.tito - 09.09.2013, 10:10
Re: Sobre mysql - by Abravanel - 09.09.2013, 15:26
Re: Sobre mysql - by Russo66 - 09.09.2013, 15:32
Re: Sobre mysql - by Abravanel - 09.09.2013, 16:07

Forum Jump:


Users browsing this thread: 6 Guest(s)