[UOSteam] Skill Training Macros (Multiple)

If you make a Client-side script you can publish it here for other players to use
Locked
Jax2
Grandmaster Scribe
Posts: 95
Joined: Wed Apr 08, 2009 3:23 pm

[UOSteam] Skill Training Macros (Multiple)

Post by Jax2 »

Hi all, will be adding different skill training macros here as I go. Starting with Chivalry. Each macro will have a brief description of requirements, if any.

Chivalry
Buy up to 30 from vendor
Not required, but it will save you a ton of money if you have a full LRC suit, otherwise you're looking at tithing up to 170k to get to 115. (After 115 requires essences)

Set macro to loop and go to sleep for now. Keep in mind, you must have a weapon in hand for consecrate weapon. This does not include meditation, though I am sure it could be added easily if you don't like having to wait a little bit.

Macro:

Code: Select all

if skill "Chivalry" < 40
  cast "Consecrate Weapon"
  pause 7000
  ELSEIF skill "Chivalry" < 55
  cast "Divine Fury"
  pause 7000
  ELSEif skill "Chivalry" < 69
  cast "Enemy of One"
  pause 7000
  ELSEIF skill "Chivalry" < 88
  cast "Holy Light"
  pause 7000
  ELSEIF skill "Chivalry" < 115
  cast "Noble Sacrifice"
  pause 7000
endif
More coming soon. Check back.
Jax2
Grandmaster Scribe
Posts: 95
Joined: Wed Apr 08, 2009 3:23 pm

Re: [UOSteam] Skill Training Macros (Multiple)

Post by Jax2 »

Bushido

Buy to 30 at Excelsior Halls

Macro:

Code: Select all

IF skill "Bushido" < 60
cast "Confidence"
pause 7000
ELSEIF skill "Bushido" < 75
cast "Counter Attack"
pause 7000
ELSEIF skill "Bushido" < 97.5
cast "Evasion"
pause 7000
ENDIF
EDIT: 97.5 to 120, you must cast momentum strike while fighting. Will not work with macro. Removed from macro. Sorry about that.
More to come...
Last edited by Jax2 on Tue Sep 23, 2014 12:57 pm, edited 1 time in total.
jradford
Master Scribe
Posts: 59
Joined: Mon Sep 08, 2014 8:03 am
Location: Rochester, NY

Re: [UOSteam] Skill Training Macros (Multiple)

Post by jradford »

Looks like I need to download UOSteam. Still have not downloaded a macro program. I just hold down a key and use the built in macros. :)
User avatar
SLiMX
Grandmaster Scribe
Posts: 88
Joined: Sat Jan 21, 2012 4:27 pm

Re: [UOSteam] Skill Training Macros (Multiple)

Post by SLiMX »

Hey just wanted to mention the 7000 wait can be 1000 for the Chivalry trainer and gains super fast :) Thanks for this macro!
Now known as HaZaRdOuS, still the same awesomeness behind the keyboard :)
isidoro
Passer by
Posts: 1
Joined: Sat Jan 02, 2016 8:23 pm

Re: [UOSteam] Skill Training Macros (Multiple)

Post by isidoro »

unfortunately i've deleted it, so i can't provide you with a script, but in order to use momentum strike you just adapt your script to target one pet that sits next to your usual target, which will be re-selected as soon as momentum strike procs.

i did this by targeting my ridable pack lama and a trainer in our guild house, while using a training dirk, and it worked out perfectly :)
Locked