forcedreg

Premium Sub

Jan 9th, 2022 (edited)
1,142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 1.13 KB | None | 0 0
  1. func updateRights(s *Session) {
  2.     update := &mhfpacket.MsgSysUpdateRight{
  3.         ClientRespAckHandle: 0,
  4.         Unk1:                0x34E, //0e with normal sub 4e when having premium it's probably a bitfield?
  5.         // 01 = Character can take quests at allows
  6.         // 02 = Hunter Life, normal quests core sub
  7.         // 03 = Extra Course, extra quests, town boxes, QOL course, core sub
  8.         // 06 = Premium Course, standard 'premium' which makes ranking etc. faster
  9.         // some connection to unk1 above for these maybe?
  10.         // 06 0A 0B = Boost Course, just actually 3 subs combined
  11.         // 08 09 1E = N Course, gives you the benefits of being in a netcafe (extra quests, N Points, daily freebies etc.) minimal and pointless
  12.         // no timestamp after 08 or 1E while active
  13.         // 0C = N Boost course, ultra luxury course that ruins the game if in use but also gives a
  14.         Rights: []mhfpacket.ClientRight{
  15.             {
  16.                 ID:        1,
  17.                 Timestamp: 0,
  18.             },
  19.             {
  20.                 ID:        2,
  21.                 Timestamp: 0x5FEA1781,
  22.             },
  23.             {
  24.                 ID:        3,
  25.                 Timestamp: 0x5FEA1781,
  26.             },
  27.             {
  28.                 ID:        6,
  29.                 Timestamp: 0x5FEA1781,
  30.             },
  31.         },
  32.         UnkSize: 0,
  33.     }
  34.     s.QueueSendMHF(update)
  35. }
Add Comment
Please, Sign In to add comment