Hey guys,
I am VERY new to XML, I kinda of copy/pasted what I wanted from diffrent XLM sripts and edited as i needed.
At first it was working, but I wanted the XML to ONLY put on AF3+2 body for the WS, then put Thumas back on when Impt is up.
So I got that to work, but then it wouldnt get my TP set to work. So I found the missing tag. But now im getting a error on the last line. About to pull out my hair. Can someone try debugging this for me?
Thanks in advance!
<?xml version="1.0" ?>
<spellcast>
<config
AutoLoadXML="true"
Debug="false"
ShowGearSwaps="false"
/>
<group name="Monk" default="yes">
<sets>
<!--Gear melee standard-->
<set name="Idle">
<lring>Dark Ring</lring>
<neck>Twilight Torque</neck>
<rring>Dark Ring</rring>
</set>
<set name="TP">
<lear>Brutal Earring</lear>
<lring>Rajas Ring</lring>
<ammo>Potestas bomblet</ammo>
<head>Ganesha's mask</head>
<body>Thaumas Coat</body>
<hands>Melee Gloves +2</hands>
<legs>Tantra Hose +2</legs>
<feet>Tantra Gaiters +2</feet>
<neck>Rancor Collar</neck>
<waist>Black Belt</waist>
<back>Atheling Mantle</back>
<rear>Ghillie Earring</rear>
<rring>Epona's Ring</rring>
</set>
<set name="WS">
<lear>Brutal Earring</lear>
<lring>Rajas Ring</lring>
<ammo>Tantra Tathlum</ammo>
<head>Thaumas Hat</head>
<body>Toci's Harness</body>
<hands>Heafoc Mitts</hands>
<legs>Thaumas kecks</legs>
<feet>Tantra Gaiters +2</feet>
<neck>Light gorget</neck>
<back>Rancorous mantle</back>
<rear>Kemas earring</rear>
<rring>Epona's Ring</rring>
</set>
</sets>
<variables clear="true">
<var name="Impetus">Blank</var>
<var name="PDT">Blank</var>
</variables>
<rules>
<if BuffActive="Impetus">
<var cmd="set Impetus Impetus" />
</if>
<else>
<var cmd="set Impetus Blank" />
</else>
<if Status="Engaged">
<equip when="engaged|aftercast" set="TP|$Impetus|$PDT"/>
</if>
<if Status="Idle">
<equip when="idle|resting|aftercast" set="Idle|$PDT"/>
</if>
<if type="WeaponSkill">
<if spell="Victory Smite">
<equip when="precast|midcast" set="WS"/>
<if Buffactive="Impetus">
<equip when="precast|midcast">
<body lock="true">Tantra Cyclas +2</body>
</equip>
</if>
</if>
<equip when="aftercast" set="TP"/>
</if>
</rules>
</spellcast>