Advertisement
Belgaer

BLU Ashitacast Test

Aug 29th, 2014
494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.41 KB | None | 0 0
  1. <ashitacast>
  2.     <settings> <!--Contains settings specific to this xml, must be set to true/false to override default-->
  3.         <buffupdate>true</buffupdate> <!--Determines if your idlegear will be parsed when you gain/lose a buff. Default: TRUE -->
  4.         <statusupdate>true</statusupdate> <!--Determines if your idlegear will be parsed when you change status(stand/rest/engage/etc).  Default: TRUE -->
  5.         <hpupdate>false</hpupdate> <!--Determines if your idlegear will be parsed when your HP % changes.  Default: TRUE -->
  6.         <autoupdate>true</autoupdate> <!--Determines if your idlegear will be parsed on outgoing status updates(roughly every 350ms).  Default: TRUE-->
  7.     </settings>
  8.  
  9.     <variables>
  10.         <var name="TP-MPP">TP</var>
  11.     </variables>
  12.    
  13.    
  14.     <sets>
  15.         <set name="TP">
  16.             <head>Empress Hairpin</head>
  17.             <neck>Fang Necklace</neck>
  18.             <body>Garrison Tunica</body>
  19.             <hands>Custom M Gloves</hands>
  20.             <lring>Sniper's Ring</lring>
  21.             <rring>Sniper's Ring</rring>
  22.             <back>White Cape</back>
  23.             <waist>Mohbwa Sash</waist>
  24.             <legs>Garrison Hose</legs>
  25.             <feet>Bounding Boots</feet>
  26.         </set>
  27.         <set name="TP-LowMP" Baseset="TP">
  28.             <body>Vermillion Cloak</body>
  29.         </set>
  30.         <set name="Idle" Baseset="TP">
  31.             <body>Vermillion Cloak</body>
  32.         </set>
  33.         <set name="Heals|Magic Fruit|Healing Breeze|Wild Carrot|Plenilune Embrace" baseset="TP">
  34.             <head>Garrison Sallet</head>
  35.             <neck></neck>
  36.             <body>Custom Tunic</body>
  37.             <hands>Zealot's Mitts</hands>
  38.             <lring>Ascetic's Ring</lring>
  39.             <rring>Ascetic's Ring</rring>
  40.             <back>White Cape</back>
  41.             <legs>Magic Cuisses</legs>
  42.         </set>
  43.  
  44.     </sets>
  45.    
  46.             <idlegear>
  47.                 <if p_status="resting">
  48.                     <equip set="Resting" />
  49.                 </if>
  50.                 <else>
  51.                     <equip set="Idle" />
  52.                 </else>
  53.             </idlegear>
  54.            
  55.             <premagic>
  56.                 <if ad_skill="Blue*">
  57.                     <if ad_name="Wild Carrot">
  58.                         <equip set="Wild Carrot" />
  59.                     </if>
  60.                     <elseif ad_name="*Breath">
  61.                         <equip set="Breath" />
  62.                     </elseif>
  63.                 </if>
  64.                 <elseif ad_skill="Healing*">
  65.                     <if ad_name="Cure*">
  66.                         <equip set="Heals" />
  67.                     </if>
  68.                 </elseif>
  69.             </premagic>
  70.            
  71.             <weaponskill>
  72.                 <if ad_name="*Blade">
  73.                     <equip set="%ad_name"/>
  74.                 </if>
  75.             </weaponskill>
  76.  
  77.     <!--Not Currently Using
  78.    <command>autoexec regonceq 22222 mpplt50 input /sc var set TP-MPP TP-LowMP</command>
  79.    <command>autoexec regonceq 11111 mppgt49 input /sc var set TP-MPP TP</command>
  80.    -->
  81. </ashitacast>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement