Skip to content

Instantly share code, notes, and snippets.

@SammyJames
Created April 12, 2014 23:22
Show Gist options
  • Save SammyJames/10561745 to your computer and use it in GitHub Desktop.
Save SammyJames/10561745 to your computer and use it in GitHub Desktop.
dump
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