Advertisement
Quixacotl

[XML] FFXI GEO Skillup XML

Apr 11th, 2013
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.74 KB | None | 0 0
  1. <spellcast xmlns:xi="http://www.w3.org/2001/xinclude">
  2. <config Debug="false" ShowGearSwaps="false"/>
  3.  
  4. <variables clear="yes">
  5.     <var name="SkillUp">0</var>
  6.     <var name="RestTime">180</var>
  7. </variables>
  8.  
  9. <sets>
  10.  
  11. <group default="yes" name="GEO">
  12.     <set name="Idle|Resting|Engaged">
  13.     </set>
  14. </group>
  15.  
  16. </sets>
  17.  
  18. <rules>
  19.  
  20. <!-- Begin Skillup Code -->
  21.  
  22. <if Mode="AND" NotBuffactive="Refresh" Spell="Indi*">
  23.     <if MPGT="200">
  24.         <if advanced='"$SkillUp" == "1"'>
  25.             <changespell spell="Geo-Refresh" />
  26.         </if>
  27.     </if>
  28. </if>
  29. <!--- Check if your MP is low -->
  30.  
  31. <if Mode="OR" NOTMPGT="90" MP="90">
  32.     <if advanced='"$SkillUp" == "1"'>
  33.         <changespell spell="Indi-Refresh" />
  34.     </if>
  35. </if>
  36.  
  37. <if spell="Indi-Refresh">
  38.     <if advanced='"$SkillUp" == "1"'>
  39.     <command when="aftercast">input /heal on;wait $RestTime;input /heal off;wait 2;input /ja "Indi-Poison"</command>
  40.     </if>
  41. </if>
  42.  
  43.  
  44. <elseif spell="Geo-Refresh">
  45.     <if advanced='"$SkillUp" == "1"'>
  46.     <command when="aftercast">wait 4;input /ja "Indi-Barrier"</command>
  47.     </if>
  48. </elseif>
  49.  
  50. <elseif spell="Indi-Barrier">
  51.     <if advanced='"$SkillUp" == "1"'>
  52.     <command when="aftercast">wait 4;input /ja "Indi-Poison"</command>
  53.     </if>
  54. </elseif>
  55.  
  56.  
  57. <!--- Geomancy Skill Cycling -->
  58. <elseif spell="Indi-Poison">
  59.     <if advanced='"$SkillUp" == "1"'>
  60.         <command when="aftercast">wait 2;input /ja "Indi-Voidance"</command>
  61.     </if>
  62. </elseif>
  63. <elseif spell="Indi-Voidance">
  64.     <if advanced='"$SkillUp" == "1"'>
  65.         <command when="aftercast">wait 2;input /ja "Indi-Precision"</command>
  66.     </if>
  67. </elseif>
  68. <elseif spell="Indi-Precision">
  69.     <if advanced='"$SkillUp" == "1"'>
  70.         <command when="aftercast">wait 2;input /ja "Indi-Poison"</command>
  71.     </if>
  72. </elseif>
  73.  
  74. <!-- End Skillup Code -->
  75.  
  76.  
  77. </rules>
  78. </spellcast>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement