Files
Necrosis/Bindings.xml
T
shaga 65c98bb7ce Lowercase |c color escapes in Title for in-game AddOns list
The 1.12 client only parses lowercase |cAARRGGBB color escapes; the
uppercase |C codes in the Title rendered as literal escape text in the
in-game AddOns list. Lowercasing the escape markers makes the coloured
'Necrosis LdC' title render correctly (matches the normalization the
manifest resolver already applies to the catalog).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-15 12:26:05 -07:00

30 lines
939 B
XML

<Bindings>
<Binding name="SOULSTONE" header="NECRO_BIND">
Necrosis_UseItem("Soulstone");
</Binding>
<Binding name="HEALTHSTONE" header="NECRO_BIND">
Necrosis_UseItem("Healthstone");
</Binding>
<Binding name="SPELLSTONE" header="NECRO_BIND">
Necrosis_UseItem("Spellstone", "Binding");
</Binding>
<Binding name="FIRESTONE" header="NECRO_BIND">
Necrosis_UseItem("Firestone");
</Binding>
<Binding name="STEED" header="NECRO_BIND">
Necrosis_UseItem("Mount");
</Binding>
<Binding name="WARD" header="NECRO_BIND">
Necrosis_BuffCast(43);
</Binding>
<Binding name="BANISH" header="NECRO_BIND">
Necrosis_BuffCast(9);
</Binding>
<Binding name="LIFETAP" header="NECRO_BIND">
Necrosis_Toggle("LeftButton");
</Binding>
<Binding name="REDOCURSE" header="NECRO_BIND">
Necrosis_CurseMenu("MiddleButton");
</Binding>
</Bindings>