View Single Post
12-05-11, 04:33 AM   #21
Loshine
A Defias Bandit
AddOn Author - Click to view addons
Join Date: Aug 2011
Posts: 2
Originally Posted by zork View Post
Like Zista posted above

lua Code:
  1. local ebf = ExtraActionBarFrame
  2. ebf:SetParent(UIParent)
  3. ebf:ClearAllPoints()
  4. ebf:SetPoint("CENTER", UIParent, 0, -250)
  5. --ebf.SetPoint = function() end --this is bad
  6. ebf.ignoreFramePositionManager = true

This should prevent the taint you will be getting in combat.
thank you for your help~

I'll rewrite it in my own lua
  Reply With Quote