View Single Post
09-05-16, 04:00 AM   #2
ObbleYeah
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Sep 2008
Posts: 210
try this

Lua Code:
  1. local f = CreateFrame'Frame'
  2. f:RegisterEvent'ADDON_LOADED'
  3. f:SetScript('OnEvent', function(_, _, addon)
  4.     if addon == 'FeralDotDamage' then
  5.         FeralDotDamageMainFrameStatusBarEnergy:CreateBeautyBorder(12)
  6.         f:UnregisterAllEvents()
  7.     end
  8. end)

if that doesn't work, try:

Lua Code:
  1. if IsAddOnLoaded'FeralDotDamage' then
  2.      print'feraldotdamage has loaded'  --  you can delete this afterwards, its just to see if the addon is loaded before zBorders is
  3.     FeralDotDamageMainFrameStatusBarEnergy:CreateBeautyBorder(12)
  4. end

i've noticed some weird issues with order of addon loading, and i think i remember a friend telling me his were being loaded in order from z to a on the beta — might be the case live too.

those gnosis frame names are either wrong (likely) or very very badly named globals. the error suggests the former. if the latter, yikes — i'd personally find the source code and give them reasonable names. 'gnosis_player' etc.

Last edited by ObbleYeah : 09-05-16 at 04:10 AM.
  Reply With Quote