Code xml
<if status="engaged"> <action type="equip" when="Engaged|aftercast" set="Combat"/> </if> <elseif notstatus="engaged"> <action type="equip" when="Idle|aftercast" set="Standard"/> </elseif> <!-- While Casting Utsusemi --> <if Skill="Ninjutsu"> <equip when="precast"> <neck>Magoraga Beads</neck> <feet>Iga Kyahan +2</feet> </equip> <equip when="aftercast"> <neck>Iga Erimaki</neck> </equip> </if> <if mode="OR" TimeGT="17.59" TimeLT="6.00"> <equip when="Idle|aftercast"> <feet>Ninja Kyahan</feet> </equip> </if>
At first I had only when="Idle" in my Ninja Kyahan rule. Everything was ok except while I was idle, if I casted ninjutsu it would put my Danzo feet on even if it was night. So I changed it to when="Idle|aftercast" which I thought fixed it, but now it's I am in combat at night it puts my AF feet on after every ninjustu cast. Can anyone help me with a proper code for this?