Created: 10/26/2024, 08:49:33 PM Updated: 12/28/2024, 01:37:17 PM View Change History
1
2
3
4
5clearignore
6
7@setvar! maxFollowers 2
8
9@setvar! tank 0x1268ED
10
11warmode off
12
13if findtype "a cave bear" ground -1 -1 12 as tAnimal
14
15 @setvar! tameThisThing tAnimal
16 pause 500
17else
18 hotkey 'Cancel current target'
19 pause 500
20endif
21
22if hp < maxhp
23 say 'all guard me'
24 pause 500
25 if skill 'magery' > 40
26 cast 'Greater Heal'
27 waitfortarget
28 target 'self'
29 pause 500
30 endif
31 replay
32endif
33
34if find tank ground -1 -1 12
35 if not bandaging
36 pause 200
37 dclicktype 3617 backpack
38 waitfortarget
39 pause 200
40 target tank
41 endif
42else
43 overhead 'no tank..'
44endif
45
46if followers < maxFollowers and varexist tameThisThing
47 clearsysmsg
48
49 if not timerexists 'tamingTimer'
50 createtimer 'tamingTimer'
51 settimer 'tamingTimer' 11000
52 endif
53 if timer 'tamingTimer' > 11000
54 overhead 'taming Target..'
55
56 if not find tameThisThing ground -1 -1 3
57
58 say 'all kill'
59 pause 500
60 target tameThisThing
61 pause 500
62 endif
63
64 say 'all follow me'
65 pause 1000
66 while not targetexists
67 useskill 'Taming'
68 pause 1000
69 endwhile
70 pause 1000
71 target tameThisThing
72 settimer 'tamingTimer' 0
73 endif
74
75 if insysmsg 'fail to'
76 settimer 'tamingTimer' 12000
77 endif
78
79else
80 say 'all kill'
81 waitfortarget
82 target tameThisThing
83 pause 1000
84endif
85
86
87replay