Skip to content

Commit

Permalink
Add preheal strat to healer bots
Browse files Browse the repository at this point in the history
  • Loading branch information
davidonete authored and celguar committed Nov 13, 2023
1 parent 5f3ae07 commit 81d1c66
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Mangosbot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1322,6 +1322,13 @@ function CreateSelectedBotPanel()
strategy = "stealth",
tooltip = "Use stealth abilities",
index = 9
},
["preheal"] = {
icon = "heal",
command = {[0] = "#a co ~preheal,?"},
strategy = "preheal",
tooltip = "Heal the party before receiving melee damage",
index = 10
}
})
CreateToolBar(frame, -y, "CLASS_HUNTER", {
Expand Down Expand Up @@ -1489,6 +1496,13 @@ function CreateSelectedBotPanel()
strategy = "blessing",
tooltip = "Auto pick blessings",
index = 9
},
["preheal"] = {
icon = "heal",
command = {[0] = "#a co ~preheal,?"},
strategy = "preheal",
tooltip = "Heal the party before receiving melee damage",
index = 10
}
})
CreateToolBar(frame, -y, "CLASS_PRIEST", {
Expand Down Expand Up @@ -1540,6 +1554,13 @@ function CreateSelectedBotPanel()
strategy = "rshadow",
tooltip = "Provide shadow resistance",
index = 6
},
["preheal"] = {
icon = "heal",
command = {[0] = "#a co ~preheal,?"},
strategy = "preheal",
tooltip = "Heal the party before receiving melee damage",
index = 7
}
})
CreateToolBar(frame, -y, "CLASS_ROGUE", {
Expand Down Expand Up @@ -1663,6 +1684,13 @@ function CreateSelectedBotPanel()
strategy = "totems",
tooltip = "Auto pick totems",
index = 8
},
["preheal"] = {
icon = "heal",
command = {[0] = "#a co ~preheal,?"},
strategy = "preheal",
tooltip = "Heal the party before receiving melee damage",
index = 9
}
})
CreateToolBar(frame, -y, "CLASS_WARLOCK", {
Expand Down

0 comments on commit 81d1c66

Please sign in to comment.