Back to "bard" tags

AUTO-TRIBARD BUFFS by teofarias

Related: Snippet bardbuff

Description: Auto buffs using bard skills with check for food too

1####### AUTO-BARD-BUFF 1.0 #######
2## I"m a new player in Ultima Online as in Outlands, im justing getting to know Razor syntax.
3## Did this for my Tri-Bard to learn
4## PS: Make sure you have macros set up for the Bard Skills!
5
6
7
8
9# Checks if you have food buff
10if not findbuff 'Food Satisfaction'
11    if not findtype 'tray' backpack
12        overhead 'You dont have any food'
13        wait 300 
14    endif
15    if findtype 'tray' backpack
16        wait 300
17        dclicktype 'tray' backpack
18        overhead 'eating'
19    endif
20    else
21        overhead 'You have already eated'
22endif
23
24wait 300
25# Check if you have Song of Peacemaking Buff up
26if not findbuff 'song of peacemaking'
27    if skill 'Peacemaking' <= 0
28        overhead 'Dude, you dont know Peacemaking Song!'
29        wait 300 
30    endif
31    if skill 'peacemaking' > 0
32        useskill 'Peacemaking'
33        wait 500
34        target backpack
35        overhead '7,5% Healing Bonus!!!'
36        wait 15000
37    endif
38    else 
39        overhead 'You already have Song of Peacemaking'
40        wait 300
41endif
42
43# Check if you have Song of Discordance Buff up
44if not findbuff 'song of discordance'
45    if skill 'Discordance' <= 0
46        overhead 'Dude, you dont know Discordance Song!'
47    endif
48    if skill 'Discordance' > 0
49        useskill 'Discordance'
50        wait 500
51        target backpack
52        overhead '7,5% Dmg Reduction'
53        wait 15000
54    endif
55    else 
56        overhead 'You already have Song of Discordance'
57        wait 300
58endif
59
60
61# Check if you have Song of Provocation Buff up
62if not findbuff 'song of provocation'
63    if skill 'Provocation' < 0
64        overhead 'Dude, you dont know Provocation Song!'
65    endif
66    if skill 'Provocation' > 0
67        useskill 'Provocation'
68        wait 500
69        target backpack
70        overhead '7,5% Dmg Bonus!!!'
71    endif    
72    else 
73        overhead 'You already have Song of Provocation'
74endif
75
76wait 2000
77
78overhead 'Script Ended!!! Enjoy your farming!'