Train Veterinary to your max skill by Jaseowns
Description: This script can take you to 120, make sure to update the yourMaxVetSkillToTrainTo to the correct value to prevent overusing bandaids.
I also was training fencing, tactics and armslore to 80. So there are locks in the script.
1# Train Veterinary to your max skill By Jaseowns
2# UO Outlands
3# I was training fencing, tactics and arms lore so me attacking my pet worked great.
4# The other option is to have other pets attack your pet.
5
6@setvar! yourMaxVetSkillToTrainTo 120
7overhead "Select your pet to attack and heal" 88
8@setvar! jasePetOne
9wait 650
10say "all kill"
11wft 500
12target jasePetOne
13
14
15@setvar! maxFencing 80
16@setvar! maxArmsLore 80
17@setvar! maxTactics 80
18
19while not dead
20
21 if skill "fencing" >= maxFencing
22 setskill "fencing" lock
23 endif
24
25 if skill "armslore" >= maxArmsLore
26 setskill "armslore" lock
27 endif
28
29
30 if skill "tactics" >= maxTactics
31 setskill "tactics" lock
32 endif
33
34
35 attack jasePetOne
36 if not bandaging
37 if findtype "clean bandage%s%" backpack as item
38 if not targetexists
39 dclick item
40 wft 500
41 endif
42 target jasePetOne
43 wait 650
44 else
45 overhead "Out of aids!" 34
46 wait 2000
47 break
48 endif
49 endif
50 wait 650
51 if skill "Veterinary" >= yourMaxVetSkillToTrainTo
52 break
53 endif
54endwhile
55
56warmode off
57
58say "all stop"