Page 1 of 1

*UO Steam* FiXXer's Stealing from Mules

Posted: Wed Nov 26, 2014 2:14 pm
by fixxer1963

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

Re: *UO Steam* FiXXer's Stealing from Mules

Posted: Sun Feb 01, 2015 7:59 pm
by fixxer1963
It is best to have at least 200 bottles to work with.. or even 2k gold. I used 300 bottles when I did it with my characters.

Re: *UO Steam* FiXXer's Stealing from Mules

Posted: Mon Feb 02, 2015 9:49 am
by Maul Binder
only trouble with stealing from pets is if left unattended for too long pet will go wild hence why is best to use a secure container in your home to steal from vs a mule. No fun to come back and your pet is now wild and has to be beaten down to retame it and then lose half the stats it used to have only to work stealing that could have been done from your own secure container in home

Re: *UO Steam* FiXXer's Stealing from Mules

Posted: Mon Feb 02, 2015 7:49 pm
by EndeR
Use a pack llama.

Re: *UO Steam* FiXXer's Stealing from Mules

Posted: Tue Feb 03, 2015 4:43 am
by fixxer1963
Well. the script works with containers also.

Re: *UO Steam* FiXXer's Stealing from Mules

Posted: Tue Feb 10, 2015 6:33 pm
by fixxer1963
EDIT
Edited for clarification and minor script changes.
1: Added notes
2: Added a way for the script to stop at 120 skill

Re: *UO Steam* FiXXer's Stealing from Mules

Posted: Mon Feb 16, 2015 3:03 am
by fixxer1963
Changed the comments to be more informative.
Changed the name of one of the variables. (bottles to stack).