View Single Post
03/19/14, 03:48 PM   #3
Errc
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 30
Originally Posted by Xrystal View Post
The zgoo addon allows access to a lot of information that may not have been detailed on the wiki yet.
Yeah _G is ugly in plain text. But here is a dumped list of it. Is the same as simple for loop dumping _G. Can't really do this in-game but this is the idea of what I did.

Code:
G = {}
for i,v in pairs(_G) do
G[i] = tostring(v)
end
Zgoo uses some fancy pcalls to bypass private/protected functions but that is the idea.

It is in a .doc to bypass the forum attachment size.
Attached Files
File Type: doc _G.doc (1.22 MB, 1127 views)
  Reply With Quote