Guest User

Untitled

a guest
Jun 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. public static MaplePacket showMagnifyingEffect(int id, int slot){
  2. MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter(8);
  3. mplew.writeShort(SendOpcode.SHOW_MAGNIFYING_EFFECT.getValue());
  4. mplew.writeInt(id);
  5. mplew.writeShort(slot);
  6. return mplew.getPacket();
  7. }
  8.  
  9.  
  10. public static MaplePacket showCubeEffect(int id) {
  11. MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter(7);
  12. mplew.writeShort(SendOpcode.SHOW_CUBE_EFFECT.getValue());
  13. mplew.writeInt(id);
  14. mplew.write(1);
  15. return mplew.getPacket();
  16. }
Add Comment
Please, Sign In to add comment