Self Buff by jolanar

Related: Snippet buffs

Description: This will buff yourself with either Bless/Protection or Potions depending on your Inscription and Alchemy skill level.

1if not findbuff 'Magic Reflection' 
2    cast 'Magic Reflection'
3    wft 2500
4    target self
5    wait 500
6endif
7
8if not findbuff 'Reactive Armor' 
9    cast 'Reactive Armor'
10    wft 2500
11    target self
12    wait 500
13endif
14
15if not findbuff 'Strength' and skill 'Inscription' > 0
16    cast 'Bless'
17    wft 2500
18    target self
19    wait 500
20endif
21
22if not findbuff 'Protection' and skill 'Inscription' > 0
23    cast 'Protection'
24    wft 2500
25    target self
26    wait 500
27endif
28
29if str < 101 and skill 'Alchemy' > 0
30    if findtype "White Potion" backpack as pot
31        dclick pot
32    endif
33endif
34
35if dex < 26 and skill 'Alchemy' > 0
36    if findtype "Blue Potion" backpack as pot
37        dclick pot
38    endif
39endif
40
41if not findbuff "Magic Resist Potion" and skill 'Alchemy' > 0
42    if findtype "Black Potion" backpack as pot
43        dclick pot
44    endif
45endif
46
47if not findbuff 'Food Satisfaction'
48    if findtype tray backpack as food
49        dclick food
50        wait 350
51    endif
52endif