[Ajuda] Dini
#5

Cole isso que tu postou no Pawno e tenta compilar se tu conseguir te dou um reputation (Y),
Podia ao menos compilar os code que posta antes mesmo de postar.

@EDIT: Lipe eu consegui perfeitamente, ele salvou a pasta e o nome. Vocк deve estar errando algo :/
Criou a pasta correta? e como vocк estб tentando usar isso, em comando?

pawn Код:
#include <a_samp>
#include <Dini>

#define Vipado "Vip/%s.ini"

new Nome[MAX_PLAYER_NAME];
new Vip[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
    new String[50];  GetPlayerName(playerid,Nome,sizeof(Nome));
    format(String, sizeof(String), Vipado, Nome);
    dini_Create(String);
    dini_IntSet(String,"Vip",0);
    SetarPlayer(playerid);
    return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
    SalvarPlayer(playerid);
    return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
    if(!strcmp(cmdtext,"/vip", true))
    {
        Vip[playerid] = 1;
        return 1;
    }
    return 0;
}
SalvarPlayer(playerid)
{
    GetPlayerName(playerid, Nome, sizeof(Nome));
    new String[50];
    format(String, sizeof(String), Vipado, Nome);
    dini_IntSet(String,"Vip", Vip[playerid]);
    return 1;
}

SetarPlayer(playerid)
{
    GetPlayerName(playerid, Nome, sizeof(Nome));
    new String[50];
    format(String, sizeof(String), Vipado, Nome);
    Vip[playerid] = dini_Int(String, "Vip");
    return 1;
}
Aqui funcionou perfeitamente, eu criei a pasta Vip, e funfou. Tente ai, se estб tudo correto, qualquer coisa fale aqui novamente.
Reply


Messages In This Thread
[Ajuda] Dini - by Lipe_Stronda - 26.09.2011, 00:15
Re: [Ajuda] Dini - by [NWD]Jim._.Carrey - 26.09.2011, 00:43
Re: [Ajuda] Dini - by WLSF - 26.09.2011, 00:45
Re: [Ajuda] Dini - by [NWD]Jim._.Carrey - 26.09.2011, 02:53
Re: [Ajuda] Dini - by WLSF - 26.09.2011, 03:11
Re: [Ajuda] Dini - by [NWD]Jim._.Carrey - 26.09.2011, 03:43
Re: [Ajuda] Dini - by $_Pooweer_$ - 26.09.2011, 03:50
Re: [Ajuda] Dini - by [NWD]Jim._.Carrey - 26.09.2011, 03:53
Re: [Ajuda] Dini - by $_Pooweer_$ - 26.09.2011, 03:54
Re: [Ajuda] Dini - by [NWD]Jim._.Carrey - 26.09.2011, 03:55

Forum Jump:


Users browsing this thread: 1 Guest(s)