[Ajuda] SII pra dof2
#1

Alguem bota em dof2 para mim:

pawn Код:
stock INI_Create(filename[])
{
    if(INI_Exist(filename)) return printf("Erro ao criar o arquivo '%s'. O arquivo jб existe.");

    new File:MeuArquivo;
    MeuArquivo = fopen(filename, io_write);
    fclose(MeuArquivo);
    return 0x1;
}

stock Salvar(playerid)
{
    new Banco[35];
    format(Banco, 35, BankPasta, getName(playerid));
    if(!INI_Exist(Banco))
    {
        INI_Create(Banco);
        INI_Open(Banco);
        INI_WriteInt("Senha",InfoBank[playerid][Senha]);
        INI_WriteInt("Saldo",InfoBank[playerid][Saldo]);
        INI_WriteInt("Conta",InfoBank[playerid][Conta]);
        INI_Save();
        INI_Close();
    }
    else
    {
        INI_Open(Banco);
        INI_WriteInt("Senha",InfoBank[playerid][Senha]);
        INI_WriteInt("Saldo",InfoBank[playerid][Saldo]);
        INI_WriteInt("Conta",InfoBank[playerid][Conta]);
        INI_Save();
        INI_Close();
    }
    return true;
}

stock Carregar(playerid)
{
    InfoBank[playerid][Senha] = 0;//retirando bug( nгo mecha aqui! )
    InfoBank[playerid][Saldo] = 0;//retirando bug( nгo mecha aqui! )
    InfoBank[playerid][Conta] = 0;//retirando bug( nгo mecha aqui! )
    new Banco[35];
    format(Banco, 35, BankPasta, getName(playerid));
    if(!INI_Exist(Banco)) return 0;
    else
    {
        INI_Open(Banco);
        InfoBank[playerid][Senha] = INI_ReadInt("Senha");
        InfoBank[playerid][Saldo] = INI_ReadInt("Saldo");
        InfoBank[playerid][Conta] = INI_ReadInt("Conta");
        INI_Close();
    }
    return true;
}
Reply


Messages In This Thread
SII pra dof2 - by iStronG - 08.12.2013, 13:13
Re: SII pra dof2 - by iStronG - 08.12.2013, 14:39
Re: SII pra dof2 - by Juniiro3 - 08.12.2013, 14:54
Re: SII pra dof2 - by Kuddy - 08.12.2013, 15:08

Forum Jump:


Users browsing this thread: 1 Guest(s)