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

hey i need help how to scrip new Save money like = SavedWantedLevel[MAX_PLAYERS]

really simple please help
Reply
#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
#3

i mean for money not wanted
Reply
#4

Quote:
Originally Posted by UserName31
Посмотреть сообщение
i mean for money not wanted
Top of your script.

pawn Код:
enum pInfo
{
    pCash(playerid)(pCash);
}

new PlayerInfo[MAX_PLAYERS][pInfo];

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


Forum Jump:


Users browsing this thread: 1 Guest(s)