[EasyUO] Simple Stealing Trainer

If you make a Client-side script you can publish it here for other players to use
Locked
User avatar
Tael
Elder Scribe
Posts: 166
Joined: Sun May 17, 2009 1:44 am

[EasyUO] Simple Stealing Trainer

Post by Tael »

Here's a painfully simple script to train stealing. I just used it to 100 here, but I originally wrote it for another freeshard, and I may have gone higher there. When/if I get a stealing PS I'll update this info.

You need a container that's safe to use and 5K gold. (It's possible to use a stackable item other than gold, but you're on your own with that, and you'll have to rewrite some code.) Gold is simple and it works well. By "container that's safe to use" I mean that you have to be careful that no one will saunter by and take your gold while you're training. The best choice is to train in your house, or in a house where you're friended and where you have access to a secure container.

There's not much more to say. Watching this script run is as exciting as watching paint dry, and it takes a while to get the gains. Good luck.

Code: Select all

;-- Simple stealing trainer 01 by Taelwrath

;-- Either set %srcContID to the ID of a secure container
;   in your house or target the container you want to use
;   each time you start the script...
;-- The script will pathfind you to your container, so
;   don't be alarmed.  (You need to be within 1 tile.)
;-- Make sure you have 5K or so gold in this container
;   when you start up.

    set %srcContID XX
    set %gold POF
;
    menu hideEUO
    menu hide
;
    if %srcContID <> XX
       goto no_init
    set #LOBJECTID X
    display OK Open the box you want to use
init_loop:
    if #LOBJECTID = X           ; get the box ID
       {
       wait 10
       goto init_loop
       }
    set %srcContID #LOBJECTID
    set %opened #TRUE
no_init:
    finditem %srcContID G_1
    if #FINDCNT = 0
       {
       finditem %srcContID G
       if #FINDCNT = 0
          {
          display ok Container not found
          halt
          }
       event pathfind #FINDX #FINDY #FINDZ
       }
    if %opened = #TRUE
       goto check_gold
    set #LOBJECTID %srcContID
    event macro 17
    wait 20
check_gold:
    finditem %gold C_ , %srcContID
    if #FINDCNT = 0 || #FINDSTACK < 3000
       {
       display ok You need a stack of at least 3K gold$
               + in the source container
       halt
       }
    set %targ #FINDID
    event ExMsg #CHARID 3 256 What do you mean I look suspicious?
main:
    finditem %gold C_ , #BACKPACKID
    if #FINDSTACK > 2000
       {
       exevent drag #FINDID #FINDSTACK
       wait 10
       exevent dropc %srcContID
       wait 10
       }
    event macro 13 33   ; stealing
    target 7s
    set #LTARGETID %targ
    event macro 22
    wait 10s
    goto main
Taelwrath - noobus perpetuus
Anduin Khaine
Apprentice Scribe
Posts: 14
Joined: Fri Apr 24, 2009 8:58 pm

Re: [EasyUO] Simple Stealing Trainer

Post by Anduin Khaine »

Just used your script and it took me to 110. I dont see why it wouldnt work to 120 as it's just gonna try to steal as much as possible which would be the max weight for your skill.
User avatar
BlaZe
Legendary Scribe
Posts: 402
Joined: Thu Dec 25, 2008 12:54 am
Location: Ann Arbor, MI; USA

Re: [EasyUO] Simple Stealing Trainer

Post by BlaZe »

When you get to 85-90 I recommend switching to a 10-stone dyetub for best gains.
EasyUO Devotee
Download
My Popular ScripZ
Pet FightR | Doorman | TrainR: Lockpicking | HealR
Anduin Khaine
Apprentice Scribe
Posts: 14
Joined: Fri Apr 24, 2009 8:58 pm

Re: [EasyUO] Simple Stealing Trainer

Post by Anduin Khaine »

Ya thats what i used to use on osi and other servers. but since afking here is ok i just let it run overnight and woke up to 110. Am so glad I didnt have create another macro targeting 100 dye tubs on packys to raise it this time :)
User avatar
Tael
Elder Scribe
Posts: 166
Joined: Sun May 17, 2009 1:44 am

Re: [EasyUO] Simple Stealing Trainer

Post by Tael »

Thanks for the feedback, guys. Yeah, this is probably not the most efficient way to train stealing, but it works AFK, with minimum fuss and setup. Glad it's working for others.
Taelwrath - noobus perpetuus
User avatar
Fiacha
Grandmaster Scribe
Posts: 91
Joined: Sat Aug 22, 2009 1:39 pm

Re: [EasyUO] Simple Stealing Trainer

Post by Fiacha »

use this script on a boat afk and you don't have to worry about the non locked down container or gold fading just put the 10k in the ship's hold thingy works wonderfully got to 120 with this myself
User avatar
Dain Firehelm
Elder Scribe
Posts: 113
Joined: Tue Jun 05, 2012 7:33 am

Re: [EasyUO] Simple Stealing Trainer

Post by Dain Firehelm »

Thanks for the script :) took me all the way from 30 to 120, just using a chest and 5k gold. It went really slow, but effective non the less :)
- Khamul
User avatar
Reek
Passer by
Posts: 4
Joined: Wed Oct 14, 2015 7:47 pm

Re: [EasyUO] Simple Stealing Trainer

Post by Reek »

thanks a bunch for this.. works like a beast :)
~Reek~
Locked