Awesome thread. I can tell you dedicated a lot of your time to this. Thanks.
Printable View
Awesome thread. I can tell you dedicated a lot of your time to this. Thanks.
hey you knoe the chicken system you got an npc that exchange shcicken for stuff ?
like let say i had a chicken right coz i trade 1 bil for it then i goto another NPC and trade that chicken for an apple or soemthing
or maybe 30 chicken for a GM hat you get me ?
umm im just wanted to know where do u put the "var status" codes lol i just want to know
umm where can u put the var status codes im kinda new so i dont know where to put it
lol double post sorry
Earn NX by killing Mobs
Warning::constructThis is my first release:construct
credits: SatayMS
okay here's the code:
in MapleMap.java find
Code:if(dropOwner.getBuffedValue(MapleBuffStat.MESOUP) != null) {
tempmeso = (int) (tempmeso * dropOwner.getBuffedValue(MapleBuffStat.MESOUP).doubleValue() / 100.0);
}
final int meso = tempmeso;
And there you go. You now earn nx from mobs very simple yes?Code:int addnx;
addnx = meso*2;
if (addnx > 0) {
dropOwner.modifyCSPoints(0, addnx);
dropOwner.getClient().getSession().write(MaplePacketCreator.serverNotice(5, "You have gained NX Cash (+" + addnx +")."));
}
Edit: use this new code it fixed the you have earned +0 nx thing
Edit: use this new code to fix doubling of nx
No download mirrors found.
Nice one. Nice "library" as I like to all it.