Mynameisgonz

Weapon-Skilling XML (Mage)

Jan 24th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.70 KB | None | 0 0
  1. <!-- If Razzly is asleep... -->
  2. <register event="gainbuff_Sleep" silent="true">/tell Burnie zzz</register>
  3. <!-- If Burnie's phalanx is down... -->
  4. <register event="chat_tell_Burnie_phalanx" silent="true">/ma "Sneak" Burnie</register>
  5. <!-- If Burnie's regen is down... -->
  6. <register event="chat_tell_Burnie_regen" silent="true">/ma "Regen II" Burnie</register>
  7. <!-- If Burnie's haste is down... -->
  8. <register event="chat_tell_Burnie_haste" silent="true">/ma "Haste" Burnie</register>
  9. <!-- If Burnie's protect is down... -->
  10. <register event="chat_tell_Burnie_protect" silent="true">/ma "Protect V" Burnie</register>
  11. <!-- If Burnie's asleep, wake him up -->
  12. <register event="chat_tell_Burnie_zzz" silent="true">/ma "Cure" Burnie</register>
  13. <!-- If Razzly's Light Arts is down... -->
  14. <if notbuffactive="Light Arts">
  15.     <!-- Stop doing whatever you were doing... -->
  16.     <cancelspell />
  17.     <!-- Cast Light Arts -->
  18.         <command>/ja "Light Arts" Razzly</command>
  19. </if>
  20. <!-- If Razzly's Barsleepra is down... -->
  21. <if notbuffactive="Barsleep">
  22.     <!-- Stop doing whatever you were doing... -->
  23.     <cancelspell />
  24.     <!-- Cast Barsleepra -->
  25.     <command>/ma "Barsleep" Razzly</command>
  26. </if>
  27. <if notbuffactive="Refresh">
  28.     <!-- Stop doing whatever you were doing... -->
  29.     <cancelspell />
  30.     <!-- Cast Barsleepra -->
  31.     <command>/ma "Refresh II" Razzly</command>
  32. </if>
  33. <!-- If Razzly is casting Phalanx... -->
  34. <if spell="Sneak">
  35.     <!-- Cast Accession First... -->
  36.     <action type="ChangeSpell" Spell="Accession" />
  37.     <!-- Then Phalanx Burnie -->
  38.     <command when="aftercast">/ma "Phalanx" Burnie</command>
  39. </if>
  40. <!-- If Burnie is dying... -->
  41. <if TargetHPPLT="60">
  42.     <!-- Heal Him -->
  43.     <command>/ma "Cure IV" Burnie</command>
  44. </if>
Advertisement
Add Comment
Please, Sign In to add comment