Guest User

Untitled

a guest
Jun 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. 82 packet.add<int16_t>(0);
  2. 83 packet.add<int32_t>(0);
  3. 84 packet.add<int32_t>(0);
  4. 85 packet.add<int16_t>(0);
  5. 86
  6. 87 player->getInventory()->rockPacket(packet); // Teleport Rock/VIP Rock maps
  7. 88
  8. 89 packet.add<int32_t>(0);
  9. 90 packet.add<int32_t>(0);
  10. 91 packet.add<int32_t>(0);
  11. 92 packet.add<int8_t>(0);
  12. 93 packet.add<int64_t>(TimeUtilities::getServerTime());
  13. 94 player->getSession()->send(packet);
  14.  
  15.  
  16. to
  17.  
  18. packet.add<int16_t>(0);
  19. packet.add<int32_t>(0);
  20. packet.add<int32_t>(0);
  21. packet.add<int16_t>(0);
  22.  
  23. player->getInventory()->rockPacket(packet); // Teleport Rock/VIP Rock maps
  24.  
  25. player->getMonsterBook()->connectData(packet);
  26. packet.add<int32_t>(0);
  27. packet.add<int16_t>(0);
  28.  
  29. packet.add<int64_t>(TimeUtilities::getServerTime());
  30. player->getSession()->send(packet);
Add Comment
Please, Sign In to add comment