Advertisement
Guest User

Untitled

a guest
May 18th, 2014
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.79 KB | None | 0 0
  1. /******************************************************/
  2. /* D2 packet... not sent very often and the client doesn't
  3.  * seem to expect an answer */
  4. /* FIXME: what the hell does this one do? */
  5. /*
  6. FF 39 13 00 42 65 74 61   57 65 73 74 2C 62 75 73    .9..BetaWest,bus
  7. 74 61 00                                             ta.
  8.  
  9. this one was sent after a closed character was deleted on the auth
  10. server... maybe a notifier for the gateway server?
  11. FF 39 17 00 42 6F 62 73   57 6F 72 6C 64 2C 63 68    .9..BobsWorld,ch
  12. 61 72 6E 61 6D 65 00                                 arname.
  13. */
  14. #define CLIENT_UNKNOWN_39 0x39ff
  15. typedef struct
  16. {
  17.     t_bnet_header h;
  18.     /* character name */ /* what about open chars? */
  19. } PACKED_ATTR() t_client_unknown_39;
  20. /******************************************************/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement