15.06.2016, 08:55
hi guys i use a INC File Saving System to save players data it works fix for 1 day but on the 2nd day it don't save players data please help me.
here is my Load User_data
here is my Load User_data
Code:
public LoadUser_data(playerid,name[],value[]) { INI_Int("Password",PlayerInfo[playerid][pPass]); INI_Int("Cash",PlayerInfo[playerid][pCash]); INI_Int("Admin",PlayerInfo[playerid][pAdmin]); INI_Int("Kills",PlayerInfo[playerid][pKills]); INI_Int("Deaths",PlayerInfo[playerid][pDeaths]); INI_Int("WantedLevel",PlayerInfo[playerid][pWantedLevel]); INI_Int("Vip",PlayerInfo[playerid][pVip]); INI_Int("Score",PlayerInfo[playerid][pScore]); INI_Int("Condoms",PlayerInfo[playerid][pCondoms]); INI_Int("Banned",PlayerInfo[playerid][pBanned]); INI_Int("Jailed",PlayerInfo[playerid][pJailed]); INI_Int("Drugs",PlayerInfo[playerid][pDrug]); INI_Int("Nopm",PlayerInfo[playerid][pNopm]); INI_Int("Bank",PlayerInfo[playerid][pBank]); INI_Int("Sausages",PlayerInfo[playerid][pSausage]); INI_Int("PassChange",PlayerInfo[playerid][pPassChange]); INI_Int("Mute",PlayerInfo[playerid][pMuted]); return 1; }