Created: 03/04/2023, 07:11:37 AM Updated: 05/20/2024, 09:36:43 AM View Change History
1
2
3
4
5
6
7
8
9
10if skill "Camping" < 80 and findtype "kindling" backpack
11 if not findtype "campfire" ground -1 1 2
12 dclicktype "kindling" backpack
13 wait 650
14 endif
15endif
16
17
18if not findbuff "actively meditating" and skill "Herding" < 80 and findtype "shepherd's crook" backpack as crook
19 dclick crook
20 wait 200
21endif
22
23if skill 'Magery' < 80
24 overhead 'Be in shelter!' 88
25 if skill 'Magery' < 60
26 overhead "Lighting" 88
27
28 if hp < 25 and mana > 20
29 hotkey "Greater Heal"
30 wft 3500
31 hotkey "Target Self"
32 elseif hp > 25 and mana > 20
33 hotkey "lightning"
34 wft 3500
35 hotkey 'Target Self'
36 wait 500
37 endif
38
39 if mana < 20 and not findbuff "actively meditating"
40 hotkey 'Meditation'
41 wait 500
42 endif
43
44 else
45 if mana > 30
46 overhead "Invis" 88
47 hotkey 'Invisibility'
48 wft
49 hotkey 'Target Self'
50 wait 500
51 endif
52 if mana < 30 and not findbuff "actively meditating"
53 hotkey 'Meditation'
54 wait 500
55 endif
56 endif
57 wait 1000
58 loop
59else
60 overhead 'Time for another script!' 34
61endif
62