Advertisement
Guest User

skill up

a guest
Jan 12th, 2012
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 17.81 KB | None | 0 0
  1. <?xml version="1.0" ?>
  2. <spellcast xmlns:xi="http://www.w3.org/2001/XInclude">
  3.     <config Debug="false" ShowSpellInfo="false" ShowGearSwaps="false"/>
  4.     <variables clear="true">
  5.         <var name="SkillUp">1</var>
  6.         <var name="FirstSetup">0</var>
  7.         <var name="SkillCycle">1</var>
  8.         <var name="CurrentSpell">Barfire</var>
  9.         <var name="Show.Debug">False</var>
  10.         <var name="RestTime4Smn">3</var>
  11.         <var name="RestTime4Cure">3</var>
  12.         <var name="RestTime4Barfire">3</var>
  13.         <var name="RestTime4Song">3</var>
  14.         <var name="RestTime4Blu">8</var>
  15.     </variables>
  16.     <sets>
  17.         <group default="yes" name="Job">
  18.             <set name="Standard">
  19.                 <main/>
  20.                 <sub/>
  21.                 <ammo/>
  22.                 <head/>
  23.                 <neck/>
  24.                 <lear/>
  25.                 <rear/>
  26.                 <body/>
  27.                 <hands/>
  28.                 <lring/>
  29.                 <rring/>
  30.                 <back/>
  31.                 <waist/>
  32.                 <legs/>
  33.                 <feet/>
  34.             </set>
  35.             <set name="Resting" BaseSet="Standard">
  36.                 <main/>
  37.                 <body/>
  38.             </set>
  39.         </group>
  40.     </sets>
  41.     <rules>
  42.         <equip when="idle" set="Standard"/>
  43.         <equip when="resting" set="Resting"/>
  44.         <if advanced="&quot;$FirstSetup&quot; != &quot;1&quot;">
  45.             <command>bind ^escape input /echo Exiting.;reload spellcast;unbind ^escape;</command>
  46.             <addtochat color="121">-- SkillUp.Xml v1.2 ---</addtochat>
  47.             <addtochat color="121">Press CTRL+Escape at anytime to unload spellcast and exit SkillUp.Xml</addtochat>
  48.             <addtochat color="121">To start cast one of these spells:</addtochat>
  49.             <addtochat color="121">Carbuncle, Cure, Barfire, Swift Etude, Pollen</addtochat>
  50.             <var cmd="set FirstSetup 1"/>
  51.             <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  52.                 <addtochat color="67">Debug Process:: Show First Run Note</addtochat>
  53.             </if>
  54.         </if>
  55.         <if status="Idle">
  56.             <if MPPLT="10">
  57.                 <if Job="SMN/*|*/SMN">
  58.                     <changespell spell="Release"/>
  59.                     <changetarget target="&lt;me&gt;"/>
  60.                     <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  61.                         <addtochat color="67">Debug Process:: SMN job detected changing action to Release.</addtochat>
  62.                     </if>
  63.                 </if>
  64.                 <command when="midcast">wait 5;input /heal on;wait 5;input /ma "$currentspell"</command>
  65.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  66.                     <addtochat color="67">Debug Process:: Low MP detected sending /heal on action in 5 sec.</addtochat>
  67.                 </if>
  68.                 <return/>
  69.             </if>
  70.             <elseif notbuffactive="refresh" job="RDM/*" MainJobLvlGT="81">
  71.                 <changespell spell="Refresh II"/>
  72.                 <changetarget target="&lt;me&gt;"/>
  73.                 <command when="aftercast">wait 3;input /ma "$currentspell"</command>
  74.             </elseif>
  75.             <elseif notbuffactive="refresh" job="*/RDM" SubJobLvlGT="40">
  76.                 <changespell spell="Refresh"/>
  77.                 <changetarget target="&lt;me&gt;"/>
  78.             </elseif>
  79.             <else>
  80.                 <command when="aftercast">wait 3;input /ma "$currentspell"</command>
  81.             </else>
  82.         </if>
  83.         <if Status="Resting">
  84.             <if MPPGT="99">
  85.                 <command when="precast">input /heal off;wait 5;input /ma "$currentspell"</command>
  86.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  87.                     <addtochat color="67">Debug Process:: Full MP Detected sending /heal off action.</addtochat>
  88.                 </if>
  89.                 <cancelspell/>
  90.                 <return/>
  91.             </if>
  92.             <else>
  93.                 <command when="precast">wait 15;input /ma "$currentspell"</command>
  94.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  95.                     <addtochat color="67">Debug Process:: Currently Resting, MP is not 100%. Continue resting.</addtochat>
  96.                 </if>
  97.                 <cancelspell/>
  98.                 <return/>
  99.             </else>
  100.         </if>
  101.         <elseif spell="Carbuncle">
  102.             <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  103.                 <addtochat color="67">Debug Process:: Carbuncle Spell Detected, setting var to $currentspell and process cycle variable..</addtochat>
  104.             </if>
  105.             <var cmd="set currentspell Carbuncle"/>
  106.             <if advanced="&quot;$SkillCycle&quot; &gt;= &quot;10&quot;">
  107.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  108.                     <addtochat color="67">Debug Process:: Incorrect variable detected for this group, resetting to 1.</addtochat>
  109.                 </if>
  110.                 <command>wait $RestTime4Smn;input /ma "$currentspell"</command>
  111.                 <var cmd="set SkillCycle 1"/>
  112.                 <cancelspell/>
  113.             </if>
  114.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;1&quot;">
  115.                 <command when="aftercast">wait $RestTime4Smn;input /ja "Release";wait $RestTime4Smn;input /ma "$currentspell"</command>
  116.                 <var cmd="set SkillCycle 2"/>
  117.                 <changespell spell="Carbuncle"/>
  118.                 <changetarget target="&lt;me&gt;"/>
  119.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  120.                     <addtochat color="67">Debug Process:: Cycle Process 1 Processed.</addtochat>
  121.                 </if>
  122.             </elseif>
  123.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;2&quot;">
  124.                 <command when="aftercast">wait 3;input /ja "Release";wait 3;input /ma "$currentspell"</command>
  125.                 <var cmd="set SkillCycle 3"/>
  126.                 <changespell spell="Ifrit"/>
  127.                 <changetarget target="&lt;me&gt;"/>
  128.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  129.                     <addtochat color="67">Debug Process:: Cycle Process 2 Processed.</addtochat>
  130.                 </if>
  131.             </elseif>
  132.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;3&quot;">
  133.                 <command when="aftercast">wait $RestTime4Smn;input /ja "Release";wait $RestTime4Smn;input /ma "$currentspell"</command>
  134.                 <var cmd="set SkillCycle 4"/>
  135.                 <changespell spell="Titan"/>
  136.                 <changetarget target="&lt;me&gt;"/>
  137.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  138.                     <addtochat color="67">Debug Process:: Cycle Process 3 Processed.</addtochat>
  139.                 </if>
  140.             </elseif>
  141.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;4&quot;">
  142.                 <command when="aftercast">wait $RestTime4Smn;input /ja "Release";wait $RestTime4Smn;input /ma "$currentspell"</command>
  143.                 <var cmd="set SkillCycle 5"/>
  144.                 <changespell spell="Leviathan"/>
  145.                 <changetarget target="&lt;me&gt;"/>
  146.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  147.                     <addtochat color="67">Debug Process:: Cycle Process 4 Processed.</addtochat>
  148.                 </if>
  149.             </elseif>
  150.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;5&quot;">
  151.                 <command when="aftercast">wait $RestTime4Smn;input /ja "Release";wait $RestTime4Smn;input /ma "$currentspell"</command>
  152.                 <var cmd="set SkillCycle 6"/>
  153.                 <changespell spell="Garuda"/>
  154.                 <changetarget target="&lt;me&gt;"/>
  155.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  156.                     <addtochat color="67">Debug Process:: Cycle Process 5 Processed.</addtochat>
  157.                 </if>
  158.             </elseif>
  159.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;6&quot;">
  160.                 <command when="aftercast">wait $RestTime4Smn;input /ja "Release";wait $RestTime4Smn;input /ma "$currentspell"</command>
  161.                 <var cmd="set SkillCycle 7"/>
  162.                 <changespell spell="Shiva"/>
  163.                 <changetarget target="&lt;me&gt;"/>
  164.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  165.                     <addtochat color="67">Debug Process:: Cycle Process 6 Processed.</addtochat>
  166.                 </if>
  167.             </elseif>
  168.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;7&quot;">
  169.                 <command when="aftercast">wait $RestTime4Smn;input /ja "Release";wait $RestTime4Smn;input /ma "$currentspell"</command>
  170.                 <var cmd="set SkillCycle 8"/>
  171.                 <changespell spell="Ramuh"/>
  172.                 <changetarget target="&lt;me&gt;"/>
  173.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  174.                     <addtochat color="67">Debug Process:: Cycle Process 7 Processed.</addtochat>
  175.                 </if>
  176.             </elseif>
  177.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;8&quot;">
  178.                 <command when="aftercast">wait $RestTime4Smn;input /ja "Release";wait $RestTime4Smn;input /ma "$currentspell"</command>
  179.                 <var cmd="set SkillCycle 9"/>
  180.                 <changespell spell="Fenrir"/>
  181.                 <changetarget target="&lt;me&gt;"/>
  182.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  183.                     <addtochat color="67">Debug Process:: Cycle Process 8 Processed.</addtochat>
  184.                 </if>
  185.             </elseif>
  186.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;9&quot;">
  187.                 <command when="aftercast">wait $RestTime4Smn;input /ja "Release";wait $RestTime4Smn;input /ma "$currentspell"</command>
  188.                 <var cmd="set SkillCycle 1"/>
  189.                 <changespell spell="Diabolos"/>
  190.                 <changetarget target="&lt;me&gt;"/>
  191.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  192.                     <addtochat color="67">Debug Process:: Cycle Process 9 Processed.</addtochat>
  193.                 </if>
  194.             </elseif>
  195.         </elseif>
  196.         <elseif spell="Cure">
  197.             <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  198.                 <addtochat color="67">Debug Process:: Cure Spell Detected, setting var to $currentspell and process cycle variable..</addtochat>
  199.             </if>
  200.             <var cmd="set currentspell Cure"/>
  201.             <if advanced="&quot;$SkillCycle&quot; &gt;= &quot;4&quot;">
  202.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  203.                     <addtochat color="67">Debug Process:: Incorrect variable detected for this group, resetting to 1.</addtochat>
  204.                 </if>
  205.                 <command>wait $RestTime4Cure;input /ma "$currentspell"</command>
  206.                 <var cmd="set SkillCycle 1"/>
  207.                 <cancelspell/>
  208.             </if>
  209.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;1&quot;">
  210.                 <command when="aftercast">wait $RestTime4Cure;input /ma "$currentspell"</command>
  211.                 <var cmd="set SkillCycle 2"/>
  212.                 <changespell spell="Cure"/>
  213.                 <changetarget target="&lt;me&gt;"/>
  214.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  215.                     <addtochat color="67">Debug Process:: Cycle Process 1 Processed.</addtochat>
  216.                 </if>
  217.             </elseif>
  218.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;2&quot;">
  219.                 <command when="aftercast">wait $RestTime4Cure;input /ma "$currentspell"</command>
  220.                 <var cmd="set SkillCycle 3"/>
  221.                 <changespell spell="Cure II"/>
  222.                 <changetarget target="&lt;me&gt;"/>
  223.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  224.                     <addtochat color="67">Debug Process:: Cycle Process 2 Processed.</addtochat>
  225.                 </if>
  226.             </elseif>
  227.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;3&quot;">
  228.                 <command when="aftercast">wait $RestTime4Cure;input /ma "$currentspell"</command>
  229.                 <var cmd="set SkillCycle 1"/>
  230.                 <changespell spell="Cure III"/>
  231.                 <changetarget target="&lt;me&gt;"/>
  232.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  233.                     <addtochat color="67">Debug Process:: Cycle Process 3 Processed.</addtochat>
  234.                 </if>
  235.             </elseif>
  236.         </elseif>      
  237.         <elseif spell="Barfire">
  238.             <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  239.                 <addtochat color="67">Debug Process:: Barfire Spell Detected, setting var to $currentspell and process cycle variable..</addtochat>
  240.             </if>
  241.             <var cmd="set currentspell Barfire"/>
  242.             <if advanced="&quot;$SkillCycle&quot; &gt;= &quot;6&quot;">
  243.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  244.                     <addtochat color="67">Debug Process:: Incorrect variable detected for this group, resetting to 1.</addtochat>
  245.                 </if>
  246.                 <command>wait $RestTime4Barfire;input /ma "$currentspell"</command>
  247.                 <var cmd="set SkillCycle 1"/>
  248.                 <cancelspell/>
  249.             </if>
  250.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;1&quot;">
  251.                 <command when="aftercast">wait $RestTime4Barfire;input /ma "$currentspell"</command>
  252.                 <var cmd="set SkillCycle 2"/>
  253.                 <changespell spell="Barfire"/>
  254.                 <changetarget target="&lt;me&gt;"/>
  255.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  256.                     <addtochat color="67">Debug Process:: Cycle Process 1 Processed.</addtochat>
  257.                 </if>
  258.             </elseif>
  259.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;2&quot;">
  260.                 <command when="aftercast">wait $RestTime4Barfire;input /ma "$currentspell"</command>
  261.                 <var cmd="set SkillCycle 3"/>
  262.                 <changespell spell="Baraero"/>
  263.                 <changetarget target="&lt;me&gt;"/>
  264.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  265.                     <addtochat color="67">Debug Process:: Cycle Process 2 Processed.</addtochat>
  266.                 </if>
  267.             </elseif>
  268.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;3&quot;">
  269.                 <command when="aftercast">wait $RestTime4Barfire;input /ma "$currentspell"</command>
  270.                 <var cmd="set SkillCycle 4"/>
  271.                 <changespell spell="Barstone"/>
  272.                 <changetarget target="&lt;me&gt;"/>
  273.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  274.                     <addtochat color="67">Debug Process:: Cycle Process 3 Processed.</addtochat>
  275.                 </if>
  276.             </elseif>
  277.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;4&quot;">
  278.                 <command when="aftercast">wait $RestTime4Barfire;input /ma "$currentspell"</command>
  279.                 <var cmd="set SkillCycle 5"/>
  280.                 <changespell spell="Barwater"/>
  281.                 <changetarget target="&lt;me&gt;"/>
  282.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  283.                     <addtochat color="67">Debug Process:: Cycle Process41 Processed.</addtochat>
  284.                 </if>
  285.             </elseif>
  286.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;5&quot;">
  287.                 <command when="aftercast">wait $RestTime4Protect;input /ma "$currentspell"</command>
  288.                 <var cmd="set SkillCycle 1"/>
  289.                 <changespell spell="Barthunder"/>
  290.                 <changetarget target="&lt;me&gt;"/>
  291.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  292.                     <addtochat color="67">Debug Process:: Cycle Process 5 Processed.</addtochat>
  293.                 </if>
  294.             </elseif>
  295.         </elseif>
  296.         <elseif spell="Swift Etude">
  297.             <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  298.                 <addtochat color="67">Debug Process:: Swift Etude Detected, setting var to $currentspell and process cycle variable..</addtochat>
  299.             </if>
  300.             <var cmd="set currentspell Swift Etude"/>
  301.             <if advanced="&quot;$SkillCycle&quot; &gt;= &quot;6&quot;">
  302.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  303.                     <addtochat color="67">Debug Process:: Incorrect variable detected for this group, resetting to 1.</addtochat>
  304.                 </if>
  305.                 <var cmd="set SkillCycle 1"/>
  306.                 <command>wait $RestTime4Song;input /ma "$currentspell"</command>
  307.                 <cancelspell/>
  308.             </if>
  309.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;1&quot;">
  310.                 <command when="aftercast">wait $RestTime4Song;input /ma "$currentspell"</command>
  311.                 <var cmd="set SkillCycle 2"/>
  312.                 <changespell spell="Swift Etude"/>
  313.                 <changetarget target="&lt;me&gt;"/>
  314.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  315.                     <addtochat color="67">Debug Process:: Cycle Process 1 Processed.</addtochat>
  316.                 </if>
  317.             </elseif>
  318.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;2&quot;">
  319.                 <command when="aftercast">wait $RestTime4Song;input /ma "$currentspell"</command>
  320.                 <var cmd="set SkillCycle 3"/>
  321.                 <changespell spell="Vital Etude"/>
  322.                 <changetarget target="&lt;me&gt;"/>
  323.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  324.                     <addtochat color="67">Debug Process:: Cycle Process 2 Processed.</addtochat>
  325.                 </if>
  326.             </elseif>
  327.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;3&quot;">
  328.                 <command when="aftercast">wait $RestTime4Song;input /ma "$currentspell"</command>
  329.                 <var cmd="set SkillCycle 4"/>
  330.                 <changespell spell="Quick Etude"/>
  331.                 <changetarget target="&lt;me&gt;"/>
  332.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  333.                     <addtochat color="67">Debug Process:: Cycle Process 3 Processed.</addtochat>
  334.                 </if>
  335.             </elseif>
  336.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;4&quot;">
  337.                 <command when="aftercast">wait $RestTime4Song;input /ma "$currentspell"</command>
  338.                 <var cmd="set SkillCycle 5"/>
  339.                 <changespell spell="Logical Etude"/>
  340.                 <changetarget target="&lt;me&gt;"/>
  341.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  342.                     <addtochat color="67">Debug Process:: Cycle Process 4 Processed.</addtochat>
  343.                 </if>
  344.             </elseif>
  345.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;5&quot;">
  346.                 <command when="aftercast">wait $RestTime4Song;input /ma "$currentspell"</command>
  347.                 <var cmd="set SkillCycle 1"/>
  348.                 <changespell spell="Spirited Etude"/>
  349.                 <changetarget target="&lt;me&gt;"/>
  350.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  351.                     <addtochat color="67">Debug Process:: Cycle Process 5 Processed.</addtochat>
  352.                 </if>
  353.             </elseif>
  354.         </elseif>
  355.         <elseif spell="Pollen">
  356.             <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  357.                 <addtochat color="67">Debug Process:: Pollen Detected, setting var to $currentspell and process cycle variable..</addtochat>
  358.             </if>
  359.             <var cmd="set currentspell Pollen"/>
  360.             <if advanced="&quot;$SkillCycle&quot; &gt;= &quot;4&quot;">
  361.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  362.                     <addtochat color="67">Debug Process:: Incorrect variable detected for this group, resetting to 1.</addtochat>
  363.                 </if>
  364.                 <command>wait $RestTime4Blu;input /ma "$currentspell"</command>
  365.                 <var cmd="set SkillCycle 1"/>
  366.                 <cancelspell/>
  367.             </if>
  368.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;1&quot;">
  369.                 <command when="aftercast">wait $RestTime4Blu;input /ma "$currentspell"</command>
  370.                 <var cmd="set SkillCycle 2"/>
  371.                 <changespell spell="Pollen"/>
  372.                 <changetarget target="&lt;me&gt;"/>
  373.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  374.                     <addtochat color="67">Debug Process:: Cycle Process 1 Processed.</addtochat>
  375.                 </if>
  376.             </elseif>
  377.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;2&quot;">
  378.                 <command when="aftercast">wait $RestTime4Blu;input /ma "$currentspell"</command>
  379.                 <var cmd="set SkillCycle 3"/>
  380.                 <changespell spell="Pollen"/>
  381.                 <changetarget target="&lt;me&gt;"/>
  382.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  383.                     <addtochat color="67">Debug Process:: Cycle Process 2 Processed.</addtochat>
  384.                 </if>
  385.             </elseif>
  386.             <elseif advanced="&quot;$SkillCycle&quot; == &quot;3&quot;">
  387.                 <command when="aftercast">wait $RestTime4Blu;input /ma "$currentspell"</command>
  388.                 <var cmd="set SkillCycle 1"/>
  389.                 <changespell spell="Pollen"/>
  390.                 <changetarget target="&lt;me&gt;"/>
  391.                 <if advanced="&quot;$Show.Debug&quot; == &quot;True&quot;">
  392.                     <addtochat color="67">Debug Process:: Cycle Process 3 Processed.</addtochat>
  393.                 </if>
  394.             </elseif>
  395.         </elseif>
  396.     </rules>
  397. </spellcast>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement