*UO Steam* FiXXer's Stealing from Mules

If you make a Client-side script you can publish it here for other players to use
Locked
User avatar
fixxer1963
Legendary Scribe
Posts: 271
Joined: Tue Apr 01, 2014 5:43 pm

*UO Steam* FiXXer's Stealing from Mules

Post 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
Last edited by fixxer1963 on Mon Feb 16, 2015 7:32 am, edited 5 times in total.
User avatar
fixxer1963
Legendary Scribe
Posts: 271
Joined: Tue Apr 01, 2014 5:43 pm

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

Post 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.
Hawke Armstrong/FiXXer
Maul Binder
Expert Scribe
Posts: 35
Joined: Mon Oct 07, 2013 7:27 am

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

Post 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
EndeR
Master Scribe
Posts: 68
Joined: Sun Dec 15, 2013 2:31 pm

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

Post by EndeR »

Use a pack llama.
User avatar
fixxer1963
Legendary Scribe
Posts: 271
Joined: Tue Apr 01, 2014 5:43 pm

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

Post by fixxer1963 »

Well. the script works with containers also.
Hawke Armstrong/FiXXer
User avatar
fixxer1963
Legendary Scribe
Posts: 271
Joined: Tue Apr 01, 2014 5:43 pm

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

Post 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
Hawke Armstrong/FiXXer
User avatar
fixxer1963
Legendary Scribe
Posts: 271
Joined: Tue Apr 01, 2014 5:43 pm

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

Post by fixxer1963 »

Changed the comments to be more informative.
Changed the name of one of the variables. (bottles to stack).
Hawke Armstrong/FiXXer
Locked