Results: 5Comments by: SinusPi
File: FunctionCapture05/06/14
A tiny step ahead of you. Maybe. Lo...
Posted By: SinusPi
A tiny step ahead of you. Maybe. Look in Zgoo's source for BUGIT, BUGIT2, BUGCALL and BUGTABLE. I used *some* of those to "bug" certain calls to the original API. They're not officially documented, but they're there. In Zgoo, /run BUGIT (SomeInternalFunction) -- and /zgoo BUGIT_LOG when you think the function was called. Uses s...
File: Zgoo - data inspection tool05/02/14
Re: Search
Posted By: SinusPi
Maybe I missed it - but is there any function to find functions and constants with a certain name in them. I would for example like to search for everything quest related as an example./zgoo find uest <- yes, case sensitive :) However, quest-specific funcs are already gathered in a top level group. While browsing through _G i...
File: Environmental Protection Addon04/28/14
LUAC can help, too!
Posted By: SinusPi
Running luac with the option to dump bytecode helps a lot, too, to check creation of globals directly in Lua files. luac52.exe -l MyLeakyGlobalsFile.lua ... 624 SETTABUP 0 -234 120 ; _ENV "BlaBlaLeak" ... Any line with SETTABUP ... _ENV "..." essentially sets a global. Find those and you're gold.
File: Zbug - error frame replacement04/28/14
Just out of curiosity, what makes t...
Posted By: SinusPi
Just out of curiosity, what makes this different from LibDebug by thelegendaryof here on esoui? Huh. Mainly the fact that I just didn't notice that lib. :D From what I've seen is: * LibDebug is a "library" and mine is stand-alone. Wait, correction: it's FILED as a library and NAMED like a library, but actually IS stand-alone......
File: FreeMouse02/25/14
Re: Nice trick with the bindings.xml
Posted By: SinusPi
Personally I prefer the user to know that their binding to my addon but I can see how this might be useful at some point. That's exactly why I added "(FreeMouse addon)" in color to the setting label. Two birds, one stone :)