Advertisement
Guest User

chainspell snip

a guest
Sep 7th, 2011
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.39 KB | None | 0 0
  1. <elseif type="BlackMagic">     
  2.             <if skill="ElementalMagic">
  3.                 <!--%SpellElement will process first. If ThunderIV is cast then $SetStaff will be set to $Thunder -->
  4.                 <var cmd="set SetStaff $%SpellElement" />
  5.                
  6.                 <!-- if Chainspelling, don't use precast or aftercast sets -->
  7.                 <if buffActive="Chainspell">
  8.                     <equip when="precast|midcast|aftercast" set="Nuke" />              
  9.                     <!-- handle uggy pendant -->
  10.                     <if MPPAftercastLT="51">    <!-- if mp < 51% -->               
  11.                         <equip when="midcast">
  12.                             <neck>Uggalepih Pendant</neck>
  13.                         </equip>
  14.                     </if>
  15.                     <!-- Full Moon Artemis -->
  16.                     <if Moon="Full*">
  17.                         <equip when="midcast">
  18.                             <neck>Artemis' Medal</neck>
  19.                         </equip>
  20.                     </if>                  
  21.                 </if>   <!--    end if Chainspelling -->           
  22.                 <!-- else, when not chainspelling, normal behavior -->
  23.                 <else>         
  24.                     <equip when="precast" set="FastCast" />
  25.                     <equip when="midcast" set="Nuke" />
  26.                     <!-- handle uggy pendant -->
  27.                     <if MPPAftercastLT="51">    <!-- if mp < 51% -->
  28.                         <!-- equip uggy pendant -->
  29.                         <equip when="midcast">
  30.                             <neck>Uggalepih Pendant</neck>
  31.                         </equip>
  32.                     </if>
  33.                     <!-- Full Moon Artemis -->
  34.                     <if Moon="Full*">
  35.                         <equip when="midcast">
  36.                             <neck>Artemis' Medal</neck>
  37.                         </equip>
  38.                     </if>                  
  39.                     <equip when="aftercast" set="$AfterCast" />        
  40.                 </else>
  41.             </if>   <!-- end if elemental skill -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement