[Add-On] Perma Death System
This is a terrible, and tiny release. Feel free to make it more elaborate, I'm simply releasing this to hopefully give other people ideas.
Perma Death System means when your character dies the character gets deleted. Simple as that. Might add a little bit of fun, I know I plan on implementing an optional system like this in a private server I'll hopefully be making later.
Replace playerDead() in MapleCharacter.java with:
Code:
private void playerDead() {
client.disconnect();
client.deleteCharacter(id);
}
Again, very primitive and could be handled much nicer. I'm just trying to spark some silly ideas. Or if you just want to start trolling your players I guess. Have fun.
Re: [Add-On] Perma Death System
I wouldn't use disconnect()
Just remove them from storage manually and close session.
Posted via Mobile Device
Re: [Add-On] Perma Death System
Now imagine combining this with server-wide PvP <3
Re: [Add-On] Perma Death System
Quote:
Originally Posted by
Nmb1Gamer
Now imagine combining this with server-wide PvP <3
In conjunction with all their equips dropping when they die. :)
Re: [Add-On] Perma Death System
Quote:
Originally Posted by
lolwutwat
Not even hard to do lol..
If someone wants I can make that & rlz
Posted via Mobile Device
No one said it was hard to do, so don't imply that I thought it was difficult in any respect. I was merely appending another idea towards this "system".
Wrote this in about a minute without an IDE (not sure if it works as intended, but just a rough idea):
Code:
private void playerDead() {
MapleInventory eqp = getInventory(MapleInventoryType.EQUIPPED);
for (IItem i : eqp) {
MapleInventoryManipulator.drop(client, MapleInventoryType.EQUIPPED, getPosition(), 1);
}
// whatever other things need to be done
}
Re: [Add-On] Perma Death System
Maybe add a notice when somebody dies? Add fame to the killer + the victim's equips.
"[Notice]: Zyong has zygonated lolwutwat."
Hey this system is turning out to be something pretty interesting. LF>Somebody to make a server with this.
Re: [Add-On] Perma Death System
Re: [Add-On] Perma Death System
Didn't this thread get locked? Ohwell, guess my report on kevinfag93 worked.
Re: [Add-On] Perma Death System
@Spiderman, i reported him too l0l
Anywho, i hope this is used on a system o:
Re: [Add-On] Perma Death System
yo, I am so using this:drool:
how come no thought of this before?
its brilliant!
Re: [Add-On] Perma Death System
I remember a game where they had a server that EXP was 2x but once you died, the mob that killed you would get the items and the next group or person to kill those mobs, the mobs would drop the items. if the player was killed in PVP, the winner would get the items. You lost your character eventually and your only option on character selection screen was to be able to delete the character so you could actually save it as a souvenir.