Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

SENDOPCODE ::: MOVE_ENV Help :/

Newbie Spellweaver
Joined
Mar 25, 2016
Messages
13
Reaction score
0
Sry for my bad english
Maplestory v83
Hi, I need MOVE_ENV please

public final void moveEnvironment(final String ms, final int type) { broadcastMessage(MaplePacketCreator.environmentMove(ms, type)); environment.put(ms, type); }


public static byte[] environmentMove(String env, int mode) { final MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter(); mplew.writeShort(SendOpcode.MOVE_ENV.getValue()); mplew.writeMapleAsciiString(env); mplew.writeInt(mode); return mplew.getPacket(); }
 
Last edited:
Back
Top