View Single Post
03-18-06, 06:18 AM   #34
Gello
A Molten Giant
AddOn Author - Click to view addons
Join Date: Jan 2005
Posts: 521
Wowwiki list an Event called "PLAYER_UPDATE_RESTING", so I'm trying make it so I can have an outfit for town.
Try this:

Name: Town
Trigger: PLAYER_UPDATE_RESTING
Delay: 0
Script:
if IsResting() then
EquipSet()
else
LoadSet()
end
--[[Equips a set while in a city or inn.]]

Associate a tuxedo or town set to that event. In theory it should equip the set when you begin resting and unequip when you're not.

Now my problem is it only swaps when I walk into the plaguelands, either by mount or by foot, it does not switch when I come from the griphon. Is there a way to fix this?
That's an odd one. I'm making a slight change to events that may affect it. Look for 1.91 sometime this weekend and let me know if it doesn't fix it.

Was trying to trigger an itemswap when flurry procced but I cant seem to find the right name for the flurry buff in the UnitBuff command so some help would be really nice! What I want is a switch when flurry proccs and a switch back when it ends.
I'm adding a small mod to create events such as this. Basically you hit a key and it will take a snapshot of your buffs. You pick one and it will create an event to wear while that buff is up.
  Reply With Quote