View Single Post
06-19-07, 12:05 AM   #124
fyrye
A Chromatic Dragonspawn
 
fyrye's Avatar
AddOn Author - Click to view addons
Join Date: May 2007
Posts: 188
Prowl Druid

Druid Prowl addition since the Rogue Stealth isnt compatible
The name will remain as just Prowl if you uncheck Show All Sets
To verify it is working, save the event, bind your set, close item rack, switch to cat form to verify it will change your gear (cat set needed to be setup), then Prowl

Code:
Name: Druid:Prowl
Trigger: ITEMRACK_BUFFS_CHANGED
Delay: 0
Script: 
local f = arg1["Prowl"]
if f and not IR_PROWL then
EquipSet() IR_PROWL = 1
elseif not f and IR_PROWL then
LoadSet() IR_PROWL = nil
end
  Reply With Quote