18.08.2011, 15:32
Hello
I don't understand why a lot of people got problem with GetPlayerSkillLevel. Okey so i made it for lazy people what won't make this or they're too..
Description
I made this in few minutes. there's only two functions to use:
Saving & Loading?
I will show you how to do this by using Y_Ini system (by ******).
Saving:
Loading:
Set when player spawn:
And that's all!
Bugs:
In my script? hah.. :>
Need help with saving?
Tell us about your saving & loading system and we (or me) will try to help you out your problem.
Download:
I don't understand why a lot of people got problem with GetPlayerSkillLevel. Okey so i made it for lazy people what won't make this or they're too..

Description
I made this in few minutes. there's only two functions to use:
pawn Код:
native GetPlayerSkillLevelEx(playerid, weapon_skill_id);
native SetPlayerSkillLevelEx(playerid, weapon_skill_id, skill_value);
I will show you how to do this by using Y_Ini system (by ******).
Saving:
pawn Код:
new INI:Account = INI_Open(PlayerFile(playerid));
INI_WriteInt(Account, "WEAPON_SKILL_PISTOL", GetPlayerSkillLevelEx(playerid, WEAPONSKILL_PISTOL));
INI_Close (Account);
pawn Код:
function LoadPlayerStats(playerid, name[], value[])
{
if(!strcmp(name, "WEAPON_SKILL_PISTOL")) GetPlayerSkillLevelEx(playerid, strval(value));
return true;
}
pawn Код:
INI_ParseFile(PlayerFile(playerid), "LoadPlayerStats", .bExtra = true, .extra = playerid);
SetPlayerSkillLevelEx(playerid, WEAPONSKILL_PISTOL, GetPlayerSkillLevelEx(playerid, WEAPONSKILL_PISTOL));
Bugs:
In my script? hah.. :>
Need help with saving?
Tell us about your saving & loading system and we (or me) will try to help you out your problem.
Download: