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
12 changes: 12 additions & 0 deletions src/Lumina/Text/Payloads/LinkPayloadType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@ public enum LinkMacroPayloadType
/// <remarks>Parameters: this, ID in the AkatsukiNote sheet, unknown(0), unknown(0), probably an optional display string.</remarks>
AkatsukiNote = 0x0A,

/// <summary>A Description entry is linked.</summary>
/// <remarks>Parameters: this, ID in the DescriptionString sheet, unknown(0), ID in the DescriptionStandAlone[Transient] sheet(?), probably an optional display string.</remarks>
Description = 0x0B,

/// <summary>A WKSPioneeringTrail entry is linked.</summary>
/// <remarks>Parameters: this, ID in the WKSPioneeringTrail sheet, SubrowID in the WKSPioneeringTrail sheet, unknown(0), probably an optional display string.</remarks>
WKSPioneeringTrail = 0x0C,

/// <summary>A MKDLore entry is linked.</summary>
/// <remarks>Parameters: this, ID in the MKDLore sheet, unknown(0), unknown(0), probably an optional display string.</remarks>
MKDLore = 0x0D,

/// <summary>A link is terminated. Akin to <c>&lt;/a&gt;</c>.</summary>
/// <remarks>Parameters: this, reserved(0), reserved(0), reserved(0), reserved(&quot;&quot;).</remarks>
Terminator = 0xCE,
Expand Down
4 changes: 4 additions & 0 deletions src/Lumina/Text/Payloads/MacroCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ public enum MacroCode : byte
/// <remarks>Parameters: string expression, terminator.</remarks>
[MacroCodeData( null, "s x" )] LowerHead = 0x40,

/// <summary>Adds a column from a subsheets secondary sheet.</summary>
/// <remarks>Parameters: sheet name, row ID, subrow ID, column index, secondary sheet name, secondary sheet column index.</remarks>
[MacroCodeData( null, "s . . . s ." )] SheetSub = 0x41,

/// <summary>Pushes the text foreground color, referring to a color defined in UIColor sheet.</summary>
/// <remarks>Parameters: row ID in UIColor sheet or 0 to pop(or reset?) the pushed color, terminator.</remarks>
[MacroCodeData( null, "n x" )] ColorType = 0x48,
Expand Down
Loading