Keeping buffs on when you die! (Like GMS)

Joined
May 23, 2008
Messages
628
Reaction score
4
Here's how to keep buffs when you die :)
Watch this video and go to 0:44 before you say anything on this thread

As you can see... He still has his buffs... This is what this release will do :)



Go to MapleCharacter.java and find this block
Code:
private void playerDead() {
		if (getEventInstance() != null) {
			getEventInstance().playerKilled(this);
		}
		cancelAllBuffs();
		getClient().getSession().write(MaplePacketCreator.enableActions());
	}
Now remove the line
Code:
 cancelAllBuffs();
And now when you die you don't lose the buffs :)
Pretty simple lol
EDIT : I'm not sure if this will cause problems... Haven't checked... I just added this to my server
EDIT EDIT : So far nothing bad seems to be happening... And buffs still apply
 
Last edited:
Re: [Release] Keeping buffs on when dead...

nope... That one won't work unless u apply Leifde's patch... The buffs appear to stay on but they don't apply to your character
 
Re: [Release] Keeping buffs on when you die! (Like GMS)

No you don't fully understand yet :/
I mean when you die BUT don't press Ok...
You still lose buffs when you die when you press Ok though :)
If I must... I'll post a video demonstrating it :(
 
Re: [Release] Keeping buffs on when you die! (Like GMS)

No you don't fully understand yet :/
I mean when you die BUT don't press Ok...
You still lose buffs when you die when you press Ok though :)
If I must... I'll post a video demonstrating it :(

Eh.... whats the point then really? So youre saying you'll keep them until you press "ok". And if you get ressed by a gm you'll still have your buffs?
 
Back