Created: 03/07/2023, 01:14:33 AM Updated: 03/07/2023, 01:14:33 AM View Change History
1
2
3
4
5
6
7
8
9if not varexist jaseTankPet or not find jaseTankPet ground -1 -1 12
10 overhead "Select your tank pet" 88
11 @setvar! jaseTankPet
12endif
13
14@setvar! useVetSupplies 1
15
16if skill "Veterinary" >= 50 and not bandaging
17 if useVetSupplies = 1 and findtype "veterinary supplies" backpack as vets
18 dclick vets
19 elseif findtype "clean bandage%s%" backpack as aids
20 dclick aids
21 wft 500
22 target jaseTankPet
23 endif
24endif
25
26if skill "Magery" >= 50
27 if not dead jaseTankPet
28 while not targetexists beneficial
29 hotkey 'Cure'
30 wft 200
31 endwhile
32 else
33 while not targetexists beneficial
34 hotkey 'Resurrection'
35 wft 200
36 endwhile
37 endif
38endif
39
40if targetexists beneficial
41 target jaseTankPet
42endif