01.03.2013, 21:08
Muda o SalvarContas
pawn Код:
SalvarContas(playerid)
{
new Nome[MAX_PLAYER_NAME];
GetPlayerName(playerid,Nome,sizeof(Nome));
new String[50];
format(String,sizeof(String),CONTAS,Nome);
DOF2_SetInt(String,"Admin", Admin[playerid]);
DOF2_SetInt(String,"Score", GetPlayerScore(playerid));
DOF2_SetInt(String,"Dinheiro", GetPlayerMoney(playerid));
DOF2_SetInt(String,"Matou",Matou[playerid]);
DOF2_SetInt(String,"Morreu",Morreu[playerid]);
DOF2_SaveFile();
return 1;
}