Created: 04/13/2022, 04:13:08 PM Updated: 04/13/2022, 04:13:08 PM View Change History
1
2
3
4
5
6
7
8
9if not varexist 'restock_container'
10 overhead "Target your restock container"
11 setvar 'restock_container'
12endif
13
14if skill 'Magery' < 100
15 if skill 'Magery' < 80
16 if count 'Blood moss' < 10 or count 'Nightshade' < 10
17 restock 10
18 wft
19 target "restock_container"
20 wait 500
21 endif
22 if mana > 30
23 overhead "Invis" 88
24 hotkey 'Invisibility'
25 wft
26 hotkey 'Target Self'
27 wait 500
28 endif
29 if mana < 30 and not findbuff "actively meditating"
30 hotkey 'Meditation'
31 wait 3500
32 endif
33 elseif skill 'Magery' < 100
34 if findtype "a water elemental" true
35 say 'a water elemental release'
36 wait 200
37 endif
38 if count 'Blood moss' < 10 or count "Spider's Silk" < 10 or count "Mandrake Root" < 10
39 restock 10
40 wft
41 target "restock_container"
42 wait 500
43 endif
44 if mana > 40
45 hotkey "Water Elemental"
46 wait 5000
47 endif
48 if mana < 40 and not findbuff "actively meditating"
49 hotkey 'Meditation'
50 wait 3500
51 endif
52 endif
53 wait 1000
54 loop
55else
56 overhead 'We did it!' 88
57endif