Code:
sets.WS['Metatron Torment'] =
{ammo="Ravager's orb",
head="Yaoyotl helm",
neck="Light gorget",
ear1="Steelflash earring",
ear2="Bladeborn earring",
body="Xaddi mail",
hands="Xaddi gauntlets",
ring1="Pyrosoul ring",
ring2="Rajas Ring",
back="Mauler's mantle",
waist="Light belt",
legs="Mikinaak cuisses",
feet="Whirlpool greaves"}
sets.WS['Upheaval'] =
{ammo="Ravager's orb",
head="Yaoyotl helm",
neck="Light gorget",
ear1="Steelflash earring",
ear2="Bladeborn earring",
body="Xaddi mail",
hands="Xaddi gauntlets",
ring1="Pyrosoul ring",
ring2="Spiral Ring",
back="Mauler's mantle",
waist="Light belt",
legs="Pummeler's cuisses +1",
feet="Whirlpool greaves"}
sets.WS['Fell Cleave'] =
{ammo="Ravager's orb",
head="Yaoyotl helm",
neck="Soil gorget",
ear1="Steelflash earring",
ear2="Bladeborn earring",
body="Xaddi mail",
hands="Xaddi gauntlets",
ring1="Pyrosoul ring",
ring2="Rajas Ring",
back="Mauler's mantle",
waist="Soil belt",
legs="Mikinaak cuisses",
feet="Whirlpool greaves"}
sets.WS.Ukkosfury =
{ammo="Ravager's orb",
head="Yaoyotl helm",
neck="Light gorget",
ear1="Steelflash earring",
ear2="Bladeborn earring",
body="Xaddi mail",
hands="Xaddi gauntlets",
ring1="Pyrosoul ring",
ring2="Spiral Ring",
back="Mauler's mantle",
waist="Light belt",
legs="Pummeler's cuisses +1",
feet="Ravager's Calligae +2"}
------------------- MA Sets ----------------------
sets.MA={}
sets.MA.FastCast =
{ammo="Ravager's orb",
head="Cizin helm",
neck="Orunmila's Torque",
ear1="Loquacious Earring",
ear2="Bladeborn earring",
body="Cizin mail",
hands="Cizin mufflers",
ring1="Prolix Ring",
ring2="Defending Ring",
back="Mauler's mantle",
waist="Cetl belt",
legs="Pummeler's cuisses +1",
feet="Ejekamal boots"}
end
function precast(spell)
if spell.action_type == 'Magic' then
equip(sets.MA.FastCast)
end
end
function midcast(spell)
if spell.action_type == 'Magic' then
equip(sets.MA.FastCast)
end
if spell.type == "WeaponSkill" then
equip(sets.WS[spell.name])
end
if sets.JA[spell.name] then
equip(sets.JA[spell.name])
end
if spell.english == "Ukko's Fury" then
equip(sets.WS.UkkosFury)
end
if spell.type == 'WeaponSkill' then
if buffactive["Warrior's Charge"] then
equip({legs="Warrior's Cuisses +2"})
end
end
Ukko's Fury doesnt swap gear, tried to name it in the sets.WS as: sets.WS["Ukko's Fury"]