Created: 10/30/2023, 01:58:21 PM Updated: 10/31/2023, 04:58:35 PM View Change History
1
2
3
4
5
6if skill "Evaluating Intelligence" >= 100
7 overhead "You beat the game" 88
8 overhead "Adjust skill check" 34
9 stop
10endif
11
12if targetexists
13 hotkey 'Cancel Current Target'
14endif
15
16if counttype 'Flamestrike Scroll' self < 1
17 if counttype "Spider's Silk" self < 1 or counttype 'Sulfurous Ash' self < 1
18 overhead "No regs or scrolls!" 88
19 wait 500
20 stop
21 endif
22endif
23
24if skill 'Magery' >= 80
25 if mana > 40
26 hotkey 'Flamestrike'
27 wft
28 if findtype "an anaconda" ground -1 -1 10 as mob
29 if noto mob = hostile
30 target mob
31 else
32 ignore mob
33 replay
34 endif
35 elseif findtype "a rock guar" ground -1 -1 10 as mob
36 if noto mob = hostile
37 target mob
38 else
39 ignore mob
40 replay
41 endif
42 elseif findtype "a sand crawler" ground -1 -1 10 as mob
43 if noto mob = hostile
44 target mob
45 else
46 ignore mob
47 replay
48 endif
49 elseif findtype "a wolfhound" ground -1 -1 10 as mob
50 if noto mob = hostile
51 target mob
52 else
53 ignore mob
54 replay
55 endif
56 else
57 overhead "No mob found" 34
58 wait 2000
59 target backpack
60 endif
61 wait 500
62 endif
63 if mana < 40 and not findbuff "actively meditating"
64 overhead "Meditating" 88
65 hotkey 'Meditation'
66 wait 3500
67 endif
68endif
69replay