24.07.2012, 01:35
(
Последний раз редактировалось FrostGF; 24.07.2012 в 02:49.
)
Por que depois que o servidor da gmx reseta tudo?
pawn Код:
stock salvardados(playerid)
{
GetPlayerName(playerid,nick,24);
format(pfile,sizeof pfile,contas,nick);
DOF2_SetInt(pfile,"dinheiro",GetPVarInt(playerid,"dinheiro"));
DOF2_SetInt(pfile,"level",GetPVarInt(playerid,"level"));
DOF2_SetInt(pfile,"matou",GetPVarInt(playerid,"matou"));
DOF2_SetInt(pfile,"morreu",GetPVarInt(playerid,"morreu"));
DOF2_SetInt(pfile,"bombas",GetPVarInt(playerid,"bombas"));
DOF2_SetInt(pfile,"adminlevel",GetPVarInt(playerid,"adminlevel"));
DOF2_SaveFile();
return 1;
}
stock carregardados(playerid)
{
GetPlayerName(playerid,nick,24);
format(pfile,sizeof pfile,contas,nick);
SetPVarInt(playerid,"dinheiro",DOF2_GetInt(pfile,"dinheiro"));
SetPVarInt(playerid,"level",DOF2_GetInt(pfile,"level"));
SetPVarInt(playerid,"matou",DOF2_GetInt(pfile,"matou"));
SetPVarInt(playerid,"morreu",DOF2_GetInt(pfile,"morreu"));
SetPVarInt(playerid,"bombas",DOF2_GetInt(pfile,"bombas"));
SetPVarInt(playerid,"adminlevel",DOF2_GetInt(pfile,"adminlevel"));
return 1;
}