Advertisement
TC24k

Simple_MNK_Spellcast

Jul 27th, 2011
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.12 KB | None | 0 0
  1. <!-- MNK Spellcast created for Dual/Triboxing friends account - Nothing special -->
  2.  
  3. <?xml version="1.0" ?>
  4.  
  5. <spellcast xmlns:xi="http://www.w3.org/2001/XInclude">
  6.     <config
  7.        RequireVersion="2.30"
  8.        debug="false"
  9.        />
  10.     <variables />
  11.    
  12.     <sets>
  13.         <group name="Main" default="yes">
  14.             <set name="Standard" BaseSet="TPGear">
  15.                 <feet>Hermes' Sandals</feet>
  16.             </set>
  17.             <set name="TPGear">
  18.                 <head>Tantra Crown +1</head>
  19.                 <neck>Chivalrous Chain</neck>
  20.                 <lear>Brutal Earring</lear>
  21.                 <rear>Minuet Earring</rear>
  22.                 <body>Mirke Wardecors</body>
  23.                 <hands>Melee Gloves</hands>
  24.                 <lring>Rajas  Ring</lring>
  25.                 <rring>Ecphoria Ring</rring>
  26.                 <back>Forager's Mantle</back>
  27.                 <waist>Black Belt</waist>
  28.                 <legs>Tantra Hose +1</legs>
  29.                 <feet>Fuma Sune-Ate</feet>
  30.             </set>
  31.            
  32.             <set name="AFury">
  33.                 <head>Tantra Crown +1</head>
  34.                 <neck>Soil Gorget</neck>
  35.                 <lear>Brutal Earring</lear>
  36.                 <rear>Minuet Earring</rear>
  37.                 <body>Mirke Wardecors</body>
  38.                 <hands>Melee Gloves</hands>
  39.                 <lring>Rajas Ring</lring>
  40.                 <rring>Flame Ring</rring>
  41.                 <back>Forager's Mantle</back>
  42.                 <waist>Warwolf Belt</waist>
  43.                 <legs>Desultor Tassets</legs>
  44.                 <feet>Aurore Gaiters</feet>
  45.             </set>         
  46.            
  47.             <set name="SpinAttack">
  48.                 <body>Mirke Wardecors</body>
  49.                 <rring>Flame Ring</rring>
  50.                 <legs>Shura Haidate</legs>
  51.             </set>
  52.            
  53.             <set name="Chakra">
  54.                 <head>Genbu's Kabuto</head>
  55.                 <body>Temple Cyclas</body>
  56.                 <waist>Warwolf Belt</waist>
  57.                 <lear>Avenger's Earring</lear>
  58.                 <lring>Topaz Ring</lring>
  59.                 <legs>Jujitsu Sitabaki</legs>
  60.                 <rring>Topaz Ring</rring>
  61.                 <feet>Power Sandals</feet>
  62.             </set>
  63.         </group>
  64.     </sets>
  65.     <rules>
  66.         <!-- set of gear to equip when finished casting a spell or coming back from resting mp (idle set) -->
  67.         <equip when="Engaged" set="TPGear" />
  68.         <equip when="Idle" set="Standard" />
  69.        
  70.         <if type="Weaponskill">
  71.             <if mode="OR" TPLT="100" advanced='%SpellTargetDistance&gt;4' notstatus="engaged">
  72.                 <cancelspell/>
  73.                 <return/>
  74.             </if>
  75.         </if>
  76.        
  77.         <if spell="Ascetic's Fury">
  78.             <equip set="AFury" when="precast" />
  79.             <equip set="TPGear" when="aftercast" />
  80.         </if>
  81.         <if spell="Spinning Attack">
  82.             <equip set="SpinAttack" when="precast" />
  83.             <equip set="TPGear" when="aftercast" />
  84.         </if>
  85.         <if spell="Chakra">
  86.             <equip set="Chakra" when="Precast" />
  87.             <equip set="TPGear" when="Aftercast" />
  88.         </if>
  89.         <if spell="Counterstance">
  90.             <equip when="Precast">
  91.                 <feet>Melee Gaiters</feet>
  92.             </equip>
  93.             <equip when="Aftercast" set="TPGear" />
  94.         </if>
  95.         <if mode="and" Spell="Provoke" Target="Sturdy Pyxis">
  96.             <cancelspell />
  97.             <addtochat>Wrong target!</addtochat>
  98.         </if>
  99.         <if mode="and" spell="Aggressor" buffactive="Focus">
  100.             <cancelspell />
  101.             <addtochat color="211">Aggressor cancelled - Focus already active</addtochat>
  102.         </if>
  103.         <if mode="and" spell="Focus" buffactive="Aggressor">
  104.             <cancelspell />
  105.             <addtochat color="211">Focus cancelled - Aggressor already active</addtochat>
  106.         </if>
  107.        
  108.    
  109.     </rules>
  110. </spellcast>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement