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!

Disable Double EXP Cards

Status
Not open for further replies.
Elite Diviner
Joined
Jul 13, 2008
Messages
419
Reaction score
217
Not sure if this is already released, I just looked a bit into my source saw something and found a solution to disable Double EXP Cards...
Go into MapleCharacter.java and delete this lines...
Code:
		for ( int i=5210999; i<5211048; i++ ) {
			if (haveItem(i, 1, false, true)) {
				return 2;
			}
		}

Save, compile, done! :)
 
Newbie Spellweaver
Joined
Apr 7, 2008
Messages
66
Reaction score
0
Re: [Release?] Disable Double EXP Cards

Maybe you can add a check to prevent people from misusing it?
 
Elite Diviner
Joined
Jul 13, 2008
Messages
419
Reaction score
217
Re: [Release?] Disable Double EXP Cards

What you mean by misusing it?
 
Legendary Battlemage
Joined
May 23, 2008
Messages
628
Reaction score
4
Re: [Release?] Disable Double EXP Cards

Does this disable them from buying it from the cash shop?
 
Newbie Spellweaver
Joined
Jun 20, 2008
Messages
43
Reaction score
0
Re: [Release?] Disable Double EXP Cards

I'll try testing this soon for myself. And instead of deleting the lines, it might be a good idea to just comment them out.
 
Newbie Spellweaver
Joined
Jun 1, 2008
Messages
85
Reaction score
0
Re: [Release?] Disable Double EXP Cards

Thx. Works fine ^^
 
Status
Not open for further replies.
Back
Top