Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions addons/libs/packets/data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ data.incoming[0x08D] = {name='Job Points', description='Contains all jo
data.incoming[0x0A0] = {name='Party Map Marker', description='Marks where players are on your map.'}
data.incoming[0x0AA] = {name='Spell List', description='Packet that shows the spells that you know.'}
data.incoming[0x0AC] = {name='Ability List', description='Packet that shows your current abilities and traits.'}
data.incoming[0x0AD] = {name='MMM List', description='Packet that shows your current Moblin Maze Mongers Vouchers and Runes.'}
data.incoming[0x0AE] = {name='Mount List', description='Packet that shows your current mounts.'}
data.incoming[0x0B4] = {name='Seek AnonResp', description='Server response sent after you put up party or anon flag.'}
data.incoming[0x0B5] = {name='Help Desk Open', description='Sent when you open the Help Desk submenu.'}
Expand Down
10 changes: 10 additions & 0 deletions addons/libs/packets/fields.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3338,6 +3338,16 @@ fields.incoming[0x0A0] = L{

--0x0AA, 0x0AC, and 0x0AE are all bitfields where the lsb indicates whether you have index 0 of the related resource.

-- Moblin Maze Mongers information
-- It appears that they anticipated a substantial expansion of the system,
-- but field sizes here are limited to the available items.
fields.incoming[0x0AD] = L{
{ctype='bit[16]', label='Maze Vouchers'},
{ctype='data[6]', label='_junk1'},
{ctype='bit[128]', label='Maze Runes'},
{ctype='data[0x68]', label="_junk2"},
}

-- Help Desk submenu open
fields.incoming[0x0B5] = L{
{ctype='data[0x14]', label='_unknown1'}, -- 04
Expand Down