SA-MP Forums Archive
[FilterScript] Jakwobs Xp/Lvl/Prestige system (fully saving) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Jakwobs Xp/Lvl/Prestige system (fully saving) (/showthread.php?tid=535652)



Rank System [Updated] - Jakwob - 05.09.2014

This is my first post here, i have never released any of my scripts before but i hope i can release more soon.

I was looking for a Xp/level system for my server i was creating and i never found one the suits me and meets my needs so i created this Filterscript and now i am not working on my server i thought i would share it for everyone to use.

Information

Experiance, level and prestige system, it can be customized so for example you complete a job or DM then you can make it give the player the desired amount of xp, on leveling up you will receive a payment for you success on leveling up and you will recieve a huge $1 million when you prestige. The system saves individual level profile in a seprate folder to where your accounts will be saved.

Features
Commands

/ranks - Check your ranks and see what you can do to earn ranks
/givexp - Give yourself xp (Rcon Admins only)
/givelvl - Give yourself Levels (Rcon Admins Only

Installation

You will need the required includes in order to run this filterscript;
You will need to create a folder in scriptfiles called "Levels" (without this saving will not happen).

Download Version 1.0
Download (sendspace.com) [Version 1.0]
Pastebin [Version 1.0]

Version 1.1 Update

New & Updated Commands: Full list of commands: Changed Level up notification from SendClientMessage to GameTextForPlayer

Download Version 1.1:
Here (sendspace.com)
Here (pastebin.com)

Screenshots:
Rank Help


Level Up


Prestige level


My Rank


If you find any bugs or have any problems with this FS please PM me and i will resolve the problem.


Re: Jakwobs Xp/Lvl/Prestige system (fully saving) - KayJ - 05.09.2014

pawn Code:
CMD:givexp(playerid, params[])
{
    if(!IsPlayerAdmin(playerid))return 0;
    {
                rInfo[playerid][xp] += 50;
        }
        return 1;
}
Code:
rInfo[playerid][xp] += 50;
what is +=50?


Re: Jakwobs Xp/Lvl/Prestige system (fully saving) - Steel_ - 05.09.2014

Quote:
Originally Posted by SturtIndia
View Post
pawn Code:
CMD:givexp(playerid, params[])
{
    if(!IsPlayerAdmin(playerid))return 0;
    {
                rInfo[playerid][xp] += 50;
        }
        return 1;
}
Code:
rInfo[playerid][xp] += 50;
what is +=50?
50 is the amount that gets added to your score.


Re: Jakwobs Xp/Lvl/Prestige system (fully saving) - Jakwob - 05.09.2014

Thats right WIzdo as i used them commands to test if the system is working fine


Re: Jakwobs Xp/Lvl/Prestige system (fully saving) - KayJ - 05.09.2014

Quote:
Originally Posted by Wizdo
View Post
50 is the amount that gets added to your score.
Quote:
Originally Posted by Jakwob
View Post
Thats right WIzdo as i used them commands to test if the system is working fine
I know WIzdo but is it max? Mean to say that can you make it to [ /command (ammount) ] EG


Re: Jakwobs Xp/Lvl/Prestige system (fully saving) - Jakwob - 05.09.2014

The Max xp is 100 then it levels you up. the max Level is 100 and then you prestige, and from then you can reach any prestige level, its easy to change what level you want to be max by changing this
Code:
 if(rInfo[playerid][xp] > 100)
i will be updating the commands so admins can put there own value in instead of 50 also i will be adding textdraws and some more little features.


Re: Jakwobs Xp/Lvl/Prestige system (fully saving) - ZenBish - 17.10.2014

Nice.


Re: Jakwobs Xp/Lvl/Prestige system (fully saving) - Jakwob - 16.11.2014

thanks ZenBish i been checking your mapping out there awesome .


Re: Jakwobs Xp/Lvl/Prestige system (fully saving) - M0HAMMAD - 16.11.2014

useful for Fun servers
nice job.


Re: Jakwobs Xp/Lvl/Prestige system (fully saving) - LeXuZ - 19.11.2014

Looks good I will try it out, good job!