[PEDIDO] comando /topscore
#6

pawn Код:
enum top_score {
    Top1[128],
    Top2[128],
    Top3[128],
}
new TopScore[top_score];

forward salvarScore(); public salvarScore() //by Ricop522
{
    if(fexist("top.ini"))
    {
        dini_Set( "top.ini", "Top1", TopScore[Top1]);
        dini_Set( "top.ini", "Top2", TopScore[Top2]);
        dini_Set( "top.ini", "Top3", TopScore[Top3]);
    }
    else
    {
        dini_Create("top.ini");
        dini_Set( "top.ini", "Top1", "N/A");
        dini_Set( "top.ini", "Top2", "N/A");
        dini_Set( "top.ini", "Top3", "N/A");
    }
    return 0x01;
}
stock carregarTop() { //by Ricop522
    if(fexist("top.ini"))
    {
        TopScore[top1] = dini_Get("top.ini", "Top1");
        TopScore[top2] = dini_Get("top.ini", "Top2");
        TopScore[top3] = dini_Get("top.ini", "Top3");
    }
    else
    {
        dini_Create("top.ini");
        dini_Set( "top.ini", "Top1", "N/A");
        dini_Set( "top.ini", "Top2", "N/A");
        dini_Set( "top.ini", "Top3", "N/A");
    }
    return 0x01;
}
Getando informaзхes tops:
pawn Код:
if(!strcmp(cmd, "/tops", true))
{
    new j_string[0x80];
    format(j_string, sizeof(j_string), "Top1: %s\nTop2:%s\nTop3:%s", TopScore[top1],TopScore[top2],TopScore[top3]);
    ShowPlayerDialog(playerid, 100, DIALOG_STYLE_LIST, "[Credits by Ricop522]", j_string, "OK", " ");
    return true;
}
O resto para pegar os maiores score's isso, vocк faz ae.


Espero ter ajudado, nгo remova os crйditos : P
Reply


Messages In This Thread
[PEDIDO] comando /topscore - by arakuta - 09.07.2011, 15:49
Re: [PEDIDO] comando /topscore - by RockFire - 09.07.2011, 15:57
Re: [PEDIDO] comando /topscore - by arakuta - 09.07.2011, 16:01
Re: [PEDIDO] comando /topscore - by RockFire - 09.07.2011, 16:04
Re: [PEDIDO] comando /topscore - by arakuta - 09.07.2011, 16:58
Re: [PEDIDO] comando /topscore - by Ricop522 - 09.07.2011, 17:18
Re: [PEDIDO] comando /topscore - by arakuta - 09.07.2011, 17:31
Re: [PEDIDO] comando /topscore - by Ricop522 - 09.07.2011, 17:46
Re: [PEDIDO] comando /topscore - by arakuta - 09.07.2011, 18:00
Re: [PEDIDO] comando /topscore - by RockFire - 09.07.2011, 18:10

Forum Jump:


Users browsing this thread: 1 Guest(s)