Advertisement
Guest User

Untitled

a guest
May 19th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. <rules>
  2. <equip when="idle|zoning" set="Idle" />
  3. <equip when="resting" set="Resting" />
  4. <equip when="engaged" set="Melee" />
  5. <if Status="idle">
  6. <equip when="resting" set="Resting" />
  7. <equip when="aftercast" set="Idle" />
  8. </if>
  9. <if Spell="Flash">
  10. <action type="equip" when="precast" set="Haste"><body lock="yes">Aristocrat's Coat</body></action>
  11. </if>
  12. <if Spell="Stoneskin"><action type="equip" when="precast" set="Stoneskin" /></if>
  13. <if spell="*na"><Action type="equip" when="precast" set="Haste" /></if>
  14. <if Spell="Regen|Regen II|Regen III">
  15. <equip when="midcast">
  16. <body>Cleric's Briault</body>
  17. </equip>
  18. </if>
  19. <if advanced='"$Devotion"="0"'>
  20. <else>
  21. <action type="midcastdelay" delay="1" />
  22. <if spell="Cure*">
  23. <action type="equip" when="precast" set="Haste">
  24. <feet lock="yes">Cure Clogs</feet></action>
  25. <action type="equip" when="midcast" set="Cure5" />
  26. </if>
  27. </else>
  28. </if>
  29. <if spell="Bar*|Haste|Esuna">
  30. <action type="Midcastdelay" delay="0" />
  31. <action type="equip" when="precast" set="Haste" />
  32. </if>
  33. <if spell="Devotion">
  34. <if SpellTargetDistanceGT="10.2">
  35. <action type="command" when="precast">input /echo Target is too far away! Please move within 10 range.</action>
  36. <action type="cancelspell" />
  37. </if>
  38. <else>
  39. <if HPGT="1250">
  40. <action type="command" when="aftercast">spellcast var rem Devotion;spellcast var rem DevoTarget;spellcast var set Idle Idle</action>
  41. <action type="equip" when="aftercast" set="Idle" />
  42. </if>
  43. <if HPLT="1249">
  44. <action type="equip" when="precast" set="Devotion" />
  45. <action type="command" when="precast">spellcast var set DevoTarget <t>;spellcast var set Idle Devotion;spellcast var set Devotion 1;input /ma "Cure V" <me>;wait 9;input /ja "Devotion" $DevoTarget</action>
  46. <action type="cancelspell" />
  47. <action type="equip" when="aftercast" set="Idle" />
  48. </if>
  49. </else>
  50. </if>
  51. </rules>
  52. </spellcast>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement