20.09.2012, 02:12
pawn Код:
stock SalvarContas(playerid)
{
if(!DOF2_FileExists(Contas(playerid))) DOF2_CreateFile(Contas(playerid));
DOF2_SetInt(zArquivo, "Admin", Info[playerid][zAdmin]);
DOF2_SetInt(zArquivo, "Profissao", Profissao[playerid]);
Info[playerid][zLevel] = GetPlayerScore(playerid);
DOF2_SetInt(zArquivo, "Level", Info[playerid][zLevel]);
DOF2_SetInt(zArquivo, "Respeito", Info[playerid][zRespeito]);
Info[playerid][zDinheiro] = GetPlayerMoney(playerid);
DOF2_SetInt(zArquivo, "Dinheiro", Info[playerid][zDinheiro]);
DOF2_SetInt(zArquivo, "Senha", Info[playerid][zSenha]);
return 1;
}