Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. public static MaplePacket getAuthSuccessRequestPin(MapleClient c, String account) {
  2. MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
  3. // [00 00 00 00 00 00 00 00]
  4. // [60 43 C2 01]
  5. // [00]
  6. // [00]
  7. // [00 00 00]
  8. // 08 00
  9. // [65 78 70 65 64 69 61 7A]
  10. // [01]
  11. // [00 00 00 00 00 00 00 00 00 00 DC 33 C2 EA 93 CB 01 04 00 00 00]
  12. // [01 01]
  13. // [A6 29 F6 BF 42 D3 C7 21]
  14. mplew.write0(8);
  15. mplew.writeInt(c.getAccID()); // Account ID
  16. mplew.write(0); // Gender, PIN select
  17. mplew.write(0); // Administrator Byte
  18. mplew.write0(3);
  19. mplew.writeShort(8);
  20. mplew.writeMapleAsciiString(account);
  21. mplew.write(1);
  22. mplew.write0(21);
  23. mplew.writeShort(1);
  24. mplew.writeLong(System.currentTimeMillis());
  25. return mplew.getPacket();
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement