Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //****** Donations are greatly appreciated. ******
- //****** You can donate directly to Jesse through paypal at https://www.paypal.me/JEtzler ******
- var curXp : int = 0;
- var maxXp : int = 500;
- var xptext : GUIText;
- var level : int = 1;
- function Update () {
- xptext.text = "Level " + level + " XP " + curXp + " / " + maxXp;
- if(curXp == maxXp) {
- levelUpSystem();
- }
- if(Input.GetKeyDown("r")) {
- curXp += 10;
- }
- }
- function levelUpSystem () {
- curXp = 0;
- maxXp = maxXp + 50;
- level++;
- maxHealth += 100;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement