View Single Post
10/24/16, 07:08 AM   #7
Werewolf Finds Dragon
AddOn Author - Click to view addons
Join Date: Apr 2015
Posts: 17
I was looking for an implementation of this, basically:

Code:
local addonFunction = debug.getinfo(2).func
local addonObjectName = debug.getupvalues(addonFunction, 1)
local addonObject = _G[addonObjectName]
local addonObjectValue = addonobject.myValue
print(addonObjectValue)
But it doesn't look like any implementation of that has made its way into ESO. Sorry to waste everyone's time with this.
  Reply With Quote