View Single Post
Old 01/24/08, 5:14 AM   #1508 (permalink)
Pyth
Glass Joe
 
Tauren Druid
 
Black Dragonflight
Originally Posted by roquer View Post
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.]]
 
User is offline.