Back to "mager" tags

Train Magery to 80 Shelter by Jaseowns

1# Training Magery to 80 by Jaseowns
2# UO Outlands
3# https://youtu.be/zIGvPxBPTFk
4# Requirements:
5# Lightning: ~100 Mandrake root, Sulfurous Ash
6# Greater Heal: ~20 Spider Silk, Ginsing, Garlic, Mandrake Root
7# Invisibility: ~400 Bloodmoss, Nightshade
8
9# Handle Camping
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# Handle herding
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