18.10.2012, 22:38
I have this
i want that "pScore" to player score on tab list.
i tested with this
its adding score to (Users/playername) file but i want that score to score on tablist. help me!
its something setplayerscore... but i dont know
loading data
PHP код:
enum pInfo
{
pPass,
pCash,
pAdmin,
pKills,
pDeaths,
pTimesConnected,
pScore
}
i tested with this
PHP код:
CMD:test(playerid,params[])
{
PlayerInfo[playerid][pScore]++;
return 1;
}
its something setplayerscore... but i dont know
loading data
PHP код:
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("TimesConnected",PlayerInfo[playerid][pTimesConnected]);
INI_Int("Score",PlayerInfo[playerid][pScore]);
return 1;
}