Skip to content
Merged
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
10 changes: 8 additions & 2 deletions addons/libs/packets/fields.lua
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ enums['action'] = {
[0x0F] = 'Switch target',
[0x10] = 'Ranged attack',
[0x12] = 'Dismount Chocobo',
[0x13] = 'Tractor Dialogue'
[0x14] = 'Zoning/Appear', -- I think, the resource for this is ambiguous.
[0x19] = 'Monsterskill',
[0x1A] = 'Mount',
Expand Down Expand Up @@ -3462,12 +3463,17 @@ fields.incoming[0x0F6] = L{
{ctype='unsigned int', label='Type', fn=e+{'ws mark'}}, -- 04
}

enums['reraise'] = {
[0x01] = 'Raise dialogue',
[0x02] = 'Tractor dialogue',
}

-- Reraise Activation
fields.incoming[0x0F9] = L{
{ctype='unsigned int', label='ID', fn=id}, -- 04
{ctype='unsigned short', label='Index', fn=index}, -- 08
{ctype='unsigned char', label='_unknown1'}, -- 0A
{ctype='unsigned char', label='_unknown2'}, -- 0B
{ctype='unsigned char', label='Category', fn=e+{'reraise'}}, -- 0A
{ctype='unsigned char', label='_unknown1'}, -- 0B
}

-- Furniture Interaction
Expand Down