Created
April 12, 2014 23:22
-
-
Save SammyJames/10561745 to your computer and use it in GitHub Desktop.
dump
This file contains 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