PIN system + player ranking fix + rebalanced equip EXP calculations

Added the PIN feature. Fixed ranking now calculating ranks now
world-based instead of overall. Rebalanced equip exp gain and made
cosmetic equipments no more leveling up (cosmetics leveling up are
useless).
This commit is contained in:
ronancpl
2017-06-03 20:02:19 -03:00
parent 02cc9efb00
commit 809d90564c
43 changed files with 193 additions and 78 deletions

View File

@@ -694,8 +694,10 @@ public class MaplePacketCreator {
mplew.writeLong(0);//isquietban time
mplew.writeLong(c.getSessionId()); //creation time
mplew.writeInt(0);
mplew.writeShort(2);//PIN
if (ServerConstants.ENABLE_PIN) mplew.writeShort(0);
else mplew.writeShort(2);
return mplew.getPacket();
}