- Joined
- Jul 20, 2008
- Messages
- 73
- Reaction score
- 0
Here's an EXP Fixer, it will reset your EXP to zero, regardless said player having negative exp or not.
It's set to Doofus (1012004), you can change this if you want.
Screenshots:
Enjoy.
It's set to Doofus (1012004), you can change this if you want.
Code:
// Made by Kenny of the EverlongMS Staff
var status = 0;
function start() {
action(1, 0, 0);
}
function action(mode, type, selection) {
if (status == 0) {
cm.sendYesNo("Hello, want me to fix your exp thing? I will reset your exp regardless if you're at negative exp or not!");
status++;
} else {
if ((status == 1 && type == 1 && selection == -1 && mode == 0) || mode == -1) {
cm.dispose();
} else {
if (status == 1) {
cm.sendNext ("Your negative experiance is now fixed!");
status++
} else if (status == 2) {
cm.setExp(0);
cm.dispose();
}
}
}
}
Screenshots:
![TeamCanada - [Release] Doofus - Negative exp fixer (SIMPLE) - RaGEZONE Forums TeamCanada - [Release] Doofus - Negative exp fixer (SIMPLE) - RaGEZONE Forums](http://i71.photobucket.com/albums/i143/TML_4_Life_2006/negexpfix1.jpg)
![TeamCanada - [Release] Doofus - Negative exp fixer (SIMPLE) - RaGEZONE Forums TeamCanada - [Release] Doofus - Negative exp fixer (SIMPLE) - RaGEZONE Forums](http://i71.photobucket.com/albums/i143/TML_4_Life_2006/negexpfix2.jpg)
Enjoy.