initialShortcuts.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/initialShortcuts.xsd">
  3. <!-- Global shortcuts -->
  4. <shortcuts>
  5. <page pageId="0">
  6. <slot slotId="0" shortcutType="ACTION" shortcutId="2" /> <!-- Attack -->
  7. <slot slotId="3" shortcutType="ACTION" shortcutId="5" /> <!-- Pick Up -->
  8. <slot slotId="10" shortcutType="ACTION" shortcutId="0" /> <!-- Sit/Stand -->
  9. <slot slotId="11" shortcutType="ITEM" shortcutId="5588" /> <!-- Tutorial Guide -->
  10. </page>
  11. <!-- Custom example. -->
  12. <page pageId="1">
  13. <slot slotId="0" shortcutType="MACRO" shortcutId="10000" /> <!-- Macro Test -->
  14. </page>
  15. </shortcuts>
  16. <!-- Human Mystic -->
  17. <shortcuts classId="10">
  18. <page pageId="0">
  19. <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->
  20. <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->
  21. </page>
  22. </shortcuts>
  23. <!-- Elven Mystic -->
  24. <shortcuts classId="25">
  25. <page pageId="0">
  26. <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->
  27. <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->
  28. </page>
  29. </shortcuts>
  30. <!-- Dark Mystic -->
  31. <shortcuts classId="38">
  32. <page pageId="0">
  33. <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->
  34. <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->
  35. </page>
  36. </shortcuts>
  37. <!-- Orc Mystic -->
  38. <shortcuts classId="49">
  39. <page pageId="0">
  40. <slot slotId="1" shortcutType="SKILL" shortcutId="1001" shortcutLevel="1" /> <!-- Soul Cry -->
  41. </page>
  42. </shortcuts>
  43. <!-- Macro presets -->
  44. <macros>
  45. <!-- Macro example with multiple commands. -->
  46. <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. -->
  47. <command type="SKILL" skillId="1177" skillLvl="1" /> <!-- To define a skill always include skill ID and level. -->
  48. <command type="DELAY" delay="5" /> <!-- To define a delay always define the time in seconds. -->
  49. <command type="TEXT">/loc</command> <!-- To define a command, just include the string as if it was typed in-game. -->
  50. <command type="TEXT">!Hellooooo world!</command> <!-- To define a text, just include the string as if it was typed in-game. -->
  51. <command type="SHORTCUT" page="0" slot="11" /> <!-- To define a shortcut (to an equipped item in example), include page and slot number. -->
  52. </macro>
  53. </macros>
  54. </list>