Train Veterinary by nkr
Description: This script makes 2 of your pets attack each other and keeps healing both until 100 Veterinary is reached.
1# Train Veterinary by nkr
2#
3# You should have bandages in your pack
4# and 2 pets that will attack each other.
5# This script will heal both pets
6#
7# VERSION: 0.1
8#
9# CHANGELOG
10# 02/24/2023:
11# - Initial version
12#
13
14overhead "Select pet 1"
15setvar! pet1
16
17pause 500
18
19overhead "Select pet 2"
20setvar! pet2
21
22menu pet1 2
23wft 500
24target pet2
25
26menu pet2 2
27wft 500
28target pet1
29
30warmode "off"
31
32while not dead
33 if skill "Veterinary" >= 100
34 say "All Stop"
35 stop
36 endif
37
38 clearsysmsg
39 dclicktype 3617
40 wft 3000
41 target pet1
42
43 if insysmsg "that being is not damaged!"
44 pause 2000
45 else
46 pause 7000
47 endif
48
49 clearsysmsg
50 dclicktype 3617
51 wft 3000
52 target pet2
53
54 if insysmsg "that being is not damaged!"
55 pause 2000
56 else
57 pause 7000
58 endif
59endwhile