*UO Steam* FiXXer's Stealing from Mules
Posted: Wed Nov 26, 2014 2:14 pm
Code: Select all
// FiXXer's Stealing Trainer Version 1.03
// Place at least 200 bottles in the animal's pack, or in a secure container.
// Make sure the container is open.
// Select the mule, pack animal, or secure container.
// Then select the bottles(200ish), a stack of gold(2000ish) in the pack or container.
// Start the script/macro, and follow the prompts.
// *****************************************************
if not @findalias 'container'
headmsg 'Select mule, pack animal, or container to steal from'
promptalias 'container'
endif
// *****************************************************
if not @findalias 'stack'
headmsg 'Select bottles/gold to steal in container/pack animal'
promptalias 'stack'
endif
// *****************************************************
while skill "Stealing" < 120
useskill 'stealing'
waitfortarget 1000
target! 'stack'
pause 600
if @injournal 'You successfully'
//***************************
// This line for bottles
movetype 0xf0e 'backpack' 'container' 1390 1102 0 0x0
//***************************
//
//***************************
// This line for gold
// movetype 0xeed 'backpack' 'container' 1390 1102 0 0x0
//***************************
clearjournal
pause 10000
else
pause 10000
endif
endwhile