SA-MP Forums Archive
[Pedido] Sistema de Registro [COM ESSAS INFO'S] - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Pedido] Sistema de Registro [COM ESSAS INFO'S] (/showthread.php?tid=378294)



Sistema de Registro [COM ESSAS INFO'S] - Rhayziin - 17.09.2012

Tipo, eu tentei aki, mas da erro...

Se alguem souber colocar essas informaзхes em um sistema de registro, passa ae:

pawn Код:
stock SalvarConta(playerid)
{
    new arquivo[50], playername[MAX_PLAYER_NAME];
    GetPlayerName(playerid, playername, sizeof(playername));
    format(arquivo, sizeof(arquivo), "BrazukaRPG/Contas/%s.txt", playername);
    if(DOF2_FileExists(arquivo))
    {
        DOF2_SetInt(arquivo, "Admin", Info[playerid][zAdmin]);
        DOF2_SetInt(arquivo, "Profissao", Profissao[playerid]);
        SetPlayerScore(playerid, Info[playerid][zLevel]);
        DOF2_SetInt(arquivo, "Level", Info[playerid][zLevel]);
        DOF2_SetInt(arquivo, "Respeito", Info[playerid][zRespeito]);
        Info[playerid][zDinheiro] = GetPlayerMoney(playerid);
        DOF2_SetInt(arquivo, "Dinheiro", Info[playerid][zDinheiro]);
    }
    else
    {
        DOF2_CreateFile(arquivo);
        DOF2_SetInt(arquivo, "Admin", Info[playerid][zAdmin]);
        DOF2_SetInt(arquivo, "Profissao", Profissao[playerid]);
        Info[playerid][zLevel] = GetPlayerScore(playerid);
        DOF2_SetInt(arquivo, "Level", Info[playerid][zLevel]);
        DOF2_SetInt(arquivo, "Respeito", Info[playerid][zRespeito]);
        Info[playerid][zDinheiro] = GetPlayerMoney(playerid);
        DOF2_SetInt(arquivo, "Dinheiro", Info[playerid][zDinheiro]);
    }
    return 1;
}

stock CarregarConta(playerid)
{
    new arquivo[50], playername[MAX_PLAYER_NAME];
    GetPlayerName(playerid, playername, sizeof(playername));
    format(arquivo, sizeof(arquivo), "BrazukaRPG/Contas/%s.txt", playername);
    Info[playerid][zAdmin] = DOF2_GetInt(arquivo, "Admin");
    Info[playerid][zRespeito] = DOF2_GetInt(arquivo, "Respeito");
    SetPlayerScore(playerid, Info[playerid][zLevel]);
    Info[playerid][zLevel] = DOF2_GetInt(arquivo, "Level");
    Info[playerid][zDinheiro] = DOF2_GetInt(arquivo, "Dinheiro");
    GivePlayerMoney(playerid, Info[playerid][zDinheiro]);
    Profissao[playerid] = DOF2_GetInt(arquivo, "Profissao");
    return 1;
}



Re: Sistema de Registro [COM ESSAS INFO'S] - Stronda xD - 17.09.2012

sistema de registro DOF2 cara, veja na net que tem vбrios tutos para colocar sue GM nesse sistema