Skip to content
Snippets Groups Projects
Commit 341d2903 authored by Zoey76's avatar Zoey76
Browse files

BETA: Disabling macro example by default.

Reported by: St3eT
parent d151cdf5
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@
<!-- Macro presets -->
<macros>
<!-- Macro example with multiple commands. -->
<macro macroId="10000" icon="1" name="Macro name" description="This is a test." acronym="HI!"> <!-- Macro ID must be over 1000, use higher values to avoid conflicts with already existing macros. -->
<macro macroId="10000" icon="1" name="Macro name" description="This is a test." acronym="HI!" enabled="false"> <!-- Macro ID must be over 1000, use higher values to avoid conflicts with already existing macros. -->
<command type="SKILL" skillId="1177" skillLvl="1" /> <!-- To define a skill always include skill ID and level. -->
<command type="DELAY" delay="5" /> <!-- To define a delay always define the time in seconds. -->
<command type="TEXT">/loc</command> <!-- To define a command, just include the string as if it was typed in-game. -->
......
......@@ -97,6 +97,7 @@
<xs:attribute type="xs:string" name="name" use="required" />
<xs:attribute type="xs:string" name="description" use="optional" />
<xs:attribute type="xs:token" name="acronym" use="required" />
<xs:attribute type="xs:boolean" name="enabled" use="optional" />
</xs:complexType>
</xs:element>
</xs:sequence>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment