Back to "b" tags

AUTO-TRIBARD BUFFS by teofarias

Related: Snippet bardbuff

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

####### AUTO-BARD-BUFF 1.0 ####### ## I"m a new player in Ultima Online as in Outlands, im justing getting to know Razor syntax. ## Did this for my Tri-Bard to learn ## PS: Make sure you have macros set up for the Bard Skills! # Checks if you have food buff if not findbuff 'Food Satisfaction' if not findtype 'tray' backpack overhead 'You dont have any food' wait 300 endif if findtype 'tray' backpack wait 300 dclicktype 'tray' backpack overhead 'eating' endif else overhead 'You have already eated' endif wait 300 # Check if you have Song of Peacemaking Buff up if not findbuff 'song of peacemaking' if skill 'Peacemaking' <= 0 overhead 'Dude, you dont know Peacemaking Song!' wait 300 endif if skill 'peacemaking' > 0 useskill 'Peacemaking' wait 500 target backpack overhead '7,5% Healing Bonus!!!' wait 15000 endif else overhead 'You already have Song of Peacemaking' wait 300 endif # Check if you have Song of Discordance Buff up if not findbuff 'song of discordance' if skill 'Discordance' <= 0 overhead 'Dude, you dont know Discordance Song!' endif if skill 'Discordance' > 0 useskill 'Discordance' wait 500 target backpack overhead '7,5% Dmg Reduction' wait 15000 endif else overhead 'You already have Song of Discordance' wait 300 endif # Check if you have Song of Provocation Buff up if not findbuff 'song of provocation' if skill 'Provocation' < 0 overhead 'Dude, you dont know Provocation Song!' endif if skill 'Provocation' > 0 useskill 'Provocation' wait 500 target backpack overhead '7,5% Dmg Bonus!!!' endif else overhead 'You already have Song of Provocation' endif wait 2000 overhead 'Script Ended!!! Enjoy your farming!'