Discussion in   Tutorials   started     9 years ago   June 26, 2014, 06:08:57 AM   by   Dontess

Assist UO/ Steam UO training scripts

Dontess
Offline
2 Posts
Topic :   Assist UO/ Steam UO training scripts
9 years ago  June 26, 2014, 06:08:57 AM


All right ladies and gentlemen we are here to whip your avatars into shape...

     KO… let start by raising your Spirit Speak lets get this skill to 100..
Now there is a few ways you can go about doing this one is to set a simple script like this…

Code: [Select]
useskill "Spirit Speak"
pause  10000

Or if you want to do some smart scripting :)

Code: [Select]
if mana > 30
useskill "Spirit Speak"
pause 10000
else
if mana <= 30
useskill "Meditation"
while mana  <  maxmana
pause 1000
endwhile
endif
endif

I know your like what did you do there…
that fist line

   if mana > 30
   
has steam check your mana to see if it is greater than ( > ) 30+
if it is use skill spirit speak then wait 10 sec.

   useskill "Spirit Speak"
   pause 10000
   
This next part is what makes the script smart

   else
   
So the condition is not set off if the mana is less than 30 . Since that didn’t do this…

   if mana <= 30
   use skill "Meditation"

Steam/ Assist checks to see if your mana is lessthan (<) or (=) equal too 30
use skill meditation

   while mana < maxmana
      pause 1000
   endwhile
   
While is a loop in the code here we are saying "While your mana is not full pause here for a 1 sec. and check once more to see if its full if not pause once more… it will do that till the mana is full then go back to casting spirit speak now that its full…

      endif
   endif
   

the first endif is to end the second condition we set in the first condition and the second endif closes the first …  I know that sounds crazy but it makes sense does it not??

i will be adding more tomorrow so check back then we will see how to check the skill to see if it is at 100 and if it is run another macro see you all tomorrow...

Sturger
Offline
730 Posts
#1 Re :   Assist UO/ Steam UO training scripts
9 years ago  June 26, 2014, 10:59:50 AM

 +1 Amazing!

Smilingdeath
Offline
275 Posts
#2 Re :   Assist UO/ Steam UO training scripts
8 years ago  January 25, 2016, 09:06:20 PM

I am a big fan of training lots of skills while using one macro, especially while asleep.


You can string multiple skills in the same macro, such as Arms lore and Identify item.  The record function in UOsteam works great for doing complex skill training. 


Go to the training dummies and use the equipment on the bench.


Auto attack the dummies.  The have UOsteam record a macro for you that uses Arms Lore and Identity Item on the same weapon or Armor piece.  Then use anatomy and evaluate intelligence on the training dummy.
6 abilities at the same time with one macro, while doubling up on the anatomy skill, since that is automatically trained when you fight something as well.