Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Use npc to fix negative exp, no need edit .java

Mythic Archon
Loyal Member
Joined
Jul 23, 2008
Messages
796
Reaction score
56
Re: [RELEASE] Use npc to fix negative exp, no need edit .java

How does something not work a great release?
@rmzero
No I didn't mean that. I meant if you have negative, you gain positive exp. If you have positive exp, you won't ever reach that line anyways.
 
Junior Spellweaver
Joined
Sep 2, 2008
Messages
130
Reaction score
0
Re: [RELEASE] Use npc to fix negative exp, no need edit .java

Why make another stat reset when every server has one already? Lolz .
Btw, Will it work like this? @_@
PHP:
var Exp = cm.getChar().getExp();

		if (Exp < 0) {
			cm.getPlayer().gainExp(-Exp, false,false);
			cm.sendOk(" Your negative Exp has been fixed. Happy Training~! ");
			cm.dispose();
			reloadChar();
		} else {
			cm.sendOk("You do not have negative EXP. Come back to me again if you have.");
			cm.dispose();
		}
 
Newbie Spellweaver
Joined
Aug 22, 2008
Messages
33
Reaction score
0
Re: [RELEASE] Use npc to fix negative exp, no need edit .java

servers with fixes like this will rot ...
 
Newbie Spellweaver
Joined
Jul 30, 2008
Messages
16
Reaction score
0
Re: [RELEASE] Use npc to fix negative exp, no need edit .java

the first part where selection is 0 is for stats reset , second part where selection is 1 is for fixing of negative exp.
 
Back
Top