Originally Posted by roquer
Is there a good mod that will equip [Charm of Swift Flight] every time you enter flight form?
I thought itemrack would eventually add it since they have an option for travel form, but it wasn't there last time I checked.
|
trigger = PLAYER_AURAS_CHANGED
script =
local form = ItemRack_GetForm()
if not IR_FORM and form=="Swift Flight Form" then
EquipSet()
elseif IR_FORM and form~="Swift Flight Form" then
LoadSet()
end
IR_FORM=form
--[[Equips set to be worn while flying.]]