Thread: eepanel Lua
View Single Post
11-06-08, 10:47 AM   #2
Taffu
A Flamescale Wyrmkin
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 149
Use the OnUpdate script:

Code:
local panel = <youreePanel#>
if ( HasPetUI() ) then
     panel:Show()
else
     panel:Hide()
end
  Reply With Quote