Heya, I figured I would do this again for B22, since it may or may not have additional functions. Since my last thread was locked, I'll just make a new one.
http://pastebin.com/f252ef35fThere is the Object Member function dump, but, the objects are not attached. It looks like it is in the same layout as last time, so, nothing big has changed.
Also, here is the source code for what I used to dump the functions, just in case you wanted to do it yourself.
Code:
--Registry Debug Dumper
--For Cortex Command
--By Kylegar
function DumpCCRegistry()
regdump = debug.getregistry()
for k , v in pairs(regdump) do
print(tostring(k).."\t"..type(v))
if (type(v) == "table") then
for k1, v1 in pairs(v) do
print("\t\t"..tostring(k1).."\t"..type(v1))
end
end
end
ConsoleMan:SaveAllText("condump.txt")
end