Hey folks, I hope you can help me with the following.
I've been looking through this thread with the search tool but I couldn't find the answer, although I may have been looking in the wrong direction.
For my Summoner gearswap I am looking for a rule that completely locks me into a pre-defined gearset during Astral conduit.
As in, if AC is active, I don't want to swap gear regardless of what I am doing.
Thanks in advance.
[edit]
Found something, but if you have something less complicated feel free to advise:
Code:
function status_change(new,old)
if Armor == 'PDT' then
equip(sets.PDT)
elseif pet.isvalid then
if SpiritPacts:contains(pet.name) then
equip(sets.Spirits)
elseif buffactive["Avatar's Favor"] then
equip(sets.Favor)
elseif buffactive["Astral Conduit"] then
equip(sets.Astralconduit)
send_command('@wait 0.5;gs disable main sub ranged ammo head neck ear1 ear2 body hands ring1 ring2 back waist legs feet;')
else
equip(sets.Avatars)
if sets.Avatars[pet.name] then
equip(sets.Avatars[pet.name])
send_command('@wait 0.5;gs enable main sub ranged ammo head neck ear1 ear2 body hands ring1 ring2 back waist legs feet;')
end