How to script a money save like new SavedWantedLevel[MAX_PLAYERS]??
#2

At the top of your script, below defines put this.
pawn Код:
enum pInfo
{
    pWanted(playerid)(pWanted);
}

new PlayerInfo[MAX_PLAYERS][pInfo];

forward LoadUser_data(playerid,name[],value[]);
public LoadUser_data(playerid,name[],value[])
{
    INI_Int("Wanted",PlayerInfo[playerid][pWanted]);
    return 1;
}
Under OnPlayerDisconnect
pawn Код:
public OnPlayerDisconnect(playerid, reason)
{
    new INI:File = INI_Open(UserPath(playerid));
    INI_SetTag(File,"data");
    INI_WriteInt(File,"Wanted",PlayerInfo[playerid][pWanted]);
    INI_Close(File);
    return 1;
}
Reply


Messages In This Thread
How to script a money save like new SavedWantedLevel[MAX_PLAYERS]?? - by UserName31 - 29.06.2012, 19:15
Re: How to script a money save like new SavedWantedLevel[MAX_PLAYERS]?? - by Cxnnor - 29.06.2012, 19:25
Re: How to script a money save like new SavedWantedLevel[MAX_PLAYERS]?? - by UserName31 - 29.06.2012, 19:40
Re: How to script a money save like new SavedWantedLevel[MAX_PLAYERS]?? - by Cxnnor - 29.06.2012, 20:11

Forum Jump:


Users browsing this thread: 2 Guest(s)