-
-
Save PogoRollo/39597e8e7271d2457ca1e0496caecdfc to your computer and use it in GitHub Desktop.
dump
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package.path = package.path .. ';' .. os.getenv ( 'USERPROFILE' ) .. '\\Documents\\ArcheAge\\Addon\\LootDrop\\?.lua' | |
local inspect = require( 'inspect' ) | |
local output = os.getenv ( 'USERPROFILE' ) .. '\\Documents\\ArcheAge\\Addon\\LootDrop\\out.txt' | |
local outputFile = io.open( output, 'w+' ) | |
ADDON:ImportAPI( UCST_UNIT ) | |
ADDON:ImportObject( UOT_BASE_BUTTON ) | |
ADDON:ImportObject( UOT_EDITBOX ) | |
ADDON:ImportObject( UOT_EMPTY_WIDGET ) | |
ADDON:ImportObject( UOT_ICON_IMAGE_DRAWABLE ) | |
ADDON:ImportObject( UOT_IMAGE_DRAWABLE ) | |
ADDON:ImportObject( UOT_LABEL ) | |
ADDON:ImportObject( UOT_NINE_PART_DRAWABLE ) | |
ADDON:ImportObject( UOT_TEXT_STYLE ) | |
io.output( outputFile ) | |
io.write( inspect( _G ) ) | |
io.close( outputFile ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment