Back to "120" tags

Flu AFK Tamer to 120 by flutschi

1# frog 'a colossal frog'
2# bear 'a cave bear'
3# scarab 'a scarab'
4
5clearignore 
6
7@setvar! maxFollowers 2
8#>info the tank, insert its ID
9@setvar! tank 0x1268ED
10
11warmode off
12
13if findtype "a cave bear" ground -1 -1 12 as tAnimal
14    #overhead 'found new pet'
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            #this is to lure it closer..
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