Pauls Mini Dex Trainer

Don't know how something works? Here you will find some useful links. And if you have a question, feel free to ask.
Locked
Paul K
Passer by
Posts: 2
Joined: Sun Feb 20, 2011 10:05 pm

Pauls Mini Dex Trainer

Post by Paul K »

Hey folks,
im playin here for 11 days now and its a great shard so far.
I wrote this little script for my own because the statgain every 15 mins is a bit slow imho.
The people here are really nice and help new players getting started, so i do with this little script i wrote..

You need EasyUo, Razor and a Pack Horse. The recommended area is at britain stables (outside Britain, to the west from the Bank) in one of those little boxes but its already explained in a little tutorial in the script! Just follow the steps 1-4.

Pauls Mini Dex Trainer

Code: Select all

;    Pauls Mini Dex Trainer
;    Author: Paul Kalkbrenner on Excelsior RunUo Freeshard (http://www.uoex.net/)
;    Shard OSI/FS: tested on FS
;    Date: 02/21/2010  EUO: EUO version 1.5
;
;    What you need: Razor, EasyUo, a Pack Horse, 15 minutes per Statpoint
;
; 1. You have to stay in a _fenced_ Area, i recommend the Brit Stables (outside of Britain, WEST).
;    Buy a Pack Horse and release it in one of those little boxes and stay in the middle, so that max 1 tile free space
;    is around you!  Close the little door and release your Pack Horse.
;    Example for Dummies:
;    X is you, o is the Fenced Area in Brit Stables
;     ooo
;     oXo
;     ooo

; 2. Setup a Macro for razor, click (Snooping) the released Pack Horse (Record, double click Pack Horse, stop) and lay it on F5 or change
;    the following to your needs (F1-F12) like: set %razorkey f1
;    Additional comment: You have to update (record) your Razor Macro each time you change your Pack Horse!!!!
;
; 3. Go to USER SETUP and change %razorkey xx to your needs (xx for your Macro F Key), F5 by default.
;    Go to USER SETUP and change your personal DEX cap, 125 by default.
;
; 4. Press start and enjoy your free time.
;
;
; Additional Comment: make sure you havent gained a statpoint in the last 15 minutes, otherwise its a waste of Skillspoints
; you can also spend by reaching your personal Dexcap. You know what i mean? At 100 Snooping you gain a lot slower!
;
initevents
;######### USER SETUP START
set %razorkey f5 ; Change to your Macro key
; Set your Personal DEX Cap, if you dont change this it will stop at 125 Dex
set %personalcap 125
;######### USER SETUP END
; Dont change anything under this line if you have no idea of EASYUO!
;#######################################################################

;##########
setting:
set %curdex #dex
goto mainloop
;##########
;########## Waits for Statgain, if your dex raises 1 point the script will wait for 15 Minutes an tries again!
mainloop:
if #DEX > %curdex
{
goto waiting
}
if #DEX = %personalcap
{
msg Ive reached my DEX limit with Paul Kalkbrenners Mini Dex Trainer!$
stop
}
gosub clicker
goto mainloop
;##########
;########## Wait 15 Mins
waiting:
event sysmessage Now waiting for 15 minutes!!!
event sysmessage Now waiting for 15 minutes!!!
event sysmessage Now waiting for 15 minutes!!!
wait 900s
goto setting
;########## Clicker
sub clicker
key %razorkey ;uses razor macro to click the Pack Horse
wait 1s
return
;##########


Don't be afraid of asking any question if you have problems with it...

Enjoy!

EDIT: Now i see there is a subforum for coding, sorry ;) .. i dont know if this is the right place for this topic, maybe some mod can move it if its not...
Locked