- Joined
- Jul 19, 2008
- Messages
- 151
- Reaction score
- 0
Well, it's not much of a release. I don't think it's be released yet. On my server, I usually like to mess with people and I always wanted to use that !lowhp command on them or drain their MP. So I kinda changed the numbers in the !kill command. So instead of killing them, this sets their HP and MP to 1.
If you like it then go ahead and use it. If you don't like it then don't waste your time flaming and don't even bother with the sarcasm. Like I said, it's not much of a release since I didn't do much, but considering nobody made a command like this (at least not that I know of) then I might as well share it with people who might have fun torturing their players lol.
I tested it, it works. If you can't compile something this simple then you don't deserve to host a server.
Code:
} else if (splitted[0].equals("!hurt")) {
MapleCharacter victim1 = cserv.getPlayerStorage().getCharacterByName(splitted[1]);
victim1.setHp(1);
victim1.setMp(1);
victim1.updateSingleStat(MapleStat.HP, 1);
victim1.updateSingleStat(MapleStat.MP, 1);
If you like it then go ahead and use it. If you don't like it then don't waste your time flaming and don't even bother with the sarcasm. Like I said, it's not much of a release since I didn't do much, but considering nobody made a command like this (at least not that I know of) then I might as well share it with people who might have fun torturing their players lol.
I tested it, it works. If you can't compile something this simple then you don't deserve to host a server.