From 8c04f6b7c91e0b3c249470e9524f21ede288a802 Mon Sep 17 00:00:00 2001 From: mostlikely4r Date: Fri, 20 Sep 2024 10:42:50 +0200 Subject: [PATCH] -Help fix/update: Added a few help texts, fixed and ran sql generation. --- botpch.h | 6 +- playerbot/ChatFilter.cpp | 2 +- playerbot/PlayerbotAIAware.h | 4 + playerbot/PlayerbotHelpMgr.cpp | 12 +- .../AcceptBattleGroundInvitationAction.h | 12 + playerbot/strategy/actions/AcceptDuelAction.h | 12 + .../strategy/actions/AcceptQuestAction.h | 51 + .../strategy/actions/AcceptResurrectAction.h | 10 + playerbot/strategy/actions/QuestAction.h | 2 +- playerbot/strategy/generic/CombatStrategy.h | 8 + playerbot/strategy/values/ActiveSpellValue.h | 7 + .../strategy/values/AlwaysLootListValue.h | 7 + sql/world/ai_playerbot_texts.sql | 2606 ++++++++++------- 13 files changed, 1673 insertions(+), 1066 deletions(-) diff --git a/botpch.h b/botpch.h index f3e3ad58..355baa3b 100644 --- a/botpch.h +++ b/botpch.h @@ -13,8 +13,4 @@ #include "Globals/ObjectMgr.h" #include "DBScripts/ScriptMgr.h" -#include "playerbot/playerbot.h" - -#ifndef GenerateBotHelp -//#define GenerateBotHelp //Enable only for help generation -#endif \ No newline at end of file +#include "playerbot/playerbot.h" \ No newline at end of file diff --git a/playerbot/ChatFilter.cpp b/playerbot/ChatFilter.cpp index b3a3a03b..2f20a22c 100644 --- a/playerbot/ChatFilter.cpp +++ b/playerbot/ChatFilter.cpp @@ -155,7 +155,7 @@ class RoleChatFilter : public ChatFilter virtual std::string GetHelpName() { return "role"; } - virtual std::unordered_map GetFilterExamples() + virtual std::unordered_map GetFilterExamples() { std::unordered_map retMap; retMap["@tank"] = "All bots that have a tank spec."; diff --git a/playerbot/PlayerbotAIAware.h b/playerbot/PlayerbotAIAware.h index 1b0e2acb..6bb5d475 100644 --- a/playerbot/PlayerbotAIAware.h +++ b/playerbot/PlayerbotAIAware.h @@ -1,6 +1,10 @@ #pragma once #include +#ifndef GenerateBotHelp +//#define GenerateBotHelp //Enable only for help generation +#endif + class PlayerbotAI; namespace ai diff --git a/playerbot/PlayerbotHelpMgr.cpp b/playerbot/PlayerbotHelpMgr.cpp index 26db4a39..d665169d 100644 --- a/playerbot/PlayerbotHelpMgr.cpp +++ b/playerbot/PlayerbotHelpMgr.cpp @@ -63,7 +63,7 @@ std::string PlayerbotHelpMgr::makeList(std::vectorconst parts, std: } #ifdef GenerateBotHelp -string PlayerbotHelpMgr::formatFloat(float num) +std::string PlayerbotHelpMgr::formatFloat(float num) { std::ostringstream out; out << std::fixed << std::setprecision(3); @@ -90,12 +90,12 @@ bool PlayerbotHelpMgr::IsGenericSupported(PlayerbotAIAware* object) return supported.find(name) != supported.end(); } -string PlayerbotHelpMgr::GetObjectName(PlayerbotAIAware* object, std::string className) +std::string PlayerbotHelpMgr::GetObjectName(PlayerbotAIAware* object, std::string className) { return IsGenericSupported(object) ? object->getName() : className + " " + object->getName(); } -string PlayerbotHelpMgr::GetObjectLink(PlayerbotAIAware* object, std::string className) +std::string PlayerbotHelpMgr::GetObjectLink(PlayerbotAIAware* object, std::string className) { std::string prefix = "unkown"; if (dynamic_cast(object)) @@ -235,7 +235,7 @@ void PlayerbotHelpMgr::LoadAllStrategies() } } -string PlayerbotHelpMgr::GetStrategyBehaviour(std::string className, Strategy* strategy) +std::string PlayerbotHelpMgr::GetStrategyBehaviour(std::string className, Strategy* strategy) { std::string behavior; @@ -328,7 +328,7 @@ void PlayerbotHelpMgr::GenerateStrategyHelp() } } -string PlayerbotHelpMgr::GetTriggerBehaviour(std::string className, Trigger* trigger) +std::string PlayerbotHelpMgr::GetTriggerBehaviour(std::string className, Trigger* trigger) { std::string behavior; @@ -441,7 +441,7 @@ void PlayerbotHelpMgr::GenerateTriggerHelp() } } -string PlayerbotHelpMgr::GetActionBehaviour(std::string className, Action* nextAction) +std::string PlayerbotHelpMgr::GetActionBehaviour(std::string className, Action* nextAction) { std::string behavior; diff --git a/playerbot/strategy/actions/AcceptBattleGroundInvitationAction.h b/playerbot/strategy/actions/AcceptBattleGroundInvitationAction.h index b4b7c328..e529e79b 100644 --- a/playerbot/strategy/actions/AcceptBattleGroundInvitationAction.h +++ b/playerbot/strategy/actions/AcceptBattleGroundInvitationAction.h @@ -25,6 +25,18 @@ namespace ai ai->ResetStrategies();*/ return true; } + +#ifdef GenerateBotHelp + virtual std::string GetHelpName() { return "accept bg invitation"; } //Must equal iternal name + virtual std::string GetHelpDescription() + { + return "This action clicks the accept button when invited to join a bg.\n" + "After joining the bg strategies are reset..\n" + "This action is currently disabled.."; + } + virtual std::vector GetUsedActions() { return {}; } + virtual std::vector GetUsedValues() { return {}; } +#endif }; } diff --git a/playerbot/strategy/actions/AcceptDuelAction.h b/playerbot/strategy/actions/AcceptDuelAction.h index 3a85658d..30898ef5 100644 --- a/playerbot/strategy/actions/AcceptDuelAction.h +++ b/playerbot/strategy/actions/AcceptDuelAction.h @@ -35,6 +35,18 @@ namespace ai ai->ResetStrategies(); return true; } + +#ifdef GenerateBotHelp + virtual std::string GetHelpName() { return "accept duel"; } //Must equal iternal name + virtual std::string GetHelpDescription() + { + return "This action clicks the accept button when invited to join a bg.\n" + "After joining the bg strategies are reset.\n" + "This action is currently disabled."; + } + virtual std::vector GetUsedActions() { return {}; } + virtual std::vector GetUsedValues() { return {}; } +#endif }; } diff --git a/playerbot/strategy/actions/AcceptQuestAction.h b/playerbot/strategy/actions/AcceptQuestAction.h index d50fb2de..7ac02db9 100644 --- a/playerbot/strategy/actions/AcceptQuestAction.h +++ b/playerbot/strategy/actions/AcceptQuestAction.h @@ -12,6 +12,17 @@ namespace ai protected: virtual bool ProcessQuest(Player* requester, Quest const* quest, WorldObject* questGiver) override; + +#ifdef GenerateBotHelp + virtual std::string GetHelpName() { return "accept all quests"; } //Must equal iternal name + virtual std::string GetHelpDescription() + { + return "This action wil accept all quests from the npc selected by the master\n" + "It will use all nearby quest givers if none is selected."; + } + virtual std::vector GetUsedActions() { return {}; } + virtual std::vector GetUsedValues() { return { "nearest npcs" , "nearest game objects no los" }; } +#endif }; class AcceptQuestAction : public AcceptAllQuestsAction @@ -19,6 +30,16 @@ namespace ai public: AcceptQuestAction(PlayerbotAI* ai) : AcceptAllQuestsAction(ai, "accept quest") {} virtual bool Execute(Event& event); + +#ifdef GenerateBotHelp + virtual std::string GetHelpName() { return "accept quests"; } //Must equal iternal name + virtual std::string GetHelpDescription() + { + return "This action wil accept a specified quest (link or *) from any nearby quest giver."; + } + virtual std::vector GetUsedActions() { return { }; } + virtual std::vector GetUsedValues() { return { "nearest npcs" , "nearest game objects no los" }; } +#endif }; class AcceptQuestShareAction : public Action @@ -26,17 +47,47 @@ namespace ai public: AcceptQuestShareAction(PlayerbotAI* ai) : Action(ai, "accept quest share") {} virtual bool Execute(Event& event); + +#ifdef GenerateBotHelp + virtual std::string GetHelpName() { return "accept quest share"; } //Must equal iternal name + virtual std::string GetHelpDescription() + { + return "This action will make a bot click accept when shared a quest."; + } + virtual std::vector GetUsedActions() { return { }; } + virtual std::vector GetUsedValues() { return { }; } +#endif }; class ConfirmQuestAction : public Action { public: ConfirmQuestAction(PlayerbotAI* ai) : Action(ai, "confirm quest") {} virtual bool Execute(Event& event); + +#ifdef GenerateBotHelp + virtual std::string GetHelpName() { return "confirm quest"; } //Must equal iternal name + virtual std::string GetHelpDescription() + { + return "This action will make a bot click accept asked to start a quest."; + } + virtual std::vector GetUsedActions() { return { }; } + virtual std::vector GetUsedValues() { return { }; } +#endif }; class QuestDetailsAction : public Action { public: QuestDetailsAction(PlayerbotAI* ai) : Action(ai, "quest details") {} virtual bool Execute(Event& event); + +#ifdef GenerateBotHelp + virtual std::string GetHelpName() { return "quest details"; } //Must equal iternal name + virtual std::string GetHelpDescription() + { + return "This action will make a bot click accept in the quest details page."; + } + virtual std::vector GetUsedActions() { return { }; } + virtual std::vector GetUsedValues() { return { }; } +#endif }; } diff --git a/playerbot/strategy/actions/AcceptResurrectAction.h b/playerbot/strategy/actions/AcceptResurrectAction.h index e5bb6a62..18575e55 100644 --- a/playerbot/strategy/actions/AcceptResurrectAction.h +++ b/playerbot/strategy/actions/AcceptResurrectAction.h @@ -27,6 +27,16 @@ namespace ai return false; } + +#ifdef GenerateBotHelp + virtual std::string GetHelpName() { return "accept resurrect"; } //Must equal iternal name + virtual std::string GetHelpDescription() + { + return "This action clicks the accept button asked if it wants to be resurrected by a player."; + } + virtual std::vector GetUsedActions() { return {}; } + virtual std::vector GetUsedValues() { return {}; } +#endif }; } diff --git a/playerbot/strategy/actions/QuestAction.h b/playerbot/strategy/actions/QuestAction.h index e35f2a50..2f39f46c 100644 --- a/playerbot/strategy/actions/QuestAction.h +++ b/playerbot/strategy/actions/QuestAction.h @@ -8,7 +8,7 @@ namespace ai class QuestAction : public Action { public: - QuestAction(PlayerbotAI* ai, std::string name) : Action(ai, name) {} + QuestAction(PlayerbotAI* ai, std::string name = "quest") : Action(ai, name) {} public: virtual bool Execute(Event& event); diff --git a/playerbot/strategy/generic/CombatStrategy.h b/playerbot/strategy/generic/CombatStrategy.h index 27823f3f..f0c101f7 100644 --- a/playerbot/strategy/generic/CombatStrategy.h +++ b/playerbot/strategy/generic/CombatStrategy.h @@ -40,6 +40,14 @@ namespace ai public: AvoidAoeStrategyMultiplier(PlayerbotAI* ai) : Multiplier(ai, "run away on area debuff") {} float GetValue(Action* action) override; + +#ifdef GenerateBotHelp + virtual std::string GetHelpName() { return "run away on area debuff"; } //Must equal iternal name + virtual std::string GetHelpDescription() { + return "This stops bots from casting certain (cast-time) spells when affected by an area debuf."; + } + virtual std::vector GetRelatedStrategies() { return {}; } +#endif }; class WaitForAttackStrategy : public Strategy diff --git a/playerbot/strategy/values/ActiveSpellValue.h b/playerbot/strategy/values/ActiveSpellValue.h index 4ba928cb..de94e74a 100644 --- a/playerbot/strategy/values/ActiveSpellValue.h +++ b/playerbot/strategy/values/ActiveSpellValue.h @@ -9,5 +9,12 @@ namespace ai ActiveSpellValue(PlayerbotAI* ai, std::string name = "active spell") : CalculatedValue(ai, name) {} virtual uint32 Calculate(); + +#ifdef GenerateBotHelp + virtual std::string GetHelpName() { return "active spell"; } //Must equal iternal name + virtual std::string GetHelpTypeName() { return "spell"; } + virtual std::string GetHelpDescription() { return "This value contains the spell id of the spell that the bot is currently casting."; } + virtual std::vector GetUsedValues() { return {}; } +#endif }; } diff --git a/playerbot/strategy/values/AlwaysLootListValue.h b/playerbot/strategy/values/AlwaysLootListValue.h index 917ac1f3..9faf1b38 100644 --- a/playerbot/strategy/values/AlwaysLootListValue.h +++ b/playerbot/strategy/values/AlwaysLootListValue.h @@ -11,6 +11,13 @@ namespace ai virtual std::string Save(); virtual bool Load(std::string value); +#ifdef GenerateBotHelp + virtual std::string GetHelpName() { return "always loot list"; } //Must equal iternal name + virtual std::string GetHelpTypeName() { return "loot"; } + virtual std::string GetHelpDescription() { return "This value contains a list of item ids that should always be looted."; } + virtual std::vector GetUsedValues() { return {}; } +#endif + private: std::set list; }; diff --git a/sql/world/ai_playerbot_texts.sql b/sql/world/ai_playerbot_texts.sql index df38a4f0..aa90d586 100644 --- a/sql/world/ai_playerbot_texts.sql +++ b/sql/world/ai_playerbot_texts.sql @@ -22,167 +22,167 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (2, 'object:strategy', 0, 'Strategies are rules that controle bot behavior. They combine [h:object:trigger|triggers] and [h:object:action|actions].\r\nStrategies: [h:list:generic strategy|general]\r\n[h:list:warrior strategy|warrior][h:list:paladin strategy|paladin][h:list:hunter strategy|hunter]\r\n[h:list:rogue strategy|rogue][h:list:priest strategy|priest][h:list:deathknight strategy|deathknight]\r\n[h:list:shaman strategy|shaman][h:list:mage strategy|mage][h:list:warlock strategy|warlock][h:list:druid strategy|druid]', '', '', '', '', '', '', '', '', '', 0), (3, 'object:trigger', 0, 'Triggers are conditions are evalated by the bot which helps it decide what to do. \r\nA [h:object|strategy] will enable a trigger and combine it with one or multiple [h:object:action|actions] which results in bot behavior. \r\nTriggers: [h:list:generic trigger|general]\r\n[h:list:warrior trigger|warrior][h:list:paladin trigger|paladin][h:list:hunter trigger|hunter]\r\n[h:list:rogue trigger|rogue][h:list:priest trigger|priest][h:list:deathknight trigger|deathknight]\r\n[h:list:shaman trigger|shaman][h:list:mage trigger|mage][h:list:warlock trigger|warlock][h:list:druid trigger|druid]', '', '', '', '', '', '', '', '', '', 0), (4, 'object:action', 0, 'Actions are specific interactions the bot can have with the world or itself. \r\nUsually the result of a [h:object|trigger] enabled by a [h:object|strategy].\r\nActions: [h:list:generic action|general]\r\n[h:list:warrior action|warrior][h:list:paladin action|paladin][h:list:hunter action|hunter]\r\n[h:list:rogue action|rogue][h:list:priest action|priest][h:list:deathknight action|deathknight]\r\n[h:list:shaman action|shaman][h:list:mage action|mage][h:list:warlock action|warlock][h:list:druid action|druid]', '', '', '', '', '', '', '', '', '', 0), - (5, 'object:value', 1, 'Values are pieces of information the bot has about itself or the world.\r\nThey are used in [h:object:trigger|triggers] and [h:object:action|actions] for evaluation purposes.\r\nValues:[h:list|operator value] [h:list|loot value] [h:list|combat value] [h:list|entry value] [h:list|item value] [h:list|rpg value] [h:list|talent spec value] [h:list|other value] ', '', '', '', '', '', '', '', '', '', 0), + (5, 'object:value', 1, 'Values are pieces of information the bot has about itself or the world.\r\nThey are used in [h:object:trigger|triggers] and [h:object:action|actions] for evaluation purposes.\r\nValues:[h:list|operator value] [h:list|loot value] [h:list|combat value] [h:list|spell value] [h:list|entry value] [h:list|item value] [h:list|guid value] [h:list|rpg value] [h:list|talent spec value] [h:list|other value] ', '', '', '', '', '', '', '', '', '', 0), (6, 'template:strategy', 0, ' [h:object|strategy] [c:co ~|toggle combat][c:nc ~|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (7, 'template:trigger', 0, ' [h:object|trigger] [c:|trigger now]\r\n', '', '', '', '', '', '', '', '', '', 0), (8, 'template:action', 0, ' [h:object|action] [c:do |execute]\r\n', '', '', '', '', '', '', '', '', '', 0), (9, 'template:value', 0, ' [h:object|value] [c:cdebug values |current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (10, 'object:chatfilter', 1, 'Chatfilters is a bot selection mechanism that can be precede a chat command to only reach specific bots.\r\nExample "@ who" will only make bots who fit the filter respond.\r\nMultiple filters can be used at the same time.\r\nFilters:[h:chatfilter|strategy] [h:chatfilter|role] [h:chatfilter|class] [h:chatfilter|rti] [h:chatfilter|combat] [h:chatfilter|level] [h:chatfilter|group] [h:chatfilter|guild] [h:chatfilter|state] [h:chatfilter|usage] [h:chatfilter|talent spec]\r\n[h:chatfilter|location] [h:chatfilter|random] [h:chatfilter|gear] ', '', '', '', '', '', '', '', '', '', 0), (11, 'template:chatfilter', 0, ' [h:object|chatfilter]\r\n\r\nExamples:\r\n', '', '', '', '', '', '', '', '', '', 0), - (12, 'trigger:warrior pummel', 1, 'pummel [h:object|trigger] [c:pummel|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior pummel|pummel] (40.000) for [h:strategy:warrior cc fury raid|cc fury raid]\r\nExecutes: [h:action:warrior pummel|pummel] (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nExecutes: [h:action:warrior pummel|pummel] (40.000) for [h:strategy:warrior cc fury pve|cc fury pve]', '', '', '', '', '', '', '', '', '', 0), + (12, 'trigger:warrior pummel', 1, 'pummel [h:object|trigger] [c:pummel|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior pummel|pummel] (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nExecutes: [h:action:warrior pummel|pummel] (40.000) for [h:strategy:warrior cc fury pve|cc fury pve]\r\nExecutes: [h:action:warrior pummel|pummel] (40.000) for [h:strategy:warrior cc fury raid|cc fury raid]', '', '', '', '', '', '', '', '', '', 0), (13, 'strategy:arena', 1, 'arena [h:object|strategy] [c:co ~arena|toggle combat][c:nc ~arena|toggle noncombat]\r\nThis strategy controls the behavior arena fight.\r\nRelated strategies:\r\n[h:strategy|battleground] [h:strategy|bg] \r\nCombat behavior:\r\nOn: [h:trigger|no possible targets] do [h:action|arena tactics] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger|no possible targets] do [h:action|arena tactics] (1.000)', '', '', '', '', '', '', '', '', '', 0), - (14, 'trigger:paladin target low health', 1, 'target low health [h:object|trigger] [c:target low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin hammer of wrath|hammer of wrath] (20.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nExecutes: [h:action:paladin hammer of wrath|hammer of wrath] (20.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin hammer of wrath|hammer of wrath] (20.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nExecutes: [h:action:paladin hammer of wrath|hammer of wrath] (20.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:paladin hammer of wrath|hammer of wrath] (20.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nExecutes: [h:action:paladin hammer of wrath|hammer of wrath] (20.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (15, 'trigger:warrior battle stance', 1, 'battle stance [h:object|trigger] [c:battle stance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior battle stance|battle stance] (30.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nExecutes: [h:action:warrior battle stance|battle stance] (30.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nExecutes: [h:action:warrior battle stance|battle stance] (30.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nNon combat behavior:\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (14, 'trigger:paladin target low health', 1, 'target low health [h:object|trigger] [c:target low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin hammer of wrath|hammer of wrath] (20.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nExecutes: [h:action:paladin hammer of wrath|hammer of wrath] (20.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nExecutes: [h:action:paladin hammer of wrath|hammer of wrath] (20.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin hammer of wrath|hammer of wrath] (20.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nExecutes: [h:action:paladin hammer of wrath|hammer of wrath] (20.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (15, 'trigger:warrior battle stance', 1, 'battle stance [h:object|trigger] [c:battle stance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior battle stance|battle stance] (30.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nExecutes: [h:action:warrior battle stance|battle stance] (30.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nExecutes: [h:action:warrior battle stance|battle stance] (30.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior battle stance|battle stance] (10.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), (16, 'strategy:group', 1, 'group [h:object|strategy] [c:co ~group|toggle combat][c:nc ~group|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|leader is afk] do [h:action|leave far away] (4.000)\r\nOn: [h:trigger|often] do [h:action|invite nearby] (4.000)\r\nOn: [h:trigger|random] do [h:action|invite guild] (4.000)\r\nOn: [h:trigger|seldom] do [h:action|leave far away] (4.000)\r\nDead state behavior:\r\nOn: [h:trigger|leader is afk] do [h:action|leave far away] (4.000)\r\nOn: [h:trigger|seldom] do [h:action|leave far away] (4.000)', '', '', '', '', '', '', '', '', '', 0), - (17, 'action:talk', 1, 'talk [h:object|action] [c:do talk|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|seldom] with relevance (1.000) for [h:strategy|emote]', '', '', '', '', '', '', '', '', '', 0), + (17, 'action:talk', 1, 'talk [h:object|action] [c:do talk|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|seldom] with relevance (0.500) for [h:strategy|emote]', '', '', '', '', '', '', '', '', '', 0), (18, 'action:shaman cleanse spirit', 1, 'cleanse spirit [h:object|action] [c:do cleanse spirit|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]', '', '', '', '', '', '', '', '', '', 0), - (19, 'trigger:paladin repentance on snare target on snare target', 1, 'repentance on snare target on snare target [h:object|trigger] [c:repentance on snare target on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin repentance on snare target|repentance on snare target] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin repentance on snare target|repentance on snare target] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nExecutes: [h:action:paladin repentance on snare target|repentance on snare target] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (19, 'trigger:paladin repentance on snare target on snare target', 1, 'repentance on snare target on snare target [h:object|trigger] [c:repentance on snare target on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin repentance on snare target|repentance on snare target] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin repentance on snare target|repentance on snare target] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nExecutes: [h:action:paladin repentance on snare target|repentance on snare target] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), (20, 'strategy:mage bmana', 1, 'bmana [h:object|strategy] [c:co ~bmana|toggle combat][c:nc ~bmana|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage mage armor|mage armor] do [h:action:mage mage armor|mage armor] (19.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage mage armor|mage armor] do [h:action:mage mage armor|mage armor] (19.000)', '', '', '', '', '', '', '', '', '', 0), (21, 'action:drop quest', 1, 'drop quest [h:object|action] [c:do drop quest|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|drop] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|drop] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|drop] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|drop] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (22, 'action:shaman cure disease', 1, 'cure disease [h:object|action] [c:do cure disease|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]', '', '', '', '', '', '', '', '', '', 0), - (23, 'action:deathknight howling blast', 1, 'howling blast [h:object|action] [c:do howling blast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight frost aoe|frost aoe]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), + (22, 'action:shaman cure disease', 1, 'cure disease [h:object|action] [c:do cure disease|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]', '', '', '', '', '', '', '', '', '', 0), + (23, 'action:deathknight howling blast', 1, 'howling blast [h:object|action] [c:do howling blast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight frost aoe|frost aoe]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), (24, 'strategy:onyxia\'s lair', 1, 'onyxia\'s lair [h:object|strategy] [c:co ~onyxia\'s lair|toggle combat][c:nc ~onyxia\'s lair|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|start onyxia fight] do [h:action|enable onyxia fight strategy] (100.000)', '', '', '', '', '', '', '', '', '', 0), (25, 'action:use meeting stone', 1, 'use meeting stone [h:object|action] [c:do use meeting stone|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|use game object] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|use game object] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|use game object] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (26, 'strategy:rpg explore', 1, 'rpg explore [h:object|strategy] [c:co ~rpg explore|toggle combat][c:nc ~rpg explore|toggle noncombat]\r\nThis strategy makes bot move to innkeepers and flight masters.\r\nBots will make this inn their new home when their current home is far away.\r\nBots pick a random flight (when not with a player) or discover new flightpaths.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|rpg discover] do [h:action|rpg discover] (1.110)\r\nOn: [h:trigger|rpg home bind] do [h:action|rpg home bind] (1.060)\r\nOn: [h:trigger|rpg taxi] do [h:action|rpg taxi] (1.005)', '', '', '', '', '', '', '', '', '', 0), (27, 'action:shaman heroism', 1, 'heroism [h:object|action] [c:do heroism|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman heroism|heroism] with relevance (20.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman heroism|heroism] with relevance (20.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman heroism|heroism] with relevance (20.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman heroism|heroism] with relevance (20.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman heroism|heroism] with relevance (20.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman heroism|heroism] with relevance (20.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nTriggers from: [h:trigger:shaman heroism|heroism] with relevance (20.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:shaman heroism|heroism] with relevance (20.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman heroism|heroism] with relevance (20.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (28, 'trigger:druid rake', 1, 'rake [h:object|trigger] [c:rake|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid rake|rake] (15.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid rake|rake] (15.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), + (28, 'trigger:druid rake', 1, 'rake [h:object|trigger] [c:rake|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid rake|rake] (12.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:druid rake|rake] (12.000) for [h:strategy:druid dps feral pvp|dps feral pvp]', '', '', '', '', '', '', '', '', '', 0), (29, 'action:invite', 1, 'invite [h:object|action] [c:do invite|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|invite] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|invite] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|invite] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|invite] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (30, 'trigger:paladin hammer of justice on enemy', 1, 'hammer of justice on enemy [h:object|trigger] [c:hammer of justice on enemy|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), - (31, 'action:rogue ambush', 1, 'ambush [h:object|action] [c:do ambush|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (30, 'trigger:paladin hammer of justice on enemy', 1, 'hammer of justice on enemy [h:object|trigger] [c:hammer of justice on enemy|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (31, 'action:rogue ambush', 1, 'ambush [h:object|action] [c:do ambush|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (13.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (32, 'trigger:magmadar lava bomb', 1, 'magmadar lava bomb [h:object|trigger] [c:magmadar lava bomb|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|move away from hazard] (100.000) for [h:strategy|magmadar]', '', '', '', '', '', '', '', '', '', 0), (33, 'trigger:ah bid', 1, 'ah bid [h:object|trigger] [c:ah bid|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|ah bid] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|ah bid] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|ah bid] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|ah bid] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (34, 'trigger:give water', 1, 'give water [h:object|trigger] [c:give water|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:give water|give water] (12.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:give water|give water] (12.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:give water|give water] (12.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:give water|give water] (12.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:give water|give water] (12.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:give water|give water] (12.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:give water|give water] (12.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:give water|give water] (12.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:give water|give water] (12.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (34, 'trigger:give water', 1, 'give water [h:object|trigger] [c:give water|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:give water|give water] (11.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:give water|give water] (11.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:give water|give water] (11.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:give water|give water] (11.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:give water|give water] (11.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:give water|give water] (11.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:give water|give water] (11.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:give water|give water] (11.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:give water|give water] (11.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (35, 'value:bg type', 1, 'bg type [h:object|value] [c:cdebug values bg type|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (36, 'strategy:hunter bmana', 1, 'bmana [h:object|strategy] [c:co ~bmana|toggle combat][c:nc ~bmana|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the viper|aspect of the viper] do [h:action:hunter aspect of the viper|aspect of the viper] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the viper|aspect of the viper] do [h:action:hunter aspect of the viper|aspect of the viper] (10.000)', '', '', '', '', '', '', '', '', '', 0), (37, 'action:deathknight improved icy talons', 1, 'improved icy talons [h:object|action] [c:do improved icy talons|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight improved icy talons|improved icy talons] with relevance (19.000) for [h:strategy:deathknight bdps|bdps]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:deathknight improved icy talons|improved icy talons] with relevance (19.000) for [h:strategy:deathknight bdps|bdps]', '', '', '', '', '', '', '', '', '', 0), - (38, 'strategy:close', 1, 'close [h:object|strategy] [c:co ~close|toggle combat][c:nc ~close|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|enemy out of melee range] do [h:action|reach melee] (60.000)\r\nOn: [h:trigger|enemy too close for melee] do [h:action|move out of enemy contact] (18.000)', '', '', '', '', '', '', '', '', '', 0), + (38, 'strategy:close', 1, 'close [h:object|strategy] [c:co ~close|toggle combat][c:nc ~close|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|enemy out of melee range] do [h:action|reach melee] (30.000)\r\nOn: [h:trigger|enemy too close for melee] do [h:action|move out of enemy contact] (18.000)', '', '', '', '', '', '', '', '', '', 0), (39, 'trigger:stats', 1, 'stats [h:object|trigger] [c:stats|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|stats] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|stats] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|stats] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|stats] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (40, 'strategy:druid caster', 1, 'caster [h:object|strategy] [c:co ~caster|toggle combat][c:nc ~caster|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:druid nature\'s grasp|nature\'s grasp] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:druid rejuvenation|rejuvenation] (62.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (81.000)[h:action:druid regrowth|regrowth] (82.000)\r\nOn: [h:trigger:druid eclipse (lunar)|eclipse (lunar)] do [h:action:druid starfire|starfire] (16.000)\r\nOn: [h:trigger:druid eclipse (solar)|eclipse (solar)] do [h:action:druid wrath|wrath] (16.000)\r\nOn: [h:trigger:druid entangling roots on snare target|entangling roots on snare target] do [h:action:druid entangling roots on snare target|entangling roots on snare target] (25.000)\r\nOn: [h:trigger:druid insect swarm|insect swarm] do [h:action:druid insect swarm|insect swarm] (15.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (72.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:druid innervate|innervate] (25.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:druid regrowth|regrowth] (72.000)\r\nOn: [h:trigger:druid moonfire|moonfire] do [h:action:druid moonfire|moonfire] (14.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:druid rejuvenation on party|rejuvenation on party] (61.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:druid healing touch on party|healing touch on party] (81.000)[h:action:druid regrowth on party|regrowth on party] (82.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:druid rebirth|rebirth] (21.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (71.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:druid regrowth on party|regrowth on party] (71.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (92.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)\r\nDefault:[h:action:melee|melee] (9.000)[h:action:druid starfire|starfire] (12.000)[h:action:druid wrath|wrath] (11.000)', '', '', '', '', '', '', '', '', '', 0), (41, 'action:rpg trade useful', 1, 'rpg trade useful [h:object|action] [c:do rpg trade useful|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg trade useful] with relevance (1.030) for [h:strategy|rpg player]', '', '', '', '', '', '', '', '', '', 0), - (42, 'trigger:priest fear ward', 1, 'fear ward [h:object|trigger] [c:fear ward|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest fear ward|fear ward] (10.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), + (42, 'trigger:priest fear ward', 1, 'fear ward [h:object|trigger] [c:fear ward|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest fear ward|fear ward] (90.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest fear ward|fear ward] (90.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest fear ward|fear ward] (90.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest fear ward|fear ward] (90.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest fear ward|fear ward] (90.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest fear ward|fear ward] (90.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest fear ward|fear ward] (90.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest fear ward|fear ward] (90.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest fear ward|fear ward] (90.000) for [h:strategy:priest buff shadow raid|buff shadow raid]\r\nNon combat behavior:\r\nExecutes: [h:action:priest fear ward|fear ward] (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest fear ward|fear ward] (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest fear ward|fear ward] (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest fear ward|fear ward] (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest fear ward|fear ward] (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest fear ward|fear ward] (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest fear ward|fear ward] (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest fear ward|fear ward] (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest fear ward|fear ward] (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (43, 'strategy:onyxia', 1, 'onyxia [h:object|strategy] [c:co ~onyxia|toggle combat][c:nc ~onyxia|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|end onyxia fight] do [h:action|disable onyxia fight strategy] (100.000)\r\nDead state behavior:\r\nOn: [h:trigger|end onyxia fight] do [h:action|disable onyxia fight strategy] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (44, 'strategy:dead', 1, 'dead [h:object|strategy] [c:co ~dead|toggle combat][c:nc ~dead|toggle noncombat]\r\nThis strategy will includes various behavior when the bot is dead.\r\n The main goal is to revive in a safe location.\r\nDead state behavior:\r\nOn: [h:trigger|corpse near] do [h:action|revive from corpse] (99.000)\r\nOn: [h:trigger|dead] do [h:action|find corpse] (100.000)\r\nOn: [h:trigger|falling far] do [h:action|repop] (101.000)\r\nOn: [h:trigger|move long stuck] do [h:action|repop] (101.000)\r\nOn: [h:trigger|resurrect request] do [h:action|accept resurrect] (100.000)\r\nOn: [h:trigger|val] do [h:action|spirit healer] (102.000)\r\nOn: [h:trigger|very often] do [h:action|auto release] (100.000)[h:action|self resurrect] (103.000)', '', '', '', '', '', '', '', '', '', 0), + (44, 'strategy:dead', 1, 'dead [h:object|strategy] [c:co ~dead|toggle combat][c:nc ~dead|toggle noncombat]\r\nThis strategy will includes various behavior when the bot is dead.\r\n The main goal is to revive in a safe location.\r\nDead state behavior:\r\nOn: [h:trigger|corpse near] do [h:action|revive from corpse] (99.000)\r\nOn: [h:trigger|dead] do [h:action|find corpse] (100.000)\r\nOn: [h:trigger|move long stuck] do [h:action|repop] (101.000)\r\nOn: [h:trigger|val] do [h:action|repop] (104.000)\r\nOn: [h:trigger|falling far] do [h:action|repop] (101.000)\r\nOn: [h:trigger|val] do [h:action|spirit healer] (102.000)\r\nOn: [h:trigger|resurrect request] do [h:action|accept resurrect] (100.000)\r\nOn: [h:trigger|very often] do [h:action|auto release] (100.000)[h:action|self resurrect] (103.000)', '', '', '', '', '', '', '', '', '', 0), (45, 'action:clean quest log', 1, 'clean quest log [h:object|action] [c:do clean quest log|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (6.000) for [h:strategy|maintenance]', '', '', '', '', '', '', '', '', '', 0), (46, 'trigger:not near master', 1, 'not near master [h:object|trigger] [c:not near master|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|follow] (1.000) for [h:strategy|follow]\r\nDead state behavior:\r\nExecutes: [h:action|follow] (1.000) for [h:strategy|follow]', '', '', '', '', '', '', '', '', '', 0), (47, 'strategy:avoid aoe', 1, 'avoid aoe [h:object|strategy] [c:co ~avoid aoe|toggle combat][c:nc ~avoid aoe|toggle noncombat]\r\nThis strategy will make bots move away when they are in aoe.\r\nCombat behavior:\r\nOn: [h:trigger|has area debuff] do [h:action|flee] (95.000)\r\nReaction behavior:\r\nOn: [h:trigger|has area debuff] do [h:action|flee] (95.000)', '', '', '', '', '', '', '', '', '', 0), (48, 'strategy:grind', 1, 'grind [h:object|strategy] [c:co ~grind|toggle combat][c:nc ~grind|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|no target] do [h:action|attack anything] (5.000)', '', '', '', '', '', '', '', '', '', 0), - (49, 'trigger:lose aggro', 1, 'lose aggro [h:object|trigger] [c:lose aggro|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid growl|growl] (28.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid growl|growl] (28.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (49, 'trigger:lose aggro', 1, 'lose aggro [h:object|trigger] [c:lose aggro|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid growl|growl] (30.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:druid growl|growl] (30.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:druid growl|growl] (30.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (50, 'strategy:priest shadow aoe', 1, 'shadow aoe [h:object|strategy] [c:co ~shadow aoe|toggle combat][c:nc ~shadow aoe|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] do [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (11.000)', '', '', '', '', '', '', '', '', '', 0), (51, 'trigger:talents', 1, 'talents [h:object|trigger] [c:talents|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|talents] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|talents] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|talents] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|talents] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (52, 'strategy:food', 1, 'food [h:object|strategy] [c:co ~food|toggle combat][c:nc ~food|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|high mana] do [h:action|drink] (3.000)\r\nOn: [h:trigger|low health] do [h:action|food] (3.000)', '', '', '', '', '', '', '', '', '', 0), - (53, 'strategy:emote', 1, 'emote [h:object|strategy] [c:co ~emote|toggle combat][c:nc ~emote|toggle noncombat]\r\nThis strategy will make the bot react to or randomly send emotes.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|often] do [h:action|suggest what to do] (1.000)[h:action|suggest trade] (1.000)\r\nOn: [h:trigger|random] do [h:action|emote] (1.000)[h:action|mount anim] (1.000)\r\nOn: [h:trigger|receive emote] do [h:action|emote] (10.000)\r\nOn: [h:trigger|seldom] do [h:action|talk] (1.000)\r\nOn: [h:trigger|receive text emote] do [h:action|emote] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (53, 'strategy:emote', 1, 'emote [h:object|strategy] [c:co ~emote|toggle combat][c:nc ~emote|toggle noncombat]\r\nThis strategy will make the bot react to or randomly send emotes.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|often] do [h:action|suggest what to do] (1.000)[h:action|suggest what to do] (1.000)\r\nOn: [h:trigger|random] do [h:action|emote] (0.500)[h:action|mount anim] (1.000)\r\nOn: [h:trigger|receive emote] do [h:action|emote] (10.000)\r\nOn: [h:trigger|receive text emote] do [h:action|emote] (10.000)\r\nOn: [h:trigger|seldom] do [h:action|talk] (0.500)', '', '', '', '', '', '', '', '', '', 0), (54, 'trigger:war stomp', 1, 'war stomp [h:object|trigger] [c:war stomp|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|war stomp] (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nExecutes: [h:action|war stomp] (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (55, 'value:my threat', 1, 'my threat [h:object|value] [c:cdebug values my threat|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (56, 'strategy:rogue subtlety', 1, 'subtlety [h:object|strategy] [c:co ~subtlety|toggle combat][c:nc ~subtlety|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:rogue update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:rogue update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:rogue update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:rogue update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:rogue update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:rogue update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), (57, 'strategy:paladin barmor', 1, 'barmor [h:object|strategy] [c:co ~barmor|toggle combat][c:nc ~barmor|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin devotion aura|devotion aura] (12.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin devotion aura|devotion aura] (12.000)', '', '', '', '', '', '', '', '', '', 0), - (58, 'strategy:potions', 1, 'potions [h:object|strategy] [c:co ~potions|toggle combat][c:nc ~potions|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|critical health] do [h:action|healthstone] (90.000)\r\nOn: [h:trigger|low health] do [h:action|use bandage] (23.000)\r\nOn: [h:trigger|low mana] do [h:action|mana potion] (21.000)[h:action|dark rune] (20.000)\r\nReaction behavior:\r\nOn: [h:trigger|critical health] do [h:action|healthstone] (90.000)\r\nOn: [h:trigger|low health] do [h:action|use bandage] (23.000)\r\nOn: [h:trigger|low mana] do [h:action|mana potion] (21.000)[h:action|dark rune] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (58, 'strategy:potions', 1, 'potions [h:object|strategy] [c:co ~potions|toggle combat][c:nc ~potions|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|critical health] do [h:action|healthstone] (81.000)[h:action|whipper root tuber] (80.000)\r\nOn: [h:trigger|low health] do [h:action|use bandage] (70.000)\r\nOn: [h:trigger|low mana] do [h:action|dark rune] (20.000)\r\nReaction behavior:\r\nOn: [h:trigger|critical health] do [h:action|healthstone] (81.000)[h:action|whipper root tuber] (80.000)\r\nOn: [h:trigger|low health] do [h:action|use bandage] (70.000)\r\nOn: [h:trigger|low mana] do [h:action|dark rune] (20.000)', '', '', '', '', '', '', '', '', '', 0), (59, 'strategy:tell target', 1, 'tell target [h:object|strategy] [c:co ~tell target|toggle combat][c:nc ~tell target|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|target changed] do [h:action|tell target] (51.000)', '', '', '', '', '', '', '', '', '', 0), (60, 'value:snare target', 1, 'snare target [h:object|value] [c:cdebug values snare target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (61, 'strategy:rpg guild', 1, 'rpg guild [h:object|strategy] [c:co ~rpg guild|toggle combat][c:nc ~rpg guild|toggle noncombat]\r\nThis strategy makes bot move to guild master npcs.\r\nBots will automatically buy a petition if they are not already in a guild.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|rpg buy petition] do [h:action|rpg buy petition] (1.040)', '', '', '', '', '', '', '', '', '', 0), (62, 'action:guild promote', 1, 'guild promote [h:object|action] [c:do guild promote|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|guild promote] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|guild promote] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|guild promote] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|guild promote] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (63, 'trigger:hunter wyvern sting on snare target', 1, 'wyvern sting on snare target [h:object|trigger] [c:wyvern sting on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter wyvern sting on snare target|wyvern sting on snare target] (26.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), - (64, 'trigger:warlock item count', 1, 'item count [h:object|trigger] [c:item count|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), - (65, 'strategy:accept all quests', 1, 'accept all quests [h:object|strategy] [c:co ~accept all quests|toggle combat][c:nc ~accept all quests|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|accept quest] do [h:action|accept quest] (100.000)\r\nOn: [h:trigger|complete quest] do [h:action|talk to quest giver] (100.000)[h:action|accept all quests] (100.000)\r\nOn: [h:trigger|use game object] do [h:action|talk to quest giver] (100.000)[h:action|accept all quests] (100.000)\r\nOn: [h:trigger|gossip hello] do [h:action|talk to quest giver] (100.000)[h:action|accept all quests] (100.000)\r\nOn: [h:trigger|quest share] do [h:action|accept quest share] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (64, 'trigger:warlock item count', 1, 'item count [h:object|trigger] [c:item count|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock create healthstone|create healthstone] (10.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (65, 'strategy:accept all quests', 1, 'accept all quests [h:object|strategy] [c:co ~accept all quests|toggle combat][c:nc ~accept all quests|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|accept quest] do [h:action|accept quest] (100.000)\r\nOn: [h:trigger|quest share] do [h:action|accept quest share] (100.000)\r\nOn: [h:trigger|complete quest] do [h:action|accept all quests] (100.000)[h:action|talk to quest giver] (100.000)\r\nOn: [h:trigger|use game object] do [h:action|accept all quests] (100.000)[h:action|talk to quest giver] (100.000)\r\nOn: [h:trigger|gossip hello] do [h:action|accept all quests] (100.000)[h:action|talk to quest giver] (100.000)', '', '', '', '', '', '', '', '', '', 0), (66, 'value:should loot object', 1, 'should loot object [h:object|value] [c:cdebug values should loot object|current value]\r\nThis value checks if an lootable object might hold something the bot can loot.\r\nIt returns true if the object has unknown loot, gold or an item it is allowed to loot and can store in an empty space or a stack of similar items.\r\nUsed values:\r\n[h:value|stack space for item] ', '', '', '', '', '', '', '', '', '', 0), - (67, 'strategy:flee', 1, 'flee [h:object|strategy] [c:co ~flee|toggle combat][c:nc ~flee|toggle noncombat]\r\nThis strategy will make the bot flee when it is in danger.\r\nRelated strategies:\r\n[h:strategy|flee from adds] \r\nCombat behavior:\r\nOn: [h:trigger|critical health] do [h:action|flee] (70.000)\r\nOn: [h:trigger|outnumbered] do [h:action|flee] (99.000)\r\nOn: [h:trigger|panic] do [h:action|flee] (99.000)', '', '', '', '', '', '', '', '', '', 0), + (67, 'strategy:flee', 1, 'flee [h:object|strategy] [c:co ~flee|toggle combat][c:nc ~flee|toggle noncombat]\r\nThis strategy will make the bot flee when it is in danger.\r\nRelated strategies:\r\n[h:strategy|flee from adds] \r\nCombat behavior:\r\nOn: [h:trigger|outnumbered] do [h:action|flee] (99.000)\r\nOn: [h:trigger|panic] do [h:action|flee] (99.000)', '', '', '', '', '', '', '', '', '', 0), (68, 'trigger:mage spellsteal', 1, 'spellsteal [h:object|trigger] [c:spellsteal|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage spellsteal|spellsteal] (40.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage spellsteal|spellsteal] (40.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage spellsteal|spellsteal] (40.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage spellsteal|spellsteal] (40.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage spellsteal|spellsteal] (40.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage spellsteal|spellsteal] (40.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage spellsteal|spellsteal] (40.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage spellsteal|spellsteal] (40.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage spellsteal|spellsteal] (40.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (69, 'action:equip upgrades', 1, 'equip upgrades [h:object|action] [c:do equip upgrades|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|item push result] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|trade status] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|item push result] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|trade status] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|item push result] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|trade status] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (70, 'trigger:paladin turn undead', 1, 'turn undead [h:object|trigger] [c:turn undead|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), - (71, 'strategy:rpg player', 1, 'rpg player [h:object|strategy] [c:co ~rpg player|toggle combat][c:nc ~rpg player|toggle noncombat]\r\nThis strategy makes bot move to nearby players.\r\nBots will automatically trade other bots items they don\'t need but the other bot can use.\r\nBots will automatically start duels with other players 3 levels above and 10 levels below them.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|rpg duel] do [h:action|rpg duel] (1.010)\r\nOn: [h:trigger|rpg trade useful] do [h:action|rpg trade useful] (1.030)', '', '', '', '', '', '', '', '', '', 0), + (70, 'trigger:paladin turn undead', 1, 'turn undead [h:object|trigger] [c:turn undead|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nExecutes: [h:action:paladin turn undead|turn undead] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (71, 'strategy:rpg player', 1, 'rpg player [h:object|strategy] [c:co ~rpg player|toggle combat][c:nc ~rpg player|toggle noncombat]\r\nThis strategy makes bot move to nearby players.\r\nBots will automatically trade other bots items they don\'t need but the other bot can use.\r\nBots will automatically start duels with other players 3 levels above and 10 levels below them.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|rpg duel] do [h:action|rpg duel] (1.010)\r\nOn: [h:trigger|rpg enchant] do [h:action|rpg enchant] (1.029)\r\nOn: [h:trigger|rpg trade useful] do [h:action|rpg trade useful] (1.030)', '', '', '', '', '', '', '', '', '', 0), (72, 'action:warrior bladestorm', 1, 'bladestorm [h:object|action] [c:do bladestorm|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (21.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (21.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (21.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]', '', '', '', '', '', '', '', '', '', 0), - (73, 'action:priest shadowform', 1, 'shadowform [h:object|action] [c:do shadowform|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest shadowform|shadowform] with relevance (30.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:priest shadowform|shadowform] with relevance (30.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (73, 'action:priest shadowform', 1, 'shadowform [h:object|action] [c:do shadowform|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest shadowform|shadowform] with relevance (30.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest shadowform|shadowform] with relevance (30.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest shadowform|shadowform] with relevance (30.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (74, 'trigger:levelup', 1, 'levelup [h:object|trigger] [c:levelup|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|auto learn spell] (100.000)[h:action|auto talents] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|auto learn spell] (100.000)[h:action|auto talents] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|auto learn spell] (100.000)[h:action|auto talents] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (75, 'trigger:rogue rupture', 1, 'rupture [h:object|trigger] [c:rupture|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue rupture|rupture] (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nExecutes: [h:action:rogue rupture|rupture] (20.000) for [h:strategy:rogue combat pve|combat pve]\r\nExecutes: [h:action:rogue rupture|rupture] (20.000) for [h:strategy:rogue combat raid|combat raid]', '', '', '', '', '', '', '', '', '', 0), + (75, 'trigger:rogue rupture', 1, 'rupture [h:object|trigger] [c:rupture|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue rupture|rupture] (20.000) for [h:strategy:rogue combat raid|combat raid]\r\nExecutes: [h:action:rogue rupture|rupture] (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nExecutes: [h:action:rogue rupture|rupture] (20.000) for [h:strategy:rogue combat pve|combat pve]', '', '', '', '', '', '', '', '', '', 0), (76, 'strategy:flee from adds', 1, 'flee from adds [h:object|strategy] [c:co ~flee from adds|toggle combat][c:nc ~flee from adds|toggle noncombat]\r\nThis a position strategy that will make the bot try to avoid adds the prevent aggro.\r\nRelated strategies:\r\n[h:strategy|flee] [h:strategy|follow] [h:strategy|stay] [h:strategy|runaway] [h:strategy|guard] [h:strategy|free] \r\nCombat behavior:\r\nOn: [h:trigger|has nearest adds] do [h:action|runaway] (50.000)', '', '', '', '', '', '', '', '', '', 0), (77, 'action:lfg role check', 1, 'lfg role check [h:object|action] [c:do lfg role check|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|lfg role check] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|lfg role check] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|lfg role check] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (78, 'trigger:warrior bloodrage', 1, 'bloodrage [h:object|trigger] [c:bloodrage|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (78, 'trigger:warrior bloodrage', 1, 'bloodrage [h:object|trigger] [c:bloodrage|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior bloodrage|bloodrage] (20.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), (79, 'strategy:alterac', 1, 'alterac [h:object|strategy] [c:co ~alterac|toggle combat][c:nc ~alterac|toggle noncombat]\r\nThis strategy controls the behavior during an alertac valley battleground.\r\nRelated strategies:\r\n[h:strategy|battleground] [h:strategy|bg] \r\nCombat behavior:\r\nOn: [h:trigger|very often] do [h:action|bg banner] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger|very often] do [h:action|bg banner] (10.000)', '', '', '', '', '', '', '', '', '', 0), (80, 'strategy:dps assist', 1, 'dps assist [h:object|strategy] [c:co ~dps assist|toggle combat][c:nc ~dps assist|toggle noncombat]\r\nThis strategy will make the bot assist others when picking a target to attack.\r\nRelated strategies:\r\n[h:strategy|dps aoe] \r\nCombat behavior:\r\nOn: [h:trigger|not dps target active] do [h:action|dps assist] (60.000)', '', '', '', '', '', '', '', '', '', 0), (81, 'strategy:duel', 1, 'duel [h:object|strategy] [c:co ~duel|toggle combat][c:nc ~duel|toggle noncombat]\r\nThis strategy will allow bots to accept duels and attack their duel target.\r\nRelated strategies:\r\n[h:strategy|start duel] \r\nCombat behavior:\r\nOn: [h:trigger|duel requested] do [h:action|accept duel] (100.000)\r\nOn: [h:trigger|no attackers] do [h:action|attack duel opponent] (70.000)\r\nNon combat behavior:\r\nOn: [h:trigger|duel requested] do [h:action|accept duel] (100.000)\r\nOn: [h:trigger|no attackers] do [h:action|attack duel opponent] (70.000)', '', '', '', '', '', '', '', '', '', 0), - (82, 'trigger:warrior thunder clap on snare target', 1, 'thunder clap on snare target [h:object|trigger] [c:thunder clap on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), + (82, 'trigger:warrior thunder clap on snare target', 1, 'thunder clap on snare target [h:object|trigger] [c:thunder clap on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nExecutes: [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), (83, 'strategy:molten core', 1, 'molten core [h:object|strategy] [c:co ~molten core|toggle combat][c:nc ~molten core|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|start magmadar fight] do [h:action|enable magmadar fight strategy] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|fire protection potion ready] do [h:action|fire protection potion] (100.000)\r\nOn: [h:trigger|mc rune close] do [h:action|douse mc rune] (1.000)\r\nOn: [h:trigger|mc rune in sight] do [h:action|name] (1.000)', '', '', '', '', '', '', '', '', '', 0), (84, 'action:rpg mount anim', 1, 'rpg mount anim [h:object|action] [c:do rpg mount anim|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (1.000) for [h:strategy|emote]', '', '', '', '', '', '', '', '', '', 0), (85, 'value:next rpg action', 1, 'next rpg action [h:object|value] [c:cdebug values next rpg action|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (86, 'action:deathknight blood boil', 1, 'blood boil [h:object|action] [c:do blood boil|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (87, 'trigger:priest inner fire', 1, 'inner fire [h:object|trigger] [c:inner fire|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest inner fire|inner fire] (10.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (88, 'action:shaman windfury totem', 1, 'windfury totem [h:object|action] [c:do windfury totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totem air windfury|totem air windfury]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]', '', '', '', '', '', '', '', '', '', 0), + (86, 'action:deathknight blood boil', 1, 'blood boil [h:object|action] [c:do blood boil|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (87, 'trigger:priest inner fire', 1, 'inner fire [h:object|trigger] [c:inner fire|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest inner fire|inner fire] (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest inner fire|inner fire] (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest inner fire|inner fire] (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest inner fire|inner fire] (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest inner fire|inner fire] (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest inner fire|inner fire] (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest inner fire|inner fire] (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest inner fire|inner fire] (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest inner fire|inner fire] (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (88, 'action:shaman windfury totem', 1, 'windfury totem [h:object|action] [c:do windfury totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totem air windfury|totem air windfury]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]', '', '', '', '', '', '', '', '', '', 0), (89, 'trigger:pull', 1, 'pull [h:object|trigger] [c:pull|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|pull my target] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (90, 'trigger:player has flag', 1, 'player has flag [h:object|trigger] [c:player has flag|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid travel form|travel form] (92.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid travel form|travel form] (92.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:druid travel form|travel form] (92.000)[h:action:druid dash|dash] (91.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid travel form|travel form] (92.000)[h:action:druid dash|dash] (91.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid travel form|travel form] (92.000) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:druid travel form|travel form] (92.000) for [h:strategy:druid bear|bear]\r\nNon combat behavior:\r\nExecutes: [h:action:druid travel form|travel form] (92.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (90, 'trigger:player has flag', 1, 'player has flag [h:object|trigger] [c:player has flag|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid travel form|travel form] (20.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:druid travel form|travel form] (20.000)[h:action:druid dash|dash] (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:druid travel form|travel form] (20.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid travel form|travel form] (20.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:druid travel form|travel form] (20.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:druid travel form|travel form] (20.000)[h:action:druid dash|dash] (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:druid travel form|travel form] (20.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid travel form|travel form] (20.000) for [h:strategy:druid tank feral pvp|tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (91, 'strategy:dps aoe', 1, 'dps aoe [h:object|strategy] [c:co ~dps aoe|toggle combat][c:nc ~dps aoe|toggle noncombat]\r\nThis strategy will make the bot use aoe abilities when multiple targets are close to eachother.\r\nRelated strategies:\r\n[h:strategy|dps assist] \r\nCombat behavior:\r\nOn: [h:trigger|not dps aoe target active] do [h:action|dps aoe] (60.000)', '', '', '', '', '', '', '', '', '', 0), (92, 'action:quests', 1, 'quests [h:object|action] [c:do quests|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|quests] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|quests] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|quests] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|quests] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (93, 'strategy:collision', 1, 'collision [h:object|strategy] [c:co ~collision|toggle combat][c:nc ~collision|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|collision] do [h:action|move out of collision] (2.000)', '', '', '', '', '', '', '', '', '', 0), - (94, 'trigger:warlock fear', 1, 'fear [h:object|trigger] [c:fear|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), + (93, 'strategy:collision', 1, 'collision [h:object|strategy] [c:co ~collision|toggle combat][c:nc ~collision|toggle noncombat]\r\nThis strategy makes bots move away from other bots a little if they are touching.\r\nNon combat behavior:\r\nOn: [h:trigger|collision] do [h:action|move out of collision] (2.000)', '', '', '', '', '', '', '', '', '', 0), + (94, 'trigger:warlock fear', 1, 'fear [h:object|trigger] [c:fear|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), (95, 'value:generic in group', 1, 'group [h:object|value] [c:cdebug values group|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (96, 'strategy:arathi', 1, 'arathi [h:object|strategy] [c:co ~arathi|toggle combat][c:nc ~arathi|toggle noncombat]\r\nThis strategy controls the behavior during an arathi basin battleground.\r\nRelated strategies:\r\n[h:strategy|battleground] [h:strategy|bg] \r\nCombat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|very often] do [h:action|bg banner] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|very often] do [h:action|bg banner] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (96, 'strategy:arathi', 1, 'arathi [h:object|strategy] [c:co ~arathi|toggle combat][c:nc ~arathi|toggle noncombat]\r\nThis strategy controls the behavior during an arathi basin battleground.\r\nRelated strategies:\r\n[h:strategy|battleground] [h:strategy|bg] \r\nCombat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|very often] do [h:action|bg banner] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|very often] do [h:action|bg banner] (10.000)', '', '', '', '', '', '', '', '', '', 0), (97, 'strategy:priest heal', 1, 'heal [h:object|strategy] [c:co ~heal|toggle combat][c:nc ~heal|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest binding heal|binding heal] do [h:action:priest binding heal on party|binding heal on party] (52.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:priest renew|renew] (43.000)\r\nOn: [h:trigger:priest chastise on snare target|chastise on snare target] do [h:action:priest chastise on snare target|chastise on snare target] (40.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest flash heal|flash heal] (70.000)[h:action:priest remove shadowform|remove shadowform] (72.000)[h:action:priest power word: shield|power word: shield] (71.000)[h:action:priest pain suppression|pain suppression] (91.000)[h:action:priest desperate prayer|desperate prayer] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:priest heal on party|heal on party] (41.000)[h:action:priest renew on party|renew on party] (40.000)\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest elune\'s grace|elune\'s grace] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (60.000)[h:action:priest power word: shield|power word: shield] (61.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:priest inner focus|inner focus] (42.000)[h:action:priest consume magic|consume magic] (10.000)[h:action:priest shadowfiend|shadowfiend] (20.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:priest greater heal|greater heal] (25.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:priest symbol of hope|symbol of hope] (90.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:priest fade|fade] (55.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (60.000)[h:action:priest power word: shield on party|power word: shield on party] (61.000)[h:action:priest remove shadowform|remove shadowform] (62.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (50.000)[h:action:priest power word: shield on party|power word: shield on party] (51.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest greater heal on party|greater heal on party] (47.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:priest pain suppression|pain suppression] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)', '', '', '', '', '', '', '', '', '', 0), (98, 'strategy:lfg', 1, 'lfg [h:object|strategy] [c:co ~lfg|toggle combat][c:nc ~lfg|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|random] do [h:action|lfg join] (100.000)\r\nOn: [h:trigger|seldom] do [h:action|lfg leave] (100.000)\r\nOn: [h:trigger|unknown dungeon] do [h:action|give leader] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (99, 'strategy:dungeon', 1, 'dungeon [h:object|strategy] [c:co ~dungeon|toggle combat][c:nc ~dungeon|toggle noncombat]\r\nThis strategy will enable and disable various dungeon and raid specific strategies as the bot enters and leaves.\r\nRelated strategies:\r\n[h:strategy|onyxia\'s lair] [h:strategy|molten core] \r\nCombat behavior:\r\nOn: [h:trigger|enter molten core] do [h:action|enable molten core strategy] (100.000)\r\nOn: [h:trigger|enter onyxia\'s lair] do [h:action|enable onyxia\'s lair strategy] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|enter molten core] do [h:action|enable molten core strategy] (100.000)\r\nOn: [h:trigger|enter onyxia\'s lair] do [h:action|enable onyxia\'s lair strategy] (100.000)\r\nOn: [h:trigger|leave molten core] do [h:action|disable molten core strategy] (100.000)\r\nOn: [h:trigger|leave onyxia\'s lair] do [h:action|disable onyxia\'s lair strategy] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (99, 'strategy:dungeon', 1, 'dungeon [h:object|strategy] [c:co ~dungeon|toggle combat][c:nc ~dungeon|toggle noncombat]\r\nThis strategy will enable and disable various dungeon and raid specific strategies as the bot enters and leaves.\r\nRelated strategies:\r\n[h:strategy|onyxia\'s lair] [h:strategy|molten core] \r\nCombat behavior:\r\nOn: [h:trigger|enter karazhan] do [h:action|enable karazhan strategy] (100.000)\r\nOn: [h:trigger|enter molten core] do [h:action|enable molten core strategy] (100.000)\r\nOn: [h:trigger|enter onyxia\'s lair] do [h:action|enable onyxia\'s lair strategy] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|enter karazhan] do [h:action|enable karazhan strategy] (100.000)\r\nOn: [h:trigger|enter molten core] do [h:action|enable molten core strategy] (100.000)\r\nOn: [h:trigger|enter onyxia\'s lair] do [h:action|enable onyxia\'s lair strategy] (100.000)\r\nOn: [h:trigger|leave karazhan] do [h:action|disable karazhan strategy] (100.000)\r\nOn: [h:trigger|leave molten core] do [h:action|disable molten core strategy] (100.000)\r\nOn: [h:trigger|leave onyxia\'s lair] do [h:action|disable onyxia\'s lair strategy] (100.000)', '', '', '', '', '', '', '', '', '', 0), (100, 'trigger:wait for attack safe distance', 1, 'wait for attack safe distance [h:object|trigger] [c:wait for attack safe distance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|wait for attack keep safe distance] (60.000) for [h:strategy|wait for attack]', '', '', '', '', '', '', '', '', '', 0), (101, 'action:reach area trigger', 1, 'reach area trigger [h:object|action] [c:do reach area trigger|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|area trigger] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|area trigger] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|area trigger] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (102, 'strategy:battleground', 1, 'battleground [h:object|strategy] [c:co ~battleground|toggle combat][c:nc ~battleground|toggle noncombat]\r\nThis strategy gives bots basic behavior inside battle grounds like checking and moving to objectives and getting ready at the start gates.\r\nRelated strategies:\r\n[h:strategy|bg] [h:strategy|warsong] [h:strategy|arathi] [h:strategy|alterac] [h:strategy|eye] [h:strategy|isle] [h:strategy|arena] \r\nNon combat behavior:\r\nOn: [h:trigger|bg active] do [h:action|move to objective] (1.000)[h:action|check mount state] (2.000)\r\nOn: [h:trigger|bg waiting] do [h:action|move to start] (1.000)\r\nOn: [h:trigger|very often] do [h:action|check objective] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (103, 'trigger:hunter item count', 1, 'item count [h:object|trigger] [c:item count|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:hunter say::low ammo|say::low ammo] (10.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (104, 'action:druid demoralizing roar', 1, 'demoralizing roar [h:object|action] [c:do demoralizing roar|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (26.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (26.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (102, 'strategy:battleground', 1, 'battleground [h:object|strategy] [c:co ~battleground|toggle combat][c:nc ~battleground|toggle noncombat]\r\nThis strategy gives bots basic behavior inside battle grounds like checking and moving to objectives and getting ready at the start gates.\r\nRelated strategies:\r\n[h:strategy|bg] [h:strategy|warsong] [h:strategy|arathi] [h:strategy|alterac] [h:strategy|eye] [h:strategy|isle] [h:strategy|arena] \r\nNon combat behavior:\r\nOn: [h:trigger|bg active] do [h:action|move to objective] (1.000)[h:action|check mount state] (2.000)\r\nOn: [h:trigger|bg ended] do [h:action|action] (20.000)\r\nOn: [h:trigger|bg waiting] do [h:action|move to start] (1.000)\r\nOn: [h:trigger|very often] do [h:action|check objective] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (103, 'trigger:hunter item count', 1, 'item count [h:object|trigger] [c:item count|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:hunter say::no ammo|say::no ammo] (10.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nExecutes: [h:action:hunter say::no ammo|say::no ammo] (10.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nExecutes: [h:action:hunter say::no ammo|say::no ammo] (10.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nExecutes: [h:action:hunter say::no ammo|say::no ammo] (10.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nExecutes: [h:action:hunter say::no ammo|say::no ammo] (10.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nExecutes: [h:action:hunter say::no ammo|say::no ammo] (10.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nExecutes: [h:action:hunter say::no ammo|say::no ammo] (10.000) for [h:strategy:hunter survival pve|survival pve]\r\nExecutes: [h:action:hunter say::no ammo|say::no ammo] (10.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nExecutes: [h:action:hunter say::no ammo|say::no ammo] (10.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), + (104, 'action:druid demoralizing roar', 1, 'demoralizing roar [h:object|action] [c:do demoralizing roar|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (22.000) for [h:strategy:druid aoe tank feral pve|aoe tank feral pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (22.000) for [h:strategy:druid aoe tank feral pvp|aoe tank feral pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (22.000) for [h:strategy:druid aoe tank feral raid|aoe tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (105, 'strategy:rpg bg', 1, 'rpg bg [h:object|strategy] [c:co ~rpg bg|toggle combat][c:nc ~rpg bg|toggle noncombat]\r\nThis strategy makes bot move to battlemasters.\r\nBots will automatically queue for battlegrounds.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|rpg queue bg] do [h:action|rpg queue bg] (1.085)', '', '', '', '', '', '', '', '', '', 0), (106, 'action:auto learn spell', 1, 'auto learn spell [h:object|action] [c:do auto learn spell|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|levelup] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|levelup] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|levelup] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (107, 'strategy:pvp', 1, 'pvp [h:object|strategy] [c:co ~pvp|toggle combat][c:nc ~pvp|toggle noncombat]\r\nThis strategy detect nearby enemy players and makes the bot attack them.\r\nCombat behavior:\r\nOn: [h:trigger|enemy player near] do [h:action|attack enemy player] (90.000)', '', '', '', '', '', '', '', '', '', 0), - (108, 'action:priest divine spirit', 1, 'divine spirit [h:object|action] [c:do divine spirit|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest divine spirit|divine spirit] with relevance (14.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (109, 'strategy:quest', 1, 'quest [h:object|strategy] [c:co ~quest|toggle combat][c:nc ~quest|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|accept quest] do [h:action|accept quest] (100.000)\r\nOn: [h:trigger|complete quest] do [h:action|talk to quest giver] (100.000)\r\nOn: [h:trigger|use game object] do [h:action|talk to quest giver] (100.000)\r\nOn: [h:trigger|gossip hello] do [h:action|talk to quest giver] (100.000)\r\nOn: [h:trigger|quest share] do [h:action|accept quest share] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (108, 'action:priest divine spirit', 1, 'divine spirit [h:object|action] [c:do divine spirit|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest divine spirit|divine spirit] with relevance (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest divine spirit|divine spirit] with relevance (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest divine spirit|divine spirit] with relevance (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest divine spirit|divine spirit] with relevance (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest divine spirit|divine spirit] with relevance (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest divine spirit|divine spirit] with relevance (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest divine spirit|divine spirit] with relevance (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest divine spirit|divine spirit] with relevance (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest divine spirit|divine spirit] with relevance (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (109, 'strategy:quest', 1, 'quest [h:object|strategy] [c:co ~quest|toggle combat][c:nc ~quest|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|accept quest] do [h:action|accept quest] (100.000)\r\nOn: [h:trigger|quest share] do [h:action|accept quest share] (100.000)\r\nOn: [h:trigger|complete quest] do [h:action|talk to quest giver] (100.000)\r\nOn: [h:trigger|use game object] do [h:action|talk to quest giver] (100.000)\r\nOn: [h:trigger|gossip hello] do [h:action|talk to quest giver] (100.000)', '', '', '', '', '', '', '', '', '', 0), (110, 'trigger:warrior sudden death', 1, 'sudden death [h:object|trigger] [c:sudden death|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior execute|execute] (21.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:warrior execute|execute] (21.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior execute|execute] (21.000) for [h:strategy:warrior arms raid|arms raid]', '', '', '', '', '', '', '', '', '', 0), (111, 'trigger:t', 1, 't [h:object|trigger] [c:t|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|trade] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (112, 'trigger:mage counterspell', 1, 'counterspell [h:object|trigger] [c:counterspell|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:mage cc frost pvp|cc frost pvp]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc frost raid|cc frost raid]', '', '', '', '', '', '', '', '', '', 0), - (113, 'trigger:warlock corruption on attacker', 1, 'corruption on attacker [h:object|trigger] [c:corruption on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000) for [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000) for [h:strategy:warlock aoe demonology pvp|aoe demonology pvp]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000) for [h:strategy:warlock aoe demonology raid|aoe demonology raid]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000) for [h:strategy:warlock aoe destruction pve|aoe destruction pve]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000) for [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000) for [h:strategy:warlock aoe destruction raid|aoe destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (112, 'trigger:mage counterspell', 1, 'counterspell [h:object|trigger] [c:counterspell|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc frost raid|cc frost raid]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nExecutes: [h:action:mage counterspell|counterspell] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:mage cc frost pvp|cc frost pvp]', '', '', '', '', '', '', '', '', '', 0), + (113, 'trigger:warlock corruption on attacker', 1, 'corruption on attacker [h:object|trigger] [c:corruption on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000) for [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000) for [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000) for [h:strategy:warlock aoe demonology pvp|aoe demonology pvp]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000) for [h:strategy:warlock aoe demonology raid|aoe demonology raid]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000) for [h:strategy:warlock aoe destruction pve|aoe destruction pve]\r\nExecutes: [h:action:warlock corruption on attacker|corruption on attacker] (21.000) for [h:strategy:warlock aoe destruction raid|aoe destruction raid]', '', '', '', '', '', '', '', '', '', 0), (114, 'strategy:bg', 1, 'bg [h:object|strategy] [c:co ~bg|toggle combat][c:nc ~bg|toggle noncombat]\r\nThis strategy will make bots queue up for battle grounds remotely and join them when they get an invite.\r\nRelated strategies:\r\n[h:strategy|battleground] \r\nNon combat behavior:\r\nOn: [h:trigger|bg invite active] do [h:action|bg status check] (100.000)\r\nOn: [h:trigger|random] do [h:action|bg join] (100.000)', '', '', '', '', '', '', '', '', '', 0), (115, 'trigger:ready check', 1, 'ready check [h:object|trigger] [c:ready check|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|ready check] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (116, 'strategy:behind', 1, 'behind [h:object|strategy] [c:co ~behind|toggle combat][c:nc ~behind|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|trigger] do [h:action|set behind] (59.000)', '', '', '', '', '', '', '', '', '', 0), - (117, 'trigger:use game object', 1, 'use game object [h:object|trigger] [c:use game object|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|talk to quest giver] (100.000)[h:action|accept all quests] (100.000) for [h:strategy|accept all quests]\r\nExecutes: [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000) for [h:strategy|default]\r\nExecutes: [h:action|talk to quest giver] (100.000) for [h:strategy|quest]\r\nDead state behavior:\r\nExecutes: [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (118, 'strategy:eye', 1, 'eye [h:object|strategy] [c:co ~eye|toggle combat][c:nc ~eye|toggle noncombat]\r\nThis strategy controls the behavior during an eye of the storm basin battleground.\r\nRelated strategies:\r\n[h:strategy|battleground] [h:strategy|bg] \r\nCombat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|enemy flagcarrier near] do [h:action|attack enemy flag carrier] (80.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|player has flag] do [h:action|move to objective] (80.000)[h:action|rocket boots] (81.000)\r\nNon combat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|enemy flagcarrier near] do [h:action|attack enemy flag carrier] (80.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|player has flag] do [h:action|move to objective] (80.000)[h:action|rocket boots] (81.000)', '', '', '', '', '', '', '', '', '', 0), - (119, 'action:druid mark of the wild', 1, 'mark of the wild [h:object|action] [c:do mark of the wild|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (14.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (120, 'strategy:chat', 1, 'chat [h:object|strategy] [c:co ~chat|toggle combat][c:nc ~chat|toggle noncombat]\r\nThis strategy will make bots respond to various chat commands.\r\nCombat behavior:\r\nOn: [h:trigger|cast] do [h:action|cast] (100.000)\r\nOn: [h:trigger|ah bid] do [h:action|ah bid] (100.000)\r\nOn: [h:trigger|ah] do [h:action|ah] (100.000)\r\nOn: [h:trigger|cdebug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|leave] do [h:action|leave] (100.000)\r\nOn: [h:trigger|bg free] do [h:action|action] (100.000)\r\nOn: [h:trigger|repair] do [h:action|repair] (100.000)\r\nOn: [h:trigger|help] do [h:action|help] (100.000)\r\nOn: [h:trigger|go] do [h:action|go] (100.000)\r\nOn: [h:trigger|all] do [h:action|change strategy from all] (100.000)\r\nOn: [h:trigger|outfit] do [h:action|outfit] (100.000)\r\nOn: [h:trigger|de] do [h:action|de] (100.000)\r\nOn: [h:trigger|buff] do [h:action|buff] (100.000)\r\nOn: [h:trigger|bank] do [h:action|bank] (100.000)\r\nOn: [h:trigger|chat] do [h:action|chat] (100.000)\r\nOn: [h:trigger|guild remove] do [h:action|guild remove] (100.000)\r\nOn: [h:trigger|cheat] do [h:action|cheat] (100.000)\r\nOn: [h:trigger|reset values] do [h:action|reset values] (100.000)\r\nOn: [h:trigger|formation] do [h:action|set formation] (100.000)\r\nOn: [h:trigger|co] do [h:action|co] (100.000)\r\nOn: [h:trigger|react] do [h:action|react] (100.000)\r\nOn: [h:trigger|craft] do [h:action|craft] (100.000)\r\nOn: [h:trigger|cs] do [h:action|cs] (100.000)\r\nOn: [h:trigger|keep] do [h:action|keep] (100.000)\r\nOn: [h:trigger|debug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|destroy] do [h:action|destroy] (100.000)\r\nOn: [h:trigger|spell] do [h:action|spell] (100.000)\r\nOn: [h:trigger|drop] do [h:action|drop quest] (100.000)\r\nOn: [h:trigger|guild join] do [h:action|guild join] (100.000)\r\nOn: [h:trigger|emote] do [h:action|emote] (100.000)\r\nOn: [h:trigger|guild promote] do [h:action|guild promote] (100.000)\r\nOn: [h:trigger|craft] do [h:action|flag] (100.000)\r\nOn: [h:trigger|gb] do [h:action|guild bank] (100.000)\r\nOn: [h:trigger|reset strats] do [h:action|reset strats] (100.000)\r\nOn: [h:trigger|give leader] do [h:action|give leader] (100.000)\r\nOn: [h:trigger|range] do [h:action|range] (100.000)\r\nOn: [h:trigger|guild demote] do [h:action|guild demote] (100.000)\r\nOn: [h:trigger|sendmail] do [h:action|sendmail] (100.000)\r\nOn: [h:trigger|rti] do [h:action|rti] (100.000)\r\nOn: [h:trigger|guild invite] do [h:action|guild invite] (100.000)\r\nOn: [h:trigger|ra] do [h:action|ra] (100.000)\r\nOn: [h:trigger|guild leader] do [h:action|guild leader] (100.000)\r\nOn: [h:trigger|guild leave] do [h:action|guild leave] (100.000)\r\nOn: [h:trigger|hire] do [h:action|hire] (100.000)\r\nOn: [h:trigger|quests] do [h:action|quests] (100.000)\r\nOn: [h:trigger|home] do [h:action|home] (100.000)\r\nOn: [h:trigger|reputation] do [h:action|reputation] (100.000)\r\nOn: [h:trigger|invite] do [h:action|invite] (100.000)\r\nOn: [h:trigger|join] do [h:action|join] (100.000)\r\nOn: [h:trigger|reset ai] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|lfg] do [h:action|lfg] (100.000)\r\nOn: [h:trigger|ll] do [h:action|ll] (100.000)\r\nOn: [h:trigger|roll] do [h:action|roll] (100.000)\r\nOn: [h:trigger|log] do [h:action|log] (100.000)\r\nOn: [h:trigger|los] do [h:action|los] (100.000)\r\nOn: [h:trigger|mail] do [h:action|mail] (100.000)\r\nOn: [h:trigger|nc] do [h:action|nc] (100.000)\r\nOn: [h:trigger|position] do [h:action|position] (100.000)\r\nOn: [h:trigger|release] do [h:action|release] (100.000)\r\nOn: [h:trigger|rtsc] do [h:action|rtsc] (100.000)\r\nOn: [h:trigger|save mana] do [h:action|save mana] (100.000)\r\nOn: [h:trigger|share] do [h:action|share quest] (100.000)\r\nOn: [h:trigger|spells] do [h:action|spells] (100.000)\r\nOn: [h:trigger|ss] do [h:action|skip spells list] (100.000)\r\nOn: [h:trigger|stance] do [h:action|set Stance] (100.000)\r\nOn: [h:trigger|stats] do [h:action|stats] (100.000)\r\nOn: [h:trigger|summon] do [h:action|summon] (100.000)\r\nOn: [h:trigger|talents] do [h:action|talents] (100.000)\r\nOn: [h:trigger|taxi] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|teleport] do [h:action|teleport] (100.000)\r\nOn: [h:trigger|trainer] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|who] do [h:action|who] (100.000)\r\nOn: [h:trigger|wts] do [h:action|wts] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|cast] do [h:action|cast] (100.000)\r\nOn: [h:trigger|ah bid] do [h:action|ah bid] (100.000)\r\nOn: [h:trigger|ah] do [h:action|ah] (100.000)\r\nOn: [h:trigger|cdebug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|leave] do [h:action|leave] (100.000)\r\nOn: [h:trigger|bg free] do [h:action|action] (100.000)\r\nOn: [h:trigger|repair] do [h:action|repair] (100.000)\r\nOn: [h:trigger|help] do [h:action|help] (100.000)\r\nOn: [h:trigger|go] do [h:action|go] (100.000)\r\nOn: [h:trigger|all] do [h:action|change strategy from all] (100.000)\r\nOn: [h:trigger|outfit] do [h:action|outfit] (100.000)\r\nOn: [h:trigger|de] do [h:action|de] (100.000)\r\nOn: [h:trigger|buff] do [h:action|buff] (100.000)\r\nOn: [h:trigger|bank] do [h:action|bank] (100.000)\r\nOn: [h:trigger|chat] do [h:action|chat] (100.000)\r\nOn: [h:trigger|guild remove] do [h:action|guild remove] (100.000)\r\nOn: [h:trigger|cheat] do [h:action|cheat] (100.000)\r\nOn: [h:trigger|reset values] do [h:action|reset values] (100.000)\r\nOn: [h:trigger|formation] do [h:action|set formation] (100.000)\r\nOn: [h:trigger|co] do [h:action|co] (100.000)\r\nOn: [h:trigger|react] do [h:action|react] (100.000)\r\nOn: [h:trigger|craft] do [h:action|craft] (100.000)\r\nOn: [h:trigger|cs] do [h:action|cs] (100.000)\r\nOn: [h:trigger|keep] do [h:action|keep] (100.000)\r\nOn: [h:trigger|debug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|destroy] do [h:action|destroy] (100.000)\r\nOn: [h:trigger|spell] do [h:action|spell] (100.000)\r\nOn: [h:trigger|drop] do [h:action|drop quest] (100.000)\r\nOn: [h:trigger|guild join] do [h:action|guild join] (100.000)\r\nOn: [h:trigger|emote] do [h:action|emote] (100.000)\r\nOn: [h:trigger|guild promote] do [h:action|guild promote] (100.000)\r\nOn: [h:trigger|craft] do [h:action|flag] (100.000)\r\nOn: [h:trigger|gb] do [h:action|guild bank] (100.000)\r\nOn: [h:trigger|reset strats] do [h:action|reset strats] (100.000)\r\nOn: [h:trigger|give leader] do [h:action|give leader] (100.000)\r\nOn: [h:trigger|range] do [h:action|range] (100.000)\r\nOn: [h:trigger|guild demote] do [h:action|guild demote] (100.000)\r\nOn: [h:trigger|sendmail] do [h:action|sendmail] (100.000)\r\nOn: [h:trigger|rti] do [h:action|rti] (100.000)\r\nOn: [h:trigger|guild invite] do [h:action|guild invite] (100.000)\r\nOn: [h:trigger|ra] do [h:action|ra] (100.000)\r\nOn: [h:trigger|guild leader] do [h:action|guild leader] (100.000)\r\nOn: [h:trigger|guild leave] do [h:action|guild leave] (100.000)\r\nOn: [h:trigger|hire] do [h:action|hire] (100.000)\r\nOn: [h:trigger|quests] do [h:action|quests] (100.000)\r\nOn: [h:trigger|home] do [h:action|home] (100.000)\r\nOn: [h:trigger|reputation] do [h:action|reputation] (100.000)\r\nOn: [h:trigger|invite] do [h:action|invite] (100.000)\r\nOn: [h:trigger|join] do [h:action|join] (100.000)\r\nOn: [h:trigger|reset ai] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|lfg] do [h:action|lfg] (100.000)\r\nOn: [h:trigger|ll] do [h:action|ll] (100.000)\r\nOn: [h:trigger|roll] do [h:action|roll] (100.000)\r\nOn: [h:trigger|log] do [h:action|log] (100.000)\r\nOn: [h:trigger|los] do [h:action|los] (100.000)\r\nOn: [h:trigger|mail] do [h:action|mail] (100.000)\r\nOn: [h:trigger|nc] do [h:action|nc] (100.000)\r\nOn: [h:trigger|position] do [h:action|position] (100.000)\r\nOn: [h:trigger|release] do [h:action|release] (100.000)\r\nOn: [h:trigger|rtsc] do [h:action|rtsc] (100.000)\r\nOn: [h:trigger|save mana] do [h:action|save mana] (100.000)\r\nOn: [h:trigger|share] do [h:action|share quest] (100.000)\r\nOn: [h:trigger|spells] do [h:action|spells] (100.000)\r\nOn: [h:trigger|ss] do [h:action|skip spells list] (100.000)\r\nOn: [h:trigger|stance] do [h:action|set Stance] (100.000)\r\nOn: [h:trigger|stats] do [h:action|stats] (100.000)\r\nOn: [h:trigger|summon] do [h:action|summon] (100.000)\r\nOn: [h:trigger|talents] do [h:action|talents] (100.000)\r\nOn: [h:trigger|taxi] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|teleport] do [h:action|teleport] (100.000)\r\nOn: [h:trigger|trainer] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|who] do [h:action|who] (100.000)\r\nOn: [h:trigger|wts] do [h:action|wts] (100.000)\r\nDead state behavior:\r\nOn: [h:trigger|cast] do [h:action|cast] (100.000)\r\nOn: [h:trigger|ah bid] do [h:action|ah bid] (100.000)\r\nOn: [h:trigger|ah] do [h:action|ah] (100.000)\r\nOn: [h:trigger|cdebug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|leave] do [h:action|leave] (100.000)\r\nOn: [h:trigger|bg free] do [h:action|action] (100.000)\r\nOn: [h:trigger|repair] do [h:action|repair] (100.000)\r\nOn: [h:trigger|help] do [h:action|help] (100.000)\r\nOn: [h:trigger|go] do [h:action|go] (100.000)\r\nOn: [h:trigger|all] do [h:action|change strategy from all] (100.000)\r\nOn: [h:trigger|outfit] do [h:action|outfit] (100.000)\r\nOn: [h:trigger|de] do [h:action|de] (100.000)\r\nOn: [h:trigger|buff] do [h:action|buff] (100.000)\r\nOn: [h:trigger|bank] do [h:action|bank] (100.000)\r\nOn: [h:trigger|chat] do [h:action|chat] (100.000)\r\nOn: [h:trigger|guild remove] do [h:action|guild remove] (100.000)\r\nOn: [h:trigger|cheat] do [h:action|cheat] (100.000)\r\nOn: [h:trigger|reset values] do [h:action|reset values] (100.000)\r\nOn: [h:trigger|formation] do [h:action|set formation] (100.000)\r\nOn: [h:trigger|co] do [h:action|co] (100.000)\r\nOn: [h:trigger|react] do [h:action|react] (100.000)\r\nOn: [h:trigger|craft] do [h:action|craft] (100.000)\r\nOn: [h:trigger|cs] do [h:action|cs] (100.000)\r\nOn: [h:trigger|keep] do [h:action|keep] (100.000)\r\nOn: [h:trigger|debug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|destroy] do [h:action|destroy] (100.000)\r\nOn: [h:trigger|spell] do [h:action|spell] (100.000)\r\nOn: [h:trigger|drop] do [h:action|drop quest] (100.000)\r\nOn: [h:trigger|guild join] do [h:action|guild join] (100.000)\r\nOn: [h:trigger|emote] do [h:action|emote] (100.000)\r\nOn: [h:trigger|guild promote] do [h:action|guild promote] (100.000)\r\nOn: [h:trigger|craft] do [h:action|flag] (100.000)\r\nOn: [h:trigger|gb] do [h:action|guild bank] (100.000)\r\nOn: [h:trigger|reset strats] do [h:action|reset strats] (100.000)\r\nOn: [h:trigger|give leader] do [h:action|give leader] (100.000)\r\nOn: [h:trigger|range] do [h:action|range] (100.000)\r\nOn: [h:trigger|guild demote] do [h:action|guild demote] (100.000)\r\nOn: [h:trigger|sendmail] do [h:action|sendmail] (100.000)\r\nOn: [h:trigger|rti] do [h:action|rti] (100.000)\r\nOn: [h:trigger|guild invite] do [h:action|guild invite] (100.000)\r\nOn: [h:trigger|ra] do [h:action|ra] (100.000)\r\nOn: [h:trigger|guild leader] do [h:action|guild leader] (100.000)\r\nOn: [h:trigger|guild leave] do [h:action|guild leave] (100.000)\r\nOn: [h:trigger|hire] do [h:action|hire] (100.000)\r\nOn: [h:trigger|quests] do [h:action|quests] (100.000)\r\nOn: [h:trigger|home] do [h:action|home] (100.000)\r\nOn: [h:trigger|reputation] do [h:action|reputation] (100.000)\r\nOn: [h:trigger|invite] do [h:action|invite] (100.000)\r\nOn: [h:trigger|join] do [h:action|join] (100.000)\r\nOn: [h:trigger|reset ai] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|lfg] do [h:action|lfg] (100.000)\r\nOn: [h:trigger|ll] do [h:action|ll] (100.000)\r\nOn: [h:trigger|roll] do [h:action|roll] (100.000)\r\nOn: [h:trigger|log] do [h:action|log] (100.000)\r\nOn: [h:trigger|los] do [h:action|los] (100.000)\r\nOn: [h:trigger|mail] do [h:action|mail] (100.000)\r\nOn: [h:trigger|nc] do [h:action|nc] (100.000)\r\nOn: [h:trigger|position] do [h:action|position] (100.000)\r\nOn: [h:trigger|release] do [h:action|release] (100.000)\r\nOn: [h:trigger|rtsc] do [h:action|rtsc] (100.000)\r\nOn: [h:trigger|save mana] do [h:action|save mana] (100.000)\r\nOn: [h:trigger|share] do [h:action|share quest] (100.000)\r\nOn: [h:trigger|spells] do [h:action|spells] (100.000)\r\nOn: [h:trigger|ss] do [h:action|skip spells list] (100.000)\r\nOn: [h:trigger|stance] do [h:action|set Stance] (100.000)\r\nOn: [h:trigger|stats] do [h:action|stats] (100.000)\r\nOn: [h:trigger|summon] do [h:action|summon] (100.000)\r\nOn: [h:trigger|talents] do [h:action|talents] (100.000)\r\nOn: [h:trigger|taxi] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|teleport] do [h:action|teleport] (100.000)\r\nOn: [h:trigger|trainer] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|who] do [h:action|who] (100.000)\r\nOn: [h:trigger|wts] do [h:action|wts] (100.000)\r\nReaction behavior:\r\nOn: [h:trigger|craft] do [h:action|craft] (100.000)\r\nOn: [h:trigger|accept] do [h:action|accept quest] (100.000)\r\nOn: [h:trigger|attack] do [h:action|attack my target] (100.000)\r\nOn: [h:trigger|c] do [h:action|c] (100.000)\r\nOn: [h:trigger|ah bid] do [h:action|ah bid] (100.000)\r\nOn: [h:trigger|pull] do [h:action|pull my target] (100.000)\r\nOn: [h:trigger|add all loot] do [h:action|add all loot] (100.000)[h:action|loot] (100.000)\r\nOn: [h:trigger|ah] do [h:action|ah] (100.000)\r\nOn: [h:trigger|help] do [h:action|help] (100.000)\r\nOn: [h:trigger|go] do [h:action|go] (100.000)\r\nOn: [h:trigger|all] do [h:action|change strategy from all] (100.000)\r\nOn: [h:trigger|bank] do [h:action|bank] (100.000)\r\nOn: [h:trigger|b] do [h:action|buy] (100.000)\r\nOn: [h:trigger|bb] do [h:action|buyback] (100.000)\r\nOn: [h:trigger|max dps] do [h:action|max dps chat shortcut] (100.000)\r\nOn: [h:trigger|leave] do [h:action|leave] (100.000)\r\nOn: [h:trigger|bg free] do [h:action|action] (100.000)\r\nOn: [h:trigger|outfit] do [h:action|outfit] (100.000)\r\nOn: [h:trigger|de] do [h:action|de] (100.000)\r\nOn: [h:trigger|buff] do [h:action|buff] (100.000)\r\nOn: [h:trigger|c] do [h:action|c] (100.000)\r\nOn: [h:trigger|cast] do [h:action|cast] (100.000)\r\nOn: [h:trigger|cdebug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|chat] do [h:action|chat] (100.000)\r\nOn: [h:trigger|guild remove] do [h:action|guild remove] (100.000)\r\nOn: [h:trigger|cheat] do [h:action|cheat] (100.000)\r\nOn: [h:trigger|nt] do [h:action|trade] (100.000)\r\nOn: [h:trigger|formation] do [h:action|set formation] (100.000)\r\nOn: [h:trigger|reset values] do [h:action|reset values] (100.000)\r\nOn: [h:trigger|co] do [h:action|co] (100.000)\r\nOn: [h:trigger|grind] do [h:action|grind chat shortcut] (100.000)\r\nOn: [h:trigger|cs] do [h:action|cs] (100.000)\r\nOn: [h:trigger|keep] do [h:action|keep] (100.000)\r\nOn: [h:trigger|free] do [h:action|free chat shortcut] (100.000)\r\nOn: [h:trigger|debug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|destroy] do [h:action|destroy] (100.000)\r\nOn: [h:trigger|drop] do [h:action|drop quest] (100.000)\r\nOn: [h:trigger|log] do [h:action|log] (100.000)\r\nOn: [h:trigger|e] do [h:action|equip] (100.000)\r\nOn: [h:trigger|guild join] do [h:action|guild join] (100.000)\r\nOn: [h:trigger|emote] do [h:action|emote] (100.000)\r\nOn: [h:trigger|guild promote] do [h:action|guild promote] (100.000)\r\nOn: [h:trigger|craft] do [h:action|flag] (100.000)\r\nOn: [h:trigger|hire] do [h:action|hire] (100.000)\r\nOn: [h:trigger|flee] do [h:action|flee chat shortcut] (100.000)\r\nOn: [h:trigger|focus heal] do [h:action|focus heal target] (100.000)\r\nOn: [h:trigger|follow] do [h:action|follow chat shortcut] (100.000)\r\nOn: [h:trigger|gb] do [h:action|guild bank] (100.000)\r\nOn: [h:trigger|give leader] do [h:action|give leader] (100.000)\r\nOn: [h:trigger|ll] do [h:action|ll] (100.000)\r\nOn: [h:trigger|guard] do [h:action|guard chat shortcut] (100.000)\r\nOn: [h:trigger|guild demote] do [h:action|guild demote] (100.000)\r\nOn: [h:trigger|guild invite] do [h:action|guild invite] (100.000)\r\nOn: [h:trigger|guild leader] do [h:action|guild leader] (100.000)\r\nOn: [h:trigger|q] do [h:action|query item usage] (100.000)[h:action|query quest] (100.000)\r\nOn: [h:trigger|guild leave] do [h:action|guild leave] (100.000)\r\nOn: [h:trigger|home] do [h:action|home] (100.000)\r\nOn: [h:trigger|quests] do [h:action|quests] (100.000)\r\nOn: [h:trigger|invite] do [h:action|invite] (100.000)\r\nOn: [h:trigger|reputation] do [h:action|reputation] (100.000)\r\nOn: [h:trigger|c] do [h:action|c] (100.000)\r\nOn: [h:trigger|join] do [h:action|join] (100.000)\r\nOn: [h:trigger|possible attack targets] do [h:action|tell possible attack targets] (100.000)\r\nOn: [h:trigger|lfg] do [h:action|lfg] (100.000)\r\nOn: [h:trigger|los] do [h:action|los] (100.000)\r\nOn: [h:trigger|mail] do [h:action|mail] (100.000)\r\nOn: [h:trigger|t] do [h:action|trade] (100.000)\r\nOn: [h:trigger|nc] do [h:action|nc] (100.000)\r\nOn: [h:trigger|position] do [h:action|position] (100.000)\r\nOn: [h:trigger|pull rti] do [h:action|pull rti target] (100.000)\r\nOn: [h:trigger|r] do [h:action|reward] (100.000)\r\nOn: [h:trigger|ra] do [h:action|ra] (100.000)\r\nOn: [h:trigger|range] do [h:action|range] (100.000)\r\nOn: [h:trigger|react] do [h:action|react] (100.000)\r\nOn: [h:trigger|ready check] do [h:action|ready check] (100.000)\r\nOn: [h:trigger|release] do [h:action|release] (100.000)\r\nOn: [h:trigger|reputation] do [h:action|reputation] (100.000)\r\nOn: [h:trigger|repair] do [h:action|repair] (100.000)\r\nOn: [h:trigger|reset ai] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|reset strats] do [h:action|reset strats] (100.000)\r\nOn: [h:trigger|revive] do [h:action|spirit healer] (100.000)\r\nOn: [h:trigger|roll] do [h:action|roll] (100.000)\r\nOn: [h:trigger|rti] do [h:action|rti] (100.000)\r\nOn: [h:trigger|rtsc] do [h:action|rtsc] (100.000)\r\nOn: [h:trigger|runaway] do [h:action|runaway chat shortcut] (100.000)\r\nOn: [h:trigger|s] do [h:action|sell] (100.000)\r\nOn: [h:trigger|save mana] do [h:action|save mana] (100.000)\r\nOn: [h:trigger|self res] do [h:action|self resurrect] (100.000)\r\nOn: [h:trigger|sendmail] do [h:action|sendmail] (100.000)\r\nOn: [h:trigger|share] do [h:action|share quest] (100.000)\r\nOn: [h:trigger|spell] do [h:action|spell] (100.000)\r\nOn: [h:trigger|spells] do [h:action|spells] (100.000)\r\nOn: [h:trigger|ss] do [h:action|skip spells list] (100.000)\r\nOn: [h:trigger|stance] do [h:action|set Stance] (100.000)\r\nOn: [h:trigger|stats] do [h:action|stats] (100.000)\r\nOn: [h:trigger|stay] do [h:action|stay chat shortcut] (100.000)\r\nOn: [h:trigger|summon] do [h:action|summon] (100.000)\r\nOn: [h:trigger|talents] do [h:action|talents] (100.000)\r\nOn: [h:trigger|talk] do [h:action|gossip hello] (100.000)[h:action|talk to quest giver] (100.000)\r\nOn: [h:trigger|tank attack] do [h:action|tank attack chat shortcut] (100.000)\r\nOn: [h:trigger|taxi] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|teleport] do [h:action|teleport] (100.000)\r\nOn: [h:trigger|trainer] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|use] do [h:action|use] (100.000)\r\nOn: [h:trigger|ue] do [h:action|unequip] (100.000)\r\nOn: [h:trigger|wait for attack time] do [h:action|wait for attack time] (100.000)\r\nOn: [h:trigger|warning] do [h:action|runaway chat shortcut] (100.000)\r\nOn: [h:trigger|who] do [h:action|who] (100.000)\r\nOn: [h:trigger|wts] do [h:action|wts] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (121, 'strategy:rogue boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue adrenaline rush|adrenaline rush] do [h:action:rogue adrenaline rush|adrenaline rush] (22.000)\r\nOn: [h:trigger:rogue blade flurry|blade flurry] do [h:action:rogue blade flurry|blade flurry] (19.000)', '', '', '', '', '', '', '', '', '', 0), + (116, 'strategy:behind', 1, 'behind [h:object|strategy] [c:co ~behind|toggle combat][c:nc ~behind|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|trigger] do [h:action|set behind] (35.000)', '', '', '', '', '', '', '', '', '', 0), + (117, 'trigger:use game object', 1, 'use game object [h:object|trigger] [c:use game object|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|accept all quests] (100.000)[h:action|talk to quest giver] (100.000) for [h:strategy|accept all quests]\r\nExecutes: [h:action|talk to quest giver] (100.000) for [h:strategy|quest]\r\nExecutes: [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (118, 'strategy:eye', 1, 'eye [h:object|strategy] [c:co ~eye|toggle combat][c:nc ~eye|toggle noncombat]\r\nThis strategy controls the behavior during an eye of the storm basin battleground.\r\nRelated strategies:\r\n[h:strategy|battleground] [h:strategy|bg] \r\nCombat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|enemy flagcarrier near] do [h:action|attack enemy flag carrier] (80.000)\r\nOn: [h:trigger|player has flag] do [h:action|move to objective] (80.000)[h:action|rocket boots] (81.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|enemy flagcarrier near] do [h:action|attack enemy flag carrier] (80.000)\r\nOn: [h:trigger|player has flag] do [h:action|move to objective] (80.000)[h:action|rocket boots] (81.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)', '', '', '', '', '', '', '', '', '', 0), + (119, 'action:druid mark of the wild', 1, 'mark of the wild [h:object|action] [c:do mark of the wild|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nTriggers from: [h:trigger:druid mark of the wild|mark of the wild] with relevance (11.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (120, 'strategy:chat', 1, 'chat [h:object|strategy] [c:co ~chat|toggle combat][c:nc ~chat|toggle noncombat]\r\nThis strategy will make bots respond to various chat commands.\r\nCombat behavior:\r\nOn: [h:trigger|jump] do [h:action|jump] (100.000)\r\nOn: [h:trigger|ah] do [h:action|ah] (100.000)\r\nOn: [h:trigger|outfit] do [h:action|outfit] (100.000)\r\nOn: [h:trigger|cast] do [h:action|cast] (100.000)\r\nOn: [h:trigger|invite] do [h:action|invite] (100.000)\r\nOn: [h:trigger|who] do [h:action|who] (100.000)\r\nOn: [h:trigger|give leader] do [h:action|give leader] (100.000)\r\nOn: [h:trigger|buff] do [h:action|buff] (100.000)\r\nOn: [h:trigger|hire] do [h:action|hire] (100.000)\r\nOn: [h:trigger|cs] do [h:action|cs] (100.000)\r\nOn: [h:trigger|ah bid] do [h:action|ah bid] (100.000)\r\nOn: [h:trigger|cdebug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|reset ai] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|nc] do [h:action|nc] (100.000)\r\nOn: [h:trigger|taxi] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|guild remove] do [h:action|guild remove] (100.000)\r\nOn: [h:trigger|all] do [h:action|change strategy from all] (100.000)\r\nOn: [h:trigger|range] do [h:action|range] (100.000)\r\nOn: [h:trigger|bg free] do [h:action|action] (100.000)\r\nOn: [h:trigger|repair] do [h:action|repair] (100.000)\r\nOn: [h:trigger|bank] do [h:action|bank] (100.000)\r\nOn: [h:trigger|rti] do [h:action|rti] (100.000)\r\nOn: [h:trigger|drop] do [h:action|drop quest] (100.000)\r\nOn: [h:trigger|chat] do [h:action|chat] (100.000)\r\nOn: [h:trigger|list ai] do [h:action|list ai] (100.000)\r\nOn: [h:trigger|cheat] do [h:action|cheat] (100.000)\r\nOn: [h:trigger|co] do [h:action|co] (100.000)\r\nOn: [h:trigger|craft] do [h:action|craft] (100.000)\r\nOn: [h:trigger|de] do [h:action|de] (100.000)\r\nOn: [h:trigger|debug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|destroy] do [h:action|destroy] (100.000)\r\nOn: [h:trigger|emote] do [h:action|emote] (100.000)\r\nOn: [h:trigger|craft] do [h:action|flag] (100.000)\r\nOn: [h:trigger|quest reward] do [h:action|quest reward] (100.000)\r\nOn: [h:trigger|stats] do [h:action|stats] (100.000)\r\nOn: [h:trigger|formation] do [h:action|set formation] (100.000)\r\nOn: [h:trigger|gb] do [h:action|guild bank] (100.000)\r\nOn: [h:trigger|quests] do [h:action|quests] (100.000)\r\nOn: [h:trigger|go] do [h:action|go] (100.000)\r\nOn: [h:trigger|roll] do [h:action|roll] (100.000)\r\nOn: [h:trigger|join] do [h:action|join] (100.000)\r\nOn: [h:trigger|guild demote] do [h:action|guild demote] (100.000)\r\nOn: [h:trigger|ra] do [h:action|ra] (100.000)\r\nOn: [h:trigger|talents] do [h:action|talents] (100.000)\r\nOn: [h:trigger|guild invite] do [h:action|guild invite] (100.000)\r\nOn: [h:trigger|guild join] do [h:action|guild join] (100.000)\r\nOn: [h:trigger|move style] do [h:action|move style] (100.000)\r\nOn: [h:trigger|guild leader] do [h:action|guild leader] (100.000)\r\nOn: [h:trigger|guild leave] do [h:action|guild leave] (100.000)\r\nOn: [h:trigger|guild promote] do [h:action|guild promote] (100.000)\r\nOn: [h:trigger|mail] do [h:action|mail] (100.000)\r\nOn: [h:trigger|help] do [h:action|help] (100.000)\r\nOn: [h:trigger|home] do [h:action|home] (100.000)\r\nOn: [h:trigger|keep] do [h:action|keep] (100.000)\r\nOn: [h:trigger|save ai] do [h:action|save ai] (100.000)\r\nOn: [h:trigger|leave] do [h:action|leave] (100.000)\r\nOn: [h:trigger|lfg] do [h:action|lfg] (100.000)\r\nOn: [h:trigger|ll] do [h:action|ll] (100.000)\r\nOn: [h:trigger|load ai] do [h:action|load ai] (100.000)\r\nOn: [h:trigger|log] do [h:action|log] (100.000)\r\nOn: [h:trigger|reputation] do [h:action|reputation] (100.000)\r\nOn: [h:trigger|los] do [h:action|los] (100.000)\r\nOn: [h:trigger|position] do [h:action|position] (100.000)\r\nOn: [h:trigger|react] do [h:action|react] (100.000)\r\nOn: [h:trigger|ss] do [h:action|skip spells list] (100.000)\r\nOn: [h:trigger|release] do [h:action|release] (100.000)\r\nOn: [h:trigger|reset strats] do [h:action|reset strats] (100.000)\r\nOn: [h:trigger|reset values] do [h:action|reset values] (100.000)\r\nOn: [h:trigger|rtsc] do [h:action|rtsc] (100.000)\r\nOn: [h:trigger|save mana] do [h:action|save mana] (100.000)\r\nOn: [h:trigger|sendmail] do [h:action|sendmail] (100.000)\r\nOn: [h:trigger|spells] do [h:action|spells] (100.000)\r\nOn: [h:trigger|share] do [h:action|share quest] (100.000)\r\nOn: [h:trigger|spell] do [h:action|spell] (100.000)\r\nOn: [h:trigger|stance] do [h:action|set Stance] (100.000)\r\nOn: [h:trigger|summon] do [h:action|summon] (100.000)\r\nOn: [h:trigger|teleport] do [h:action|teleport] (100.000)\r\nOn: [h:trigger|trainer] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|wts] do [h:action|wts] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|jump] do [h:action|jump] (100.000)\r\nOn: [h:trigger|ah] do [h:action|ah] (100.000)\r\nOn: [h:trigger|outfit] do [h:action|outfit] (100.000)\r\nOn: [h:trigger|cast] do [h:action|cast] (100.000)\r\nOn: [h:trigger|invite] do [h:action|invite] (100.000)\r\nOn: [h:trigger|who] do [h:action|who] (100.000)\r\nOn: [h:trigger|give leader] do [h:action|give leader] (100.000)\r\nOn: [h:trigger|buff] do [h:action|buff] (100.000)\r\nOn: [h:trigger|hire] do [h:action|hire] (100.000)\r\nOn: [h:trigger|cs] do [h:action|cs] (100.000)\r\nOn: [h:trigger|ah bid] do [h:action|ah bid] (100.000)\r\nOn: [h:trigger|cdebug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|reset ai] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|nc] do [h:action|nc] (100.000)\r\nOn: [h:trigger|taxi] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|guild remove] do [h:action|guild remove] (100.000)\r\nOn: [h:trigger|all] do [h:action|change strategy from all] (100.000)\r\nOn: [h:trigger|range] do [h:action|range] (100.000)\r\nOn: [h:trigger|bg free] do [h:action|action] (100.000)\r\nOn: [h:trigger|repair] do [h:action|repair] (100.000)\r\nOn: [h:trigger|bank] do [h:action|bank] (100.000)\r\nOn: [h:trigger|rti] do [h:action|rti] (100.000)\r\nOn: [h:trigger|drop] do [h:action|drop quest] (100.000)\r\nOn: [h:trigger|chat] do [h:action|chat] (100.000)\r\nOn: [h:trigger|list ai] do [h:action|list ai] (100.000)\r\nOn: [h:trigger|cheat] do [h:action|cheat] (100.000)\r\nOn: [h:trigger|co] do [h:action|co] (100.000)\r\nOn: [h:trigger|craft] do [h:action|craft] (100.000)\r\nOn: [h:trigger|de] do [h:action|de] (100.000)\r\nOn: [h:trigger|debug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|destroy] do [h:action|destroy] (100.000)\r\nOn: [h:trigger|emote] do [h:action|emote] (100.000)\r\nOn: [h:trigger|craft] do [h:action|flag] (100.000)\r\nOn: [h:trigger|quest reward] do [h:action|quest reward] (100.000)\r\nOn: [h:trigger|stats] do [h:action|stats] (100.000)\r\nOn: [h:trigger|formation] do [h:action|set formation] (100.000)\r\nOn: [h:trigger|gb] do [h:action|guild bank] (100.000)\r\nOn: [h:trigger|quests] do [h:action|quests] (100.000)\r\nOn: [h:trigger|go] do [h:action|go] (100.000)\r\nOn: [h:trigger|roll] do [h:action|roll] (100.000)\r\nOn: [h:trigger|join] do [h:action|join] (100.000)\r\nOn: [h:trigger|guild demote] do [h:action|guild demote] (100.000)\r\nOn: [h:trigger|ra] do [h:action|ra] (100.000)\r\nOn: [h:trigger|talents] do [h:action|talents] (100.000)\r\nOn: [h:trigger|guild invite] do [h:action|guild invite] (100.000)\r\nOn: [h:trigger|guild join] do [h:action|guild join] (100.000)\r\nOn: [h:trigger|move style] do [h:action|move style] (100.000)\r\nOn: [h:trigger|guild leader] do [h:action|guild leader] (100.000)\r\nOn: [h:trigger|guild leave] do [h:action|guild leave] (100.000)\r\nOn: [h:trigger|guild promote] do [h:action|guild promote] (100.000)\r\nOn: [h:trigger|mail] do [h:action|mail] (100.000)\r\nOn: [h:trigger|help] do [h:action|help] (100.000)\r\nOn: [h:trigger|home] do [h:action|home] (100.000)\r\nOn: [h:trigger|keep] do [h:action|keep] (100.000)\r\nOn: [h:trigger|save ai] do [h:action|save ai] (100.000)\r\nOn: [h:trigger|leave] do [h:action|leave] (100.000)\r\nOn: [h:trigger|lfg] do [h:action|lfg] (100.000)\r\nOn: [h:trigger|ll] do [h:action|ll] (100.000)\r\nOn: [h:trigger|load ai] do [h:action|load ai] (100.000)\r\nOn: [h:trigger|log] do [h:action|log] (100.000)\r\nOn: [h:trigger|reputation] do [h:action|reputation] (100.000)\r\nOn: [h:trigger|los] do [h:action|los] (100.000)\r\nOn: [h:trigger|position] do [h:action|position] (100.000)\r\nOn: [h:trigger|react] do [h:action|react] (100.000)\r\nOn: [h:trigger|ss] do [h:action|skip spells list] (100.000)\r\nOn: [h:trigger|release] do [h:action|release] (100.000)\r\nOn: [h:trigger|reset strats] do [h:action|reset strats] (100.000)\r\nOn: [h:trigger|reset values] do [h:action|reset values] (100.000)\r\nOn: [h:trigger|rtsc] do [h:action|rtsc] (100.000)\r\nOn: [h:trigger|save mana] do [h:action|save mana] (100.000)\r\nOn: [h:trigger|sendmail] do [h:action|sendmail] (100.000)\r\nOn: [h:trigger|spells] do [h:action|spells] (100.000)\r\nOn: [h:trigger|share] do [h:action|share quest] (100.000)\r\nOn: [h:trigger|spell] do [h:action|spell] (100.000)\r\nOn: [h:trigger|stance] do [h:action|set Stance] (100.000)\r\nOn: [h:trigger|summon] do [h:action|summon] (100.000)\r\nOn: [h:trigger|teleport] do [h:action|teleport] (100.000)\r\nOn: [h:trigger|trainer] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|wts] do [h:action|wts] (100.000)\r\nDead state behavior:\r\nOn: [h:trigger|jump] do [h:action|jump] (100.000)\r\nOn: [h:trigger|ah] do [h:action|ah] (100.000)\r\nOn: [h:trigger|outfit] do [h:action|outfit] (100.000)\r\nOn: [h:trigger|cast] do [h:action|cast] (100.000)\r\nOn: [h:trigger|invite] do [h:action|invite] (100.000)\r\nOn: [h:trigger|who] do [h:action|who] (100.000)\r\nOn: [h:trigger|give leader] do [h:action|give leader] (100.000)\r\nOn: [h:trigger|buff] do [h:action|buff] (100.000)\r\nOn: [h:trigger|hire] do [h:action|hire] (100.000)\r\nOn: [h:trigger|cs] do [h:action|cs] (100.000)\r\nOn: [h:trigger|ah bid] do [h:action|ah bid] (100.000)\r\nOn: [h:trigger|cdebug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|reset ai] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|nc] do [h:action|nc] (100.000)\r\nOn: [h:trigger|taxi] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|guild remove] do [h:action|guild remove] (100.000)\r\nOn: [h:trigger|all] do [h:action|change strategy from all] (100.000)\r\nOn: [h:trigger|range] do [h:action|range] (100.000)\r\nOn: [h:trigger|bg free] do [h:action|action] (100.000)\r\nOn: [h:trigger|repair] do [h:action|repair] (100.000)\r\nOn: [h:trigger|bank] do [h:action|bank] (100.000)\r\nOn: [h:trigger|rti] do [h:action|rti] (100.000)\r\nOn: [h:trigger|drop] do [h:action|drop quest] (100.000)\r\nOn: [h:trigger|chat] do [h:action|chat] (100.000)\r\nOn: [h:trigger|list ai] do [h:action|list ai] (100.000)\r\nOn: [h:trigger|cheat] do [h:action|cheat] (100.000)\r\nOn: [h:trigger|co] do [h:action|co] (100.000)\r\nOn: [h:trigger|craft] do [h:action|craft] (100.000)\r\nOn: [h:trigger|de] do [h:action|de] (100.000)\r\nOn: [h:trigger|debug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|destroy] do [h:action|destroy] (100.000)\r\nOn: [h:trigger|emote] do [h:action|emote] (100.000)\r\nOn: [h:trigger|craft] do [h:action|flag] (100.000)\r\nOn: [h:trigger|quest reward] do [h:action|quest reward] (100.000)\r\nOn: [h:trigger|stats] do [h:action|stats] (100.000)\r\nOn: [h:trigger|formation] do [h:action|set formation] (100.000)\r\nOn: [h:trigger|gb] do [h:action|guild bank] (100.000)\r\nOn: [h:trigger|quests] do [h:action|quests] (100.000)\r\nOn: [h:trigger|go] do [h:action|go] (100.000)\r\nOn: [h:trigger|roll] do [h:action|roll] (100.000)\r\nOn: [h:trigger|join] do [h:action|join] (100.000)\r\nOn: [h:trigger|guild demote] do [h:action|guild demote] (100.000)\r\nOn: [h:trigger|ra] do [h:action|ra] (100.000)\r\nOn: [h:trigger|talents] do [h:action|talents] (100.000)\r\nOn: [h:trigger|guild invite] do [h:action|guild invite] (100.000)\r\nOn: [h:trigger|guild join] do [h:action|guild join] (100.000)\r\nOn: [h:trigger|move style] do [h:action|move style] (100.000)\r\nOn: [h:trigger|guild leader] do [h:action|guild leader] (100.000)\r\nOn: [h:trigger|guild leave] do [h:action|guild leave] (100.000)\r\nOn: [h:trigger|guild promote] do [h:action|guild promote] (100.000)\r\nOn: [h:trigger|mail] do [h:action|mail] (100.000)\r\nOn: [h:trigger|help] do [h:action|help] (100.000)\r\nOn: [h:trigger|home] do [h:action|home] (100.000)\r\nOn: [h:trigger|keep] do [h:action|keep] (100.000)\r\nOn: [h:trigger|save ai] do [h:action|save ai] (100.000)\r\nOn: [h:trigger|leave] do [h:action|leave] (100.000)\r\nOn: [h:trigger|lfg] do [h:action|lfg] (100.000)\r\nOn: [h:trigger|ll] do [h:action|ll] (100.000)\r\nOn: [h:trigger|load ai] do [h:action|load ai] (100.000)\r\nOn: [h:trigger|log] do [h:action|log] (100.000)\r\nOn: [h:trigger|reputation] do [h:action|reputation] (100.000)\r\nOn: [h:trigger|los] do [h:action|los] (100.000)\r\nOn: [h:trigger|position] do [h:action|position] (100.000)\r\nOn: [h:trigger|react] do [h:action|react] (100.000)\r\nOn: [h:trigger|ss] do [h:action|skip spells list] (100.000)\r\nOn: [h:trigger|release] do [h:action|release] (100.000)\r\nOn: [h:trigger|reset strats] do [h:action|reset strats] (100.000)\r\nOn: [h:trigger|reset values] do [h:action|reset values] (100.000)\r\nOn: [h:trigger|rtsc] do [h:action|rtsc] (100.000)\r\nOn: [h:trigger|save mana] do [h:action|save mana] (100.000)\r\nOn: [h:trigger|sendmail] do [h:action|sendmail] (100.000)\r\nOn: [h:trigger|spells] do [h:action|spells] (100.000)\r\nOn: [h:trigger|share] do [h:action|share quest] (100.000)\r\nOn: [h:trigger|spell] do [h:action|spell] (100.000)\r\nOn: [h:trigger|stance] do [h:action|set Stance] (100.000)\r\nOn: [h:trigger|summon] do [h:action|summon] (100.000)\r\nOn: [h:trigger|teleport] do [h:action|teleport] (100.000)\r\nOn: [h:trigger|trainer] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|wts] do [h:action|wts] (100.000)\r\nReaction behavior:\r\nOn: [h:trigger|jump] do [h:action|jump] (100.000)\r\nOn: [h:trigger|ah] do [h:action|ah] (100.000)\r\nOn: [h:trigger|guild join] do [h:action|guild join] (100.000)\r\nOn: [h:trigger|accept] do [h:action|accept quest] (100.000)\r\nOn: [h:trigger|guild remove] do [h:action|guild remove] (100.000)\r\nOn: [h:trigger|all] do [h:action|change strategy from all] (100.000)\r\nOn: [h:trigger|add all loot] do [h:action|add all loot] (103.000)[h:action|loot] (102.000)[h:action|move to loot] (101.000)[h:action|open loot] (100.000)\r\nOn: [h:trigger|cast] do [h:action|cast] (100.000)\r\nOn: [h:trigger|attack rti] do [h:action|attack rti target] (100.000)\r\nOn: [h:trigger|b] do [h:action|buy] (100.000)\r\nOn: [h:trigger|attack] do [h:action|attack my target] (100.000)\r\nOn: [h:trigger|hire] do [h:action|hire] (100.000)\r\nOn: [h:trigger|c] do [h:action|c] (100.000)\r\nOn: [h:trigger|cs] do [h:action|cs] (100.000)\r\nOn: [h:trigger|ah bid] do [h:action|ah bid] (100.000)\r\nOn: [h:trigger|flee] do [h:action|flee chat shortcut] (100.000)\r\nOn: [h:trigger|bank] do [h:action|bank] (100.000)\r\nOn: [h:trigger|bb] do [h:action|buyback] (100.000)\r\nOn: [h:trigger|pet] do [h:action|pet] (100.000)\r\nOn: [h:trigger|bg free] do [h:action|action] (100.000)\r\nOn: [h:trigger|join] do [h:action|join] (100.000)\r\nOn: [h:trigger|c] do [h:action|c] (100.000)\r\nOn: [h:trigger|guild demote] do [h:action|guild demote] (100.000)\r\nOn: [h:trigger|boost target] do [h:action|boost targets] (100.000)\r\nOn: [h:trigger|invite] do [h:action|invite] (100.000)\r\nOn: [h:trigger|who] do [h:action|who] (100.000)\r\nOn: [h:trigger|give leader] do [h:action|give leader] (100.000)\r\nOn: [h:trigger|buff] do [h:action|buff] (100.000)\r\nOn: [h:trigger|warning] do [h:action|runaway chat shortcut] (100.000)\r\nOn: [h:trigger|lfg] do [h:action|lfg] (100.000)\r\nOn: [h:trigger|buff target] do [h:action|buff targets] (100.000)\r\nOn: [h:trigger|cdebug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|drop] do [h:action|drop quest] (100.000)\r\nOn: [h:trigger|chat] do [h:action|chat] (100.000)\r\nOn: [h:trigger|list ai] do [h:action|list ai] (100.000)\r\nOn: [h:trigger|cheat] do [h:action|cheat] (100.000)\r\nOn: [h:trigger|co] do [h:action|co] (100.000)\r\nOn: [h:trigger|craft] do [h:action|craft] (100.000)\r\nOn: [h:trigger|de] do [h:action|de] (100.000)\r\nOn: [h:trigger|debug] do [h:action|debug] (100.000)\r\nOn: [h:trigger|destroy] do [h:action|destroy] (100.000)\r\nOn: [h:trigger|los] do [h:action|los] (100.000)\r\nOn: [h:trigger|e] do [h:action|equip] (100.000)\r\nOn: [h:trigger|emote] do [h:action|emote] (100.000)\r\nOn: [h:trigger|follow] do [h:action|follow chat shortcut] (100.000)\r\nOn: [h:trigger|craft] do [h:action|flag] (100.000)\r\nOn: [h:trigger|help] do [h:action|help] (100.000)\r\nOn: [h:trigger|focus heal] do [h:action|focus heal targets] (100.000)\r\nOn: [h:trigger|follow target] do [h:action|follow target] (100.000)\r\nOn: [h:trigger|formation] do [h:action|set formation] (100.000)\r\nOn: [h:trigger|free] do [h:action|free chat shortcut] (100.000)\r\nOn: [h:trigger|gb] do [h:action|guild bank] (100.000)\r\nOn: [h:trigger|go] do [h:action|go] (100.000)\r\nOn: [h:trigger|grind] do [h:action|grind chat shortcut] (100.000)\r\nOn: [h:trigger|guild invite] do [h:action|guild invite] (100.000)\r\nOn: [h:trigger|guard] do [h:action|guard chat shortcut] (100.000)\r\nOn: [h:trigger|guild leader] do [h:action|guild leader] (100.000)\r\nOn: [h:trigger|guild leave] do [h:action|guild leave] (100.000)\r\nOn: [h:trigger|guild promote] do [h:action|guild promote] (100.000)\r\nOn: [h:trigger|home] do [h:action|home] (100.000)\r\nOn: [h:trigger|c] do [h:action|c] (100.000)\r\nOn: [h:trigger|keep] do [h:action|keep] (100.000)\r\nOn: [h:trigger|leave] do [h:action|leave] (100.000)\r\nOn: [h:trigger|ll] do [h:action|ll] (100.000)\r\nOn: [h:trigger|load ai] do [h:action|load ai] (100.000)\r\nOn: [h:trigger|log] do [h:action|log] (100.000)\r\nOn: [h:trigger|add all loot] do [h:action|add all loot] (103.000)[h:action|loot] (102.000)[h:action|move to loot] (101.000)[h:action|open loot] (100.000)\r\nOn: [h:trigger|mail] do [h:action|mail] (100.000)\r\nOn: [h:trigger|max dps] do [h:action|max dps chat shortcut] (100.000)\r\nOn: [h:trigger|move style] do [h:action|move style] (100.000)\r\nOn: [h:trigger|nc] do [h:action|nc] (100.000)\r\nOn: [h:trigger|taxi] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|nt] do [h:action|trade] (100.000)\r\nOn: [h:trigger|outfit] do [h:action|outfit] (100.000)\r\nOn: [h:trigger|position] do [h:action|position] (100.000)\r\nOn: [h:trigger|possible attack targets] do [h:action|tell possible attack targets] (100.000)\r\nOn: [h:trigger|pull] do [h:action|pull my target] (100.000)\r\nOn: [h:trigger|pull rti] do [h:action|pull rti target] (100.000)\r\nOn: [h:trigger|q] do [h:action|query item usage] (100.000)[h:action|query quest] (100.000)\r\nOn: [h:trigger|quest reward] do [h:action|quest reward] (100.000)\r\nOn: [h:trigger|stats] do [h:action|stats] (100.000)\r\nOn: [h:trigger|quests] do [h:action|quests] (100.000)\r\nOn: [h:trigger|r] do [h:action|reward] (100.000)\r\nOn: [h:trigger|ra] do [h:action|ra] (100.000)\r\nOn: [h:trigger|revive] do [h:action|spirit healer] (100.000)\r\nOn: [h:trigger|talents] do [h:action|talents] (100.000)\r\nOn: [h:trigger|range] do [h:action|range] (100.000)\r\nOn: [h:trigger|react] do [h:action|react] (100.000)\r\nOn: [h:trigger|ss] do [h:action|skip spells list] (100.000)\r\nOn: [h:trigger|ready check] do [h:action|ready check] (100.000)\r\nOn: [h:trigger|release] do [h:action|release] (100.000)\r\nOn: [h:trigger|reputation] do [h:action|reputation] (100.000)\r\nOn: [h:trigger|repair] do [h:action|repair] (100.000)\r\nOn: [h:trigger|self res] do [h:action|self resurrect] (100.000)\r\nOn: [h:trigger|reputation] do [h:action|reputation] (100.000)\r\nOn: [h:trigger|reset ai] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|reset strats] do [h:action|reset strats] (100.000)\r\nOn: [h:trigger|reset values] do [h:action|reset values] (100.000)\r\nOn: [h:trigger|revive target] do [h:action|revive targets] (100.000)\r\nOn: [h:trigger|roll] do [h:action|roll] (100.000)\r\nOn: [h:trigger|rti] do [h:action|rti] (100.000)\r\nOn: [h:trigger|rtsc] do [h:action|rtsc] (100.000)\r\nOn: [h:trigger|runaway] do [h:action|runaway chat shortcut] (100.000)\r\nOn: [h:trigger|s] do [h:action|sell] (100.000)\r\nOn: [h:trigger|save ai] do [h:action|save ai] (100.000)\r\nOn: [h:trigger|save mana] do [h:action|save mana] (100.000)\r\nOn: [h:trigger|sendmail] do [h:action|sendmail] (100.000)\r\nOn: [h:trigger|spells] do [h:action|spells] (100.000)\r\nOn: [h:trigger|share] do [h:action|share quest] (100.000)\r\nOn: [h:trigger|spell] do [h:action|spell] (100.000)\r\nOn: [h:trigger|stance] do [h:action|set Stance] (100.000)\r\nOn: [h:trigger|stay] do [h:action|stay chat shortcut] (100.000)\r\nOn: [h:trigger|summon] do [h:action|summon] (100.000)\r\nOn: [h:trigger|t] do [h:action|trade] (100.000)\r\nOn: [h:trigger|talk] do [h:action|gossip hello] (100.000)[h:action|talk to quest giver] (100.000)\r\nOn: [h:trigger|tank attack] do [h:action|tank attack chat shortcut] (100.000)\r\nOn: [h:trigger|teleport] do [h:action|teleport] (100.000)\r\nOn: [h:trigger|trainer] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|use] do [h:action|use] (100.000)\r\nOn: [h:trigger|ue] do [h:action|unequip] (100.000)\r\nOn: [h:trigger|wait for attack time] do [h:action|wait for attack time] (100.000)\r\nOn: [h:trigger|wts] do [h:action|wts] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (121, 'strategy:rogue boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (122, 'action:rtsc', 1, 'rtsc [h:object|action] [c:do rtsc|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|rtsc] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rtsc] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|rtsc] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|rtsc] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (123, 'value:attackers count', 1, 'attackers count [h:object|value] [c:cdebug values attackers count|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (124, 'strategy:warrior nc', 1, 'nc [h:object|strategy] [c:co ~nc|toggle combat][c:nc ~nc|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:warrior trigger|trigger] do [h:action:world buff|world buff] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (1.000)', '', '', '', '', '', '', '', '', '', 0), - (125, 'strategy:rpg quest', 1, 'rpg quest [h:object|strategy] [c:co ~rpg quest|toggle combat][c:nc ~rpg quest|toggle noncombat]\r\nThis strategy makes bot move to npcs that have quests the bot can pick up or hand in.\r\nBots will only pick up quests that give xp unless low on durability.\r\nBots will also try to do repeatable quests.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|rpg end quest] do [h:action|rpg end quest] (1.090)\r\nOn: [h:trigger|rpg repeat quest] do [h:action|rpg end quest] (1.030)[h:action|rpg start quest] (1.030)\r\nOn: [h:trigger|rpg start quest] do [h:action|rpg start quest] (1.080)', '', '', '', '', '', '', '', '', '', 0), - (126, 'trigger:mage counterspell on enemy healer', 1, 'counterspell on enemy healer [h:object|trigger] [c:counterspell on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc frost pvp|cc frost pvp]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc frost raid|cc frost raid]', '', '', '', '', '', '', '', '', '', 0), + (125, 'strategy:rpg quest', 1, 'rpg quest [h:object|strategy] [c:co ~rpg quest|toggle combat][c:nc ~rpg quest|toggle noncombat]\r\nThis strategy makes bot move to npcs that have quests the bot can pick up or hand in.\r\nBots will only pick up quests that give xp unless low on durability.\r\nBots will also try to do repeatable quests.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|rpg end quest] do [h:action|rpg end quest] (1.090)\r\nOn: [h:trigger|rpg repeat quest] do [h:action|rpg start quest] (1.030)[h:action|rpg end quest] (1.030)\r\nOn: [h:trigger|rpg start quest] do [h:action|rpg start quest] (1.080)', '', '', '', '', '', '', '', '', '', 0), + (126, 'trigger:mage counterspell on enemy healer', 1, 'counterspell on enemy healer [h:object|trigger] [c:counterspell on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc frost raid|cc frost raid]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nExecutes: [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000) for [h:strategy:mage cc frost pvp|cc frost pvp]', '', '', '', '', '', '', '', '', '', 0), (127, 'strategy:stay', 1, 'stay [h:object|strategy] [c:co ~stay|toggle combat][c:nc ~stay|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|return to stay position] do [h:action|move to position] (1.500)\r\nDefault:[h:action|stay] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger|return to stay position] do [h:action|move to position] (1.500)\r\nDefault:[h:action|stay] (1.000)', '', '', '', '', '', '', '', '', '', 0), - (128, 'strategy:racials', 1, 'racials [h:object|strategy] [c:co ~racials|toggle combat][c:nc ~racials|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|blood fury] do [h:action|blood fury] (71.000)\r\nOn: [h:trigger|arcane torrent] do [h:action|arcane torrent] (71.000)\r\nOn: [h:trigger|cannibalize] do [h:action|perception] (71.000)\r\nOn: [h:trigger|berserking] do [h:action|berserking] (58.000)\r\nOn: [h:trigger|mana tap] do [h:action|mana tap] (71.000)\r\nOn: [h:trigger|cannibalize] do [h:action|cannibalize] (71.000)\r\nOn: [h:trigger|aoe] do [h:action|war stomp] (71.000)\r\nOn: [h:trigger|low health] do [h:action|gift of the naaru] (71.000)\r\nOn: [h:trigger|rooted] do [h:action|escape artist] (71.000)\r\nOn: [h:trigger|stoneform] do [h:action|stoneform] (71.000)\r\nOn: [h:trigger|war stomp] do [h:action|war stomp] (71.000)\r\nOn: [h:trigger|will of the forsaken] do [h:action|will of the forsaken] (71.000)\r\nNon combat behavior:\r\nOn: [h:trigger|blood fury] do [h:action|blood fury] (71.000)\r\nOn: [h:trigger|arcane torrent] do [h:action|arcane torrent] (71.000)\r\nOn: [h:trigger|cannibalize] do [h:action|perception] (71.000)\r\nOn: [h:trigger|berserking] do [h:action|berserking] (58.000)\r\nOn: [h:trigger|mana tap] do [h:action|mana tap] (71.000)\r\nOn: [h:trigger|cannibalize] do [h:action|cannibalize] (71.000)\r\nOn: [h:trigger|aoe] do [h:action|war stomp] (71.000)\r\nOn: [h:trigger|low health] do [h:action|gift of the naaru] (71.000)\r\nOn: [h:trigger|rooted] do [h:action|escape artist] (71.000)\r\nOn: [h:trigger|stoneform] do [h:action|stoneform] (71.000)\r\nOn: [h:trigger|war stomp] do [h:action|war stomp] (71.000)\r\nOn: [h:trigger|will of the forsaken] do [h:action|will of the forsaken] (71.000)', '', '', '', '', '', '', '', '', '', 0), - (129, 'action:hunter multi-shot', 1, 'multi-shot [h:object|action] [c:do multi-shot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (20.000) for [h:strategy:hunter aoe|aoe]\r\nTriggers from: [h:trigger:hunter multi shot|multi shot] with relevance (20.000) for [h:strategy:hunter aoe|aoe]', '', '', '', '', '', '', '', '', '', 0), - (130, 'strategy:follow', 1, 'follow [h:object|strategy] [c:co ~follow|toggle combat][c:nc ~follow|toggle noncombat]\r\nThis strategy will make the bot stay near the master\r\nRelated strategies:\r\n[h:strategy|stay] [h:strategy|runaway] [h:strategy|flee from adds] [h:strategy|guard] [h:strategy|free] \r\nCombat behavior:\r\nOn: [h:trigger|out of react range] do [h:action|flee to master] (20.000)[h:action|check mount state] (20.000)\r\nOn: [h:trigger|update follow] do [h:action|follow] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger|out of react range] do [h:action|flee to master] (20.000)[h:action|check mount state] (20.000)\r\nOn: [h:trigger|update follow] do [h:action|follow] (1.000)\r\nDead state behavior:\r\nOn: [h:trigger|out of react range] do [h:action|flee to master] (20.000)[h:action|check mount state] (20.000)\r\nOn: [h:trigger|update follow] do [h:action|follow] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger|stop follow] do [h:action|stop follow] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (128, 'strategy:racials', 1, 'racials [h:object|strategy] [c:co ~racials|toggle combat][c:nc ~racials|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|stoneform] do [h:action|stoneform] (71.000)\r\nOn: [h:trigger|berserking] do [h:action|berserking] (58.000)\r\nOn: [h:trigger|rooted] do [h:action|escape artist] (71.000)\r\nOn: [h:trigger|aoe] do [h:action|war stomp] (71.000)\r\nOn: [h:trigger|cannibalize] do [h:action|cannibalize] (71.000)\r\nOn: [h:trigger|cannibalize] do [h:action|perception] (71.000)\r\nOn: [h:trigger|blood fury] do [h:action|blood fury] (71.000)\r\nOn: [h:trigger|war stomp] do [h:action|war stomp] (71.000)\r\nOn: [h:trigger|will of the forsaken] do [h:action|will of the forsaken] (71.000)\r\nNon combat behavior:\r\nOn: [h:trigger|stoneform] do [h:action|stoneform] (71.000)\r\nOn: [h:trigger|berserking] do [h:action|berserking] (58.000)\r\nOn: [h:trigger|rooted] do [h:action|escape artist] (71.000)\r\nOn: [h:trigger|aoe] do [h:action|war stomp] (71.000)\r\nOn: [h:trigger|cannibalize] do [h:action|cannibalize] (71.000)\r\nOn: [h:trigger|cannibalize] do [h:action|perception] (71.000)\r\nOn: [h:trigger|blood fury] do [h:action|blood fury] (71.000)\r\nOn: [h:trigger|war stomp] do [h:action|war stomp] (71.000)\r\nOn: [h:trigger|will of the forsaken] do [h:action|will of the forsaken] (71.000)', '', '', '', '', '', '', '', '', '', 0), + (129, 'action:hunter multi-shot', 1, 'multi-shot [h:object|action] [c:do multi-shot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter multi-shot|multi-shot] with relevance (20.000) for [h:strategy:hunter aoe marksmanship raid|aoe marksmanship raid]\r\nTriggers from: [h:trigger:hunter multi-shot|multi-shot] with relevance (20.000) for [h:strategy:hunter aoe marksmanship pve|aoe marksmanship pve]\r\nTriggers from: [h:trigger:hunter multi-shot|multi-shot] with relevance (20.000) for [h:strategy:hunter aoe beast mastery pve|aoe beast mastery pve]\r\nTriggers from: [h:trigger:hunter multi-shot|multi-shot] with relevance (20.000) for [h:strategy:hunter aoe beast mastery pvp|aoe beast mastery pvp]\r\nTriggers from: [h:trigger:hunter multi-shot|multi-shot] with relevance (20.000) for [h:strategy:hunter aoe beast mastery raid|aoe beast mastery raid]\r\nTriggers from: [h:trigger:hunter multi-shot|multi-shot] with relevance (20.000) for [h:strategy:hunter aoe survival pve|aoe survival pve]\r\nTriggers from: [h:trigger:hunter multi-shot|multi-shot] with relevance (20.000) for [h:strategy:hunter aoe marksmanship pvp|aoe marksmanship pvp]\r\nTriggers from: [h:trigger:hunter multi-shot|multi-shot] with relevance (20.000) for [h:strategy:hunter aoe survival pvp|aoe survival pvp]\r\nTriggers from: [h:trigger:hunter multi-shot|multi-shot] with relevance (20.000) for [h:strategy:hunter aoe survival raid|aoe survival raid]', '', '', '', '', '', '', '', '', '', 0), + (130, 'strategy:follow', 1, 'follow [h:object|strategy] [c:co ~follow|toggle combat][c:nc ~follow|toggle noncombat]\r\nThis strategy will make the bot stay near the master\r\nRelated strategies:\r\n[h:strategy|stay] [h:strategy|runaway] [h:strategy|flee from adds] [h:strategy|guard] [h:strategy|free] \r\nCombat behavior:\r\nOn: [h:trigger|out of react range] do [h:action|check mount state] (20.000)[h:action|flee to master] (20.000)\r\nOn: [h:trigger|update follow] do [h:action|follow] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger|out of react range] do [h:action|check mount state] (20.000)[h:action|flee to master] (20.000)\r\nOn: [h:trigger|update follow] do [h:action|follow] (1.000)\r\nDead state behavior:\r\nOn: [h:trigger|out of react range] do [h:action|check mount state] (20.000)[h:action|flee to master] (20.000)\r\nOn: [h:trigger|update follow] do [h:action|follow] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger|stop follow] do [h:action|stop follow] (100.000)', '', '', '', '', '', '', '', '', '', 0), (131, 'trigger:falling far', 1, 'falling far [h:object|trigger] [c:falling far|trigger now]\r\n\r\nDead state behavior:\r\nExecutes: [h:action|repop] (101.000) for [h:strategy|dead]', '', '', '', '', '', '', '', '', '', 0), (132, 'action:attack anything', 1, 'attack anything [h:object|action] [c:do attack anything|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|no target] with relevance (5.000) for [h:strategy|grind]', '', '', '', '', '', '', '', '', '', 0), - (133, 'strategy:default', 1, 'default [h:object|strategy] [c:co ~default|toggle combat][c:nc ~default|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|activate taxi] do [h:action|taxi] (100.000)[h:action|remember taxi] (100.000)\r\nOn: [h:trigger|quest objective completed] do [h:action|quest objective completed] (100.000)\r\nOn: [h:trigger|area trigger] do [h:action|reach area trigger] (100.000)\r\nOn: [h:trigger|cannot equip] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|arena team invite] do [h:action|arena team accept] (100.000)\r\nOn: [h:trigger|gossip hello] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|bg status] do [h:action|bg status] (100.000)\r\nOn: [h:trigger|check mount state] do [h:action|check mount state] (2.000)\r\nOn: [h:trigger|group invite] do [h:action|accept invitation] (100.000)[h:action|reset raids] (100.000)\r\nOn: [h:trigger|group set leader] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|guild accept] do [h:action|guild accept] (100.000)\r\nOn: [h:trigger|inventory change failure] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|item push result] do [h:action|equip upgrades] (100.000)[h:action|query item usage] (100.000)\r\nOn: [h:trigger|levelup] do [h:action|auto learn spell] (100.000)[h:action|auto talents] (100.000)\r\nOn: [h:trigger|lfg proposal] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg proposal active] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg role check] do [h:action|lfg role check] (100.000)\r\nOn: [h:trigger|lfg teleport] do [h:action|lfg teleport] (100.000)\r\nOn: [h:trigger|loot response] do [h:action|store loot] (100.000)\r\nOn: [h:trigger|loot start roll] do [h:action|loot start roll] (100.000)\r\nOn: [h:trigger|within area trigger] do [h:action|area trigger] (100.000)\r\nOn: [h:trigger|not enough money] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|not enough reputation] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|often] do [h:action|check mail] (100.000)[h:action|security check] (100.000)\r\nOn: [h:trigger|summon request] do [h:action|accept summon] (100.000)\r\nOn: [h:trigger|taxi done] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|party command] do [h:action|party command] (100.000)\r\nOn: [h:trigger|random bot update] do [h:action|random bot update] (100.000)\r\nOn: [h:trigger|petition offer] do [h:action|petition sign] (100.000)\r\nOn: [h:trigger|see spell] do [h:action|see spell] (100.000)\r\nOn: [h:trigger|ready check] do [h:action|ready check] (100.000)\r\nOn: [h:trigger|release spirit] do [h:action|release] (100.000)\r\nOn: [h:trigger|revive from corpse] do [h:action|revive from corpse] (100.000)\r\nOn: [h:trigger|trade status] do [h:action|accept trade] (100.000)[h:action|equip upgrades] (100.000)\r\nOn: [h:trigger|uninvite] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|uninvite guid] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|use game object] do [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000)\r\nOn: [h:trigger|xpgain] do [h:action|xp gain] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|activate taxi] do [h:action|taxi] (100.000)[h:action|remember taxi] (100.000)\r\nOn: [h:trigger|quest objective completed] do [h:action|quest objective completed] (100.000)\r\nOn: [h:trigger|area trigger] do [h:action|reach area trigger] (100.000)\r\nOn: [h:trigger|cannot equip] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|arena team invite] do [h:action|arena team accept] (100.000)\r\nOn: [h:trigger|gossip hello] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|bg status] do [h:action|bg status] (100.000)\r\nOn: [h:trigger|check mount state] do [h:action|check mount state] (2.000)\r\nOn: [h:trigger|group invite] do [h:action|accept invitation] (100.000)[h:action|reset raids] (100.000)\r\nOn: [h:trigger|group set leader] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|guild accept] do [h:action|guild accept] (100.000)\r\nOn: [h:trigger|inventory change failure] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|item push result] do [h:action|equip upgrades] (100.000)[h:action|query item usage] (100.000)\r\nOn: [h:trigger|levelup] do [h:action|auto learn spell] (100.000)[h:action|auto talents] (100.000)\r\nOn: [h:trigger|lfg proposal] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg proposal active] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg role check] do [h:action|lfg role check] (100.000)\r\nOn: [h:trigger|lfg teleport] do [h:action|lfg teleport] (100.000)\r\nOn: [h:trigger|loot response] do [h:action|store loot] (100.000)\r\nOn: [h:trigger|loot start roll] do [h:action|loot start roll] (100.000)\r\nOn: [h:trigger|within area trigger] do [h:action|area trigger] (100.000)\r\nOn: [h:trigger|not enough money] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|not enough reputation] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|often] do [h:action|check mail] (100.000)[h:action|security check] (100.000)\r\nOn: [h:trigger|summon request] do [h:action|accept summon] (100.000)\r\nOn: [h:trigger|taxi done] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|party command] do [h:action|party command] (100.000)\r\nOn: [h:trigger|random bot update] do [h:action|random bot update] (100.000)\r\nOn: [h:trigger|petition offer] do [h:action|petition sign] (100.000)\r\nOn: [h:trigger|see spell] do [h:action|see spell] (100.000)\r\nOn: [h:trigger|ready check] do [h:action|ready check] (100.000)\r\nOn: [h:trigger|release spirit] do [h:action|release] (100.000)\r\nOn: [h:trigger|revive from corpse] do [h:action|revive from corpse] (100.000)\r\nOn: [h:trigger|trade status] do [h:action|accept trade] (100.000)[h:action|equip upgrades] (100.000)\r\nOn: [h:trigger|uninvite] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|uninvite guid] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|use game object] do [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000)\r\nOn: [h:trigger|xpgain] do [h:action|xp gain] (100.000)\r\nDead state behavior:\r\nOn: [h:trigger|activate taxi] do [h:action|taxi] (100.000)[h:action|remember taxi] (100.000)\r\nOn: [h:trigger|quest objective completed] do [h:action|quest objective completed] (100.000)\r\nOn: [h:trigger|area trigger] do [h:action|reach area trigger] (100.000)\r\nOn: [h:trigger|cannot equip] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|arena team invite] do [h:action|arena team accept] (100.000)\r\nOn: [h:trigger|gossip hello] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|bg status] do [h:action|bg status] (100.000)\r\nOn: [h:trigger|check mount state] do [h:action|check mount state] (2.000)\r\nOn: [h:trigger|group invite] do [h:action|accept invitation] (100.000)[h:action|reset raids] (100.000)\r\nOn: [h:trigger|group set leader] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|guild accept] do [h:action|guild accept] (100.000)\r\nOn: [h:trigger|inventory change failure] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|item push result] do [h:action|equip upgrades] (100.000)[h:action|query item usage] (100.000)\r\nOn: [h:trigger|levelup] do [h:action|auto learn spell] (100.000)[h:action|auto talents] (100.000)\r\nOn: [h:trigger|lfg proposal] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg proposal active] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg role check] do [h:action|lfg role check] (100.000)\r\nOn: [h:trigger|lfg teleport] do [h:action|lfg teleport] (100.000)\r\nOn: [h:trigger|loot response] do [h:action|store loot] (100.000)\r\nOn: [h:trigger|loot start roll] do [h:action|loot start roll] (100.000)\r\nOn: [h:trigger|within area trigger] do [h:action|area trigger] (100.000)\r\nOn: [h:trigger|not enough money] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|not enough reputation] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|often] do [h:action|check mail] (100.000)[h:action|security check] (100.000)\r\nOn: [h:trigger|summon request] do [h:action|accept summon] (100.000)\r\nOn: [h:trigger|taxi done] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|party command] do [h:action|party command] (100.000)\r\nOn: [h:trigger|random bot update] do [h:action|random bot update] (100.000)\r\nOn: [h:trigger|petition offer] do [h:action|petition sign] (100.000)\r\nOn: [h:trigger|see spell] do [h:action|see spell] (100.000)\r\nOn: [h:trigger|ready check] do [h:action|ready check] (100.000)\r\nOn: [h:trigger|release spirit] do [h:action|release] (100.000)\r\nOn: [h:trigger|revive from corpse] do [h:action|revive from corpse] (100.000)\r\nOn: [h:trigger|trade status] do [h:action|accept trade] (100.000)[h:action|equip upgrades] (100.000)\r\nOn: [h:trigger|uninvite] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|uninvite guid] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|use game object] do [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000)\r\nOn: [h:trigger|xpgain] do [h:action|xp gain] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (133, 'strategy:default', 1, 'default [h:object|strategy] [c:co ~default|toggle combat][c:nc ~default|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|activate taxi] do [h:action|remember taxi] (100.000)[h:action|taxi] (100.000)\r\nOn: [h:trigger|guild accept] do [h:action|guild accept] (100.000)\r\nOn: [h:trigger|loot start roll] do [h:action|loot start roll] (100.000)\r\nOn: [h:trigger|area trigger] do [h:action|reach area trigger] (100.000)\r\nOn: [h:trigger|cannot equip] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|arena team invite] do [h:action|arena team accept] (100.000)\r\nOn: [h:trigger|gossip hello] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|levelup] do [h:action|auto learn spell] (100.000)[h:action|auto talents] (100.000)\r\nOn: [h:trigger|within area trigger] do [h:action|area trigger] (100.000)\r\nOn: [h:trigger|bg status] do [h:action|bg status] (100.000)\r\nOn: [h:trigger|random bot update] do [h:action|random bot update] (100.000)\r\nOn: [h:trigger|check mount state] do [h:action|check mount state] (2.000)\r\nOn: [h:trigger|confirm quest] do [h:action|confirm quest] (100.000)\r\nOn: [h:trigger|group invite] do [h:action|accept invitation] (100.000)\r\nOn: [h:trigger|group set leader] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|honorgain] do [h:action|honor gain] (100.000)\r\nOn: [h:trigger|inventory change failure] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|lfg teleport] do [h:action|lfg teleport] (100.000)\r\nOn: [h:trigger|item push result] do [h:action|query item usage] (100.000)[h:action|equip upgrades] (100.000)\r\nOn: [h:trigger|lfg proposal] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg proposal active] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg role check] do [h:action|lfg role check] (100.000)\r\nOn: [h:trigger|loot response] do [h:action|store loot] (100.000)\r\nOn: [h:trigger|not enough money] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|not enough reputation] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|often] do [h:action|check mail] (100.000)[h:action|security check] (100.000)\r\nOn: [h:trigger|party command] do [h:action|party command] (100.000)\r\nOn: [h:trigger|petition offer] do [h:action|petition sign] (100.000)\r\nOn: [h:trigger|use game object] do [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000)\r\nOn: [h:trigger|quest details] do [h:action|quest details] (100.000)\r\nOn: [h:trigger|quest update add item] do [h:action|quest update add item] (100.000)\r\nOn: [h:trigger|quest update add kill] do [h:action|quest update add kill] (100.000)\r\nOn: [h:trigger|quest update complete] do [h:action|quest update complete] (100.000)\r\nOn: [h:trigger|quest update failed timer] do [h:action|quest update failed timer] (100.000)\r\nOn: [h:trigger|quest update failed] do [h:action|quest update failed] (100.000)\r\nOn: [h:trigger|ready check] do [h:action|ready check] (100.000)\r\nOn: [h:trigger|release spirit] do [h:action|release] (100.000)\r\nOn: [h:trigger|taxi done] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|revive from corpse] do [h:action|revive from corpse] (100.000)\r\nOn: [h:trigger|see spell] do [h:action|see spell] (100.000)\r\nOn: [h:trigger|summon request] do [h:action|accept summon] (100.000)\r\nOn: [h:trigger|trade status] do [h:action|equip upgrades] (100.000)[h:action|accept trade] (100.000)\r\nOn: [h:trigger|uninvite] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|uninvite guid] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|xpgain] do [h:action|xp gain] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|activate taxi] do [h:action|remember taxi] (100.000)[h:action|taxi] (100.000)\r\nOn: [h:trigger|guild accept] do [h:action|guild accept] (100.000)\r\nOn: [h:trigger|loot start roll] do [h:action|loot start roll] (100.000)\r\nOn: [h:trigger|area trigger] do [h:action|reach area trigger] (100.000)\r\nOn: [h:trigger|cannot equip] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|arena team invite] do [h:action|arena team accept] (100.000)\r\nOn: [h:trigger|gossip hello] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|levelup] do [h:action|auto learn spell] (100.000)[h:action|auto talents] (100.000)\r\nOn: [h:trigger|within area trigger] do [h:action|area trigger] (100.000)\r\nOn: [h:trigger|bg status] do [h:action|bg status] (100.000)\r\nOn: [h:trigger|random bot update] do [h:action|random bot update] (100.000)\r\nOn: [h:trigger|check mount state] do [h:action|check mount state] (2.000)\r\nOn: [h:trigger|confirm quest] do [h:action|confirm quest] (100.000)\r\nOn: [h:trigger|group invite] do [h:action|accept invitation] (100.000)\r\nOn: [h:trigger|group set leader] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|honorgain] do [h:action|honor gain] (100.000)\r\nOn: [h:trigger|inventory change failure] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|lfg teleport] do [h:action|lfg teleport] (100.000)\r\nOn: [h:trigger|item push result] do [h:action|query item usage] (100.000)[h:action|equip upgrades] (100.000)\r\nOn: [h:trigger|lfg proposal] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg proposal active] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg role check] do [h:action|lfg role check] (100.000)\r\nOn: [h:trigger|loot response] do [h:action|store loot] (100.000)\r\nOn: [h:trigger|not enough money] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|not enough reputation] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|often] do [h:action|check mail] (100.000)[h:action|security check] (100.000)\r\nOn: [h:trigger|party command] do [h:action|party command] (100.000)\r\nOn: [h:trigger|petition offer] do [h:action|petition sign] (100.000)\r\nOn: [h:trigger|use game object] do [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000)\r\nOn: [h:trigger|quest details] do [h:action|quest details] (100.000)\r\nOn: [h:trigger|quest update add item] do [h:action|quest update add item] (100.000)\r\nOn: [h:trigger|quest update add kill] do [h:action|quest update add kill] (100.000)\r\nOn: [h:trigger|quest update complete] do [h:action|quest update complete] (100.000)\r\nOn: [h:trigger|quest update failed timer] do [h:action|quest update failed timer] (100.000)\r\nOn: [h:trigger|quest update failed] do [h:action|quest update failed] (100.000)\r\nOn: [h:trigger|ready check] do [h:action|ready check] (100.000)\r\nOn: [h:trigger|release spirit] do [h:action|release] (100.000)\r\nOn: [h:trigger|taxi done] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|revive from corpse] do [h:action|revive from corpse] (100.000)\r\nOn: [h:trigger|see spell] do [h:action|see spell] (100.000)\r\nOn: [h:trigger|summon request] do [h:action|accept summon] (100.000)\r\nOn: [h:trigger|trade status] do [h:action|equip upgrades] (100.000)[h:action|accept trade] (100.000)\r\nOn: [h:trigger|uninvite] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|uninvite guid] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|xpgain] do [h:action|xp gain] (100.000)\r\nDead state behavior:\r\nOn: [h:trigger|activate taxi] do [h:action|remember taxi] (100.000)[h:action|taxi] (100.000)\r\nOn: [h:trigger|guild accept] do [h:action|guild accept] (100.000)\r\nOn: [h:trigger|loot start roll] do [h:action|loot start roll] (100.000)\r\nOn: [h:trigger|area trigger] do [h:action|reach area trigger] (100.000)\r\nOn: [h:trigger|cannot equip] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|arena team invite] do [h:action|arena team accept] (100.000)\r\nOn: [h:trigger|gossip hello] do [h:action|trainer] (100.000)\r\nOn: [h:trigger|levelup] do [h:action|auto learn spell] (100.000)[h:action|auto talents] (100.000)\r\nOn: [h:trigger|within area trigger] do [h:action|area trigger] (100.000)\r\nOn: [h:trigger|bg status] do [h:action|bg status] (100.000)\r\nOn: [h:trigger|random bot update] do [h:action|random bot update] (100.000)\r\nOn: [h:trigger|check mount state] do [h:action|check mount state] (2.000)\r\nOn: [h:trigger|confirm quest] do [h:action|confirm quest] (100.000)\r\nOn: [h:trigger|group invite] do [h:action|accept invitation] (100.000)\r\nOn: [h:trigger|group set leader] do [h:action|reset ai] (100.000)\r\nOn: [h:trigger|honorgain] do [h:action|honor gain] (100.000)\r\nOn: [h:trigger|inventory change failure] do [h:action|inventory change failure] (100.000)\r\nOn: [h:trigger|lfg teleport] do [h:action|lfg teleport] (100.000)\r\nOn: [h:trigger|item push result] do [h:action|query item usage] (100.000)[h:action|equip upgrades] (100.000)\r\nOn: [h:trigger|lfg proposal] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg proposal active] do [h:action|lfg accept] (100.000)\r\nOn: [h:trigger|lfg role check] do [h:action|lfg role check] (100.000)\r\nOn: [h:trigger|loot response] do [h:action|store loot] (100.000)\r\nOn: [h:trigger|not enough money] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|not enough reputation] do [h:action|tell master] (100.000)\r\nOn: [h:trigger|often] do [h:action|check mail] (100.000)[h:action|security check] (100.000)\r\nOn: [h:trigger|party command] do [h:action|party command] (100.000)\r\nOn: [h:trigger|petition offer] do [h:action|petition sign] (100.000)\r\nOn: [h:trigger|use game object] do [h:action|add loot] (100.000)[h:action|use meeting stone] (100.000)\r\nOn: [h:trigger|quest details] do [h:action|quest details] (100.000)\r\nOn: [h:trigger|quest update add item] do [h:action|quest update add item] (100.000)\r\nOn: [h:trigger|quest update add kill] do [h:action|quest update add kill] (100.000)\r\nOn: [h:trigger|quest update complete] do [h:action|quest update complete] (100.000)\r\nOn: [h:trigger|quest update failed timer] do [h:action|quest update failed timer] (100.000)\r\nOn: [h:trigger|quest update failed] do [h:action|quest update failed] (100.000)\r\nOn: [h:trigger|ready check] do [h:action|ready check] (100.000)\r\nOn: [h:trigger|release spirit] do [h:action|release] (100.000)\r\nOn: [h:trigger|taxi done] do [h:action|taxi] (100.000)\r\nOn: [h:trigger|revive from corpse] do [h:action|revive from corpse] (100.000)\r\nOn: [h:trigger|see spell] do [h:action|see spell] (100.000)\r\nOn: [h:trigger|summon request] do [h:action|accept summon] (100.000)\r\nOn: [h:trigger|trade status] do [h:action|equip upgrades] (100.000)[h:action|accept trade] (100.000)\r\nOn: [h:trigger|uninvite] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|uninvite guid] do [h:action|uninvite] (100.000)\r\nOn: [h:trigger|xpgain] do [h:action|xp gain] (100.000)', '', '', '', '', '', '', '', '', '', 0), (134, 'trigger:summon request', 1, 'summon request [h:object|trigger] [c:summon request|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|accept summon] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|accept summon] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|accept summon] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (135, 'action:suggest trade', 1, 'suggest trade [h:object|action] [c:do suggest trade|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|often] with relevance (1.000) for [h:strategy|emote]', '', '', '', '', '', '', '', '', '', 0), (136, 'value:RTSC selected', 1, 'RTSC selected [h:object|value] [c:cdebug values RTSC selected|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (137, 'action:warrior heroic strike', 1, 'heroic strike [h:object|action] [c:do heroic strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (11.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (11.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (11.000) for [h:strategy:warrior fury raid|fury raid]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (137, 'action:warrior heroic strike', 1, 'heroic strike [h:object|action] [c:do heroic strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior heroic strike|heroic strike] with relevance (11.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior heroic strike|heroic strike] with relevance (11.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior heroic strike|heroic strike] with relevance (11.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), (138, 'action:reach party member to heal', 1, 'reach party member to heal [h:object|action] [c:do reach party member to heal|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member to heal out of spell range|party member to heal out of spell range] with relevance (91.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), (139, 'trigger:check mount state', 1, 'check mount state [h:object|trigger] [c:check mount state|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|check mount state] (2.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|check mount state] (2.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|check mount state] (2.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (140, 'action:druid entangling roots', 1, 'entangling roots [h:object|action] [c:do entangling roots|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid entangling roots|entangling roots] with relevance (22.000) for [h:strategy:druid cc|cc]', '', '', '', '', '', '', '', '', '', 0), + (140, 'action:druid entangling roots', 1, 'entangling roots [h:object|action] [c:do entangling roots|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid entangling roots|entangling roots] with relevance (40.000) for [h:strategy:druid cc restoration raid|cc restoration raid]\r\nTriggers from: [h:trigger:druid entangling roots|entangling roots] with relevance (40.000) for [h:strategy:druid cc balance pve|cc balance pve]\r\nTriggers from: [h:trigger:druid entangling roots|entangling roots] with relevance (40.000) for [h:strategy:druid cc balance pvp|cc balance pvp]\r\nTriggers from: [h:trigger:druid entangling roots|entangling roots] with relevance (40.000) for [h:strategy:druid cc balance raid|cc balance raid]\r\nTriggers from: [h:trigger:druid entangling roots|entangling roots] with relevance (40.000) for [h:strategy:druid cc restoration pve|cc restoration pve]\r\nTriggers from: [h:trigger:druid entangling roots|entangling roots] with relevance (40.000) for [h:strategy:druid cc restoration pvp|cc restoration pvp]', '', '', '', '', '', '', '', '', '', 0), (141, 'strategy:runaway', 1, 'runaway [h:object|strategy] [c:co ~runaway|toggle combat][c:nc ~runaway|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|enemy too close for spell] do [h:action|runaway] (50.000)', '', '', '', '', '', '', '', '', '', 0), (142, 'action:cast custom spell', 1, 'cast custom spell [h:object|action] [c:do cast custom spell|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|cast] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (143, 'value:can get mail', 1, 'can get mail [h:object|value] [c:cdebug values can get mail|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (144, 'strategy:guild', 1, 'guild [h:object|strategy] [c:co ~guild|toggle combat][c:nc ~guild|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|buy tabard trigger] do [h:action|buy tabard] (10.000)\r\nOn: [h:trigger|leave large guild trigger] do [h:action|guild leave] (4.000)\r\nOn: [h:trigger|petition turn in trigger] do [h:action|turn in petition] (10.000)\r\nOn: [h:trigger|random] do [h:action|petition offer nearby] (4.000)[h:action|guild manage nearby] (4.000)', '', '', '', '', '', '', '', '', '', 0), - (145, 'action:rpg end quest', 1, 'rpg end quest [h:object|action] [c:do rpg end quest|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg repeat quest] with relevance (1.030) for [h:strategy|rpg quest]\r\nTriggers from: [h:trigger|rpg end quest] with relevance (1.090) for [h:strategy|rpg quest]', '', '', '', '', '', '', '', '', '', 0), + (145, 'action:rpg end quest', 1, 'rpg end quest [h:object|action] [c:do rpg end quest|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg end quest] with relevance (1.090) for [h:strategy|rpg quest]\r\nTriggers from: [h:trigger|rpg repeat quest] with relevance (1.030) for [h:strategy|rpg quest]', '', '', '', '', '', '', '', '', '', 0), (146, 'strategy:ready check', 1, 'ready check [h:object|strategy] [c:co ~ready check|toggle combat][c:nc ~ready check|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|timer] do [h:action|ready check] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|timer] do [h:action|ready check] (100.000)\r\nDead state behavior:\r\nOn: [h:trigger|timer] do [h:action|ready check] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (147, 'trigger:paladin repentance on enemy healer on enemy healer', 1, 'repentance on enemy healer on enemy healer [h:object|trigger] [c:repentance on enemy healer on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nExecutes: [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (147, 'trigger:paladin repentance on enemy healer on enemy healer', 1, 'repentance on enemy healer on enemy healer [h:object|trigger] [c:repentance on enemy healer on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nExecutes: [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), (148, 'chatfilter:combat', 1, 'combat [h:object|chatfilter]\r\nThis filter selects bots with a specific weapon range.\r\nExamples:\r\n@ranged: All bots that use ranged attacks.\r\n@melee: All bots that use melee attacks.', '', '', '', '', '', '', '', '', '', 0), - (149, 'strategy:isle', 1, 'isle [h:object|strategy] [c:co ~isle|toggle combat][c:nc ~isle|toggle noncombat]\r\nThis strategy controls the behavior during an isle of conquest battleground.\r\nRelated strategies:\r\n[h:strategy|battleground] [h:strategy|bg] \r\nCombat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|enemy is close] do [h:action|ram] (79.000)[h:action|steam blast] (80.000)\r\nOn: [h:trigger|timer] do [h:action|enter vehicle] (85.000)\r\nOn: [h:trigger|enemy out of melee range] do [h:action|steam rush] (81.000)\r\nOn: [h:trigger|in vehicle] do [h:action|glaive throw] (70.000)[h:action|hurl boulder] (70.000)[h:action|napalm] (70.000)[h:action|fire cannon] (70.000)[h:action|ram] (70.000)[h:action|blade salvo] (71.000)[h:action|incendiary rocket] (70.000)[h:action|rocket blast] (70.000)\r\nNon combat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|enemy is close] do [h:action|ram] (79.000)[h:action|steam blast] (80.000)\r\nOn: [h:trigger|timer] do [h:action|enter vehicle] (85.000)\r\nOn: [h:trigger|enemy out of melee range] do [h:action|steam rush] (81.000)\r\nOn: [h:trigger|in vehicle] do [h:action|glaive throw] (70.000)[h:action|hurl boulder] (70.000)[h:action|napalm] (70.000)[h:action|fire cannon] (70.000)[h:action|ram] (70.000)[h:action|blade salvo] (71.000)[h:action|incendiary rocket] (70.000)[h:action|rocket blast] (70.000)', '', '', '', '', '', '', '', '', '', 0), - (150, 'trigger:hunter rapid fire', 1, 'rapid fire [h:object|trigger] [c:rapid fire|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter rapid fire|rapid fire] (16.000) for [h:strategy:hunter boost|boost]', '', '', '', '', '', '', '', '', '', 0), + (149, 'strategy:isle', 1, 'isle [h:object|strategy] [c:co ~isle|toggle combat][c:nc ~isle|toggle noncombat]\r\nThis strategy controls the behavior during an isle of conquest battleground.\r\nRelated strategies:\r\n[h:strategy|battleground] [h:strategy|bg] \r\nCombat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|timer] do [h:action|enter vehicle] (85.000)\r\nOn: [h:trigger|enemy is close] do [h:action|steam blast] (80.000)[h:action|ram] (79.000)\r\nOn: [h:trigger|enemy out of melee range] do [h:action|steam rush] (81.000)\r\nOn: [h:trigger|in vehicle] do [h:action|hurl boulder] (70.000)[h:action|incendiary rocket] (70.000)[h:action|fire cannon] (70.000)[h:action|blade salvo] (71.000)[h:action|rocket blast] (70.000)[h:action|napalm] (70.000)[h:action|ram] (70.000)[h:action|glaive throw] (70.000)\r\nNon combat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|timer] do [h:action|enter vehicle] (85.000)\r\nOn: [h:trigger|enemy is close] do [h:action|steam blast] (80.000)[h:action|ram] (79.000)\r\nOn: [h:trigger|enemy out of melee range] do [h:action|steam rush] (81.000)\r\nOn: [h:trigger|in vehicle] do [h:action|hurl boulder] (70.000)[h:action|incendiary rocket] (70.000)[h:action|fire cannon] (70.000)[h:action|blade salvo] (71.000)[h:action|rocket blast] (70.000)[h:action|napalm] (70.000)[h:action|ram] (70.000)[h:action|glaive throw] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (150, 'trigger:hunter rapid fire', 1, 'rapid fire [h:object|trigger] [c:rapid fire|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter rapid fire|rapid fire] (25.000) for [h:strategy:hunter boost beast mastery raid|boost beast mastery raid]\r\nExecutes: [h:action:hunter rapid fire|rapid fire] (25.000) for [h:strategy:hunter boost survival pvp|boost survival pvp]\r\nExecutes: [h:action:hunter rapid fire|rapid fire] (25.000) for [h:strategy:hunter boost beast mastery pve|boost beast mastery pve]\r\nExecutes: [h:action:hunter rapid fire|rapid fire] (25.000) for [h:strategy:hunter boost beast mastery pvp|boost beast mastery pvp]\r\nExecutes: [h:action:hunter rapid fire|rapid fire] (25.000) for [h:strategy:hunter boost marksmanship pve|boost marksmanship pve]\r\nExecutes: [h:action:hunter rapid fire|rapid fire] (25.000) for [h:strategy:hunter boost marksmanship pvp|boost marksmanship pvp]\r\nExecutes: [h:action:hunter rapid fire|rapid fire] (25.000) for [h:strategy:hunter boost marksmanship raid|boost marksmanship raid]\r\nExecutes: [h:action:hunter rapid fire|rapid fire] (25.000) for [h:strategy:hunter boost survival pve|boost survival pve]\r\nExecutes: [h:action:hunter rapid fire|rapid fire] (25.000) for [h:strategy:hunter boost survival raid|boost survival raid]', '', '', '', '', '', '', '', '', '', 0), (151, 'trigger:mage trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:world buff|world buff] (1.000) for [h:strategy:mage nc|nc]', '', '', '', '', '', '', '', '', '', 0), (152, 'strategy:gather', 1, 'gather [h:object|strategy] [c:co ~gather|toggle combat][c:nc ~gather|toggle noncombat]\r\nThis strategy will make bots look for and save nearby gathering nodes to loot later.\r\nRelated strategies:\r\n[h:strategy|reveal] \r\nNon combat behavior:\r\nOn: [h:trigger|timer] do [h:action|add gathering loot] (2.000)', '', '', '', '', '', '', '', '', '', 0), - (153, 'strategy:ranged', 1, 'ranged [h:object|strategy] [c:co ~ranged|toggle combat][c:nc ~ranged|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|enemy too close for spell] do [h:action|flee] (59.000)', '', '', '', '', '', '', '', '', '', 0), + (153, 'strategy:ranged', 1, 'ranged [h:object|strategy] [c:co ~ranged|toggle combat][c:nc ~ranged|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|enemy too close for spell] do [h:action|flee] (30.000)', '', '', '', '', '', '', '', '', '', 0), (154, 'action:rpg get mail', 1, 'rpg get mail [h:object|action] [c:do rpg get mail|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg get mail] with relevance (1.070) for [h:strategy|rpg vendor]', '', '', '', '', '', '', '', '', '', 0), (155, 'trigger:talk', 1, 'talk [h:object|trigger] [c:talk|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|gossip hello] (100.000)[h:action|talk to quest giver] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (156, 'strategy:druid nc', 1, 'nc [h:object|strategy] [c:co ~nc|toggle combat][c:nc ~nc|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:druid revive|revive] (22.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (1.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:druid innervate|innervate] (95.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (14.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (92.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)', '', '', '', '', '', '', '', '', '', 0), (157, 'action:paladin blessing of wisdom', 1, 'blessing of wisdom [h:object|action] [c:do blessing of wisdom|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of wisdom|blessing of wisdom] with relevance (10.000) for [h:strategy:paladin blessing wisdom|blessing wisdom]', '', '', '', '', '', '', '', '', '', 0), (158, 'trigger:blood fury', 1, 'blood fury [h:object|trigger] [c:blood fury|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|blood fury] (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nExecutes: [h:action|blood fury] (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (159, 'action:escape artist', 1, 'escape artist [h:object|action] [c:do escape artist|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|rooted] with relevance (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rooted] with relevance (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), - (160, 'strategy:guard', 1, 'guard [h:object|strategy] [c:co ~guard|toggle combat][c:nc ~guard|toggle noncombat]\r\nThis a position strategy that will make the bot stay in a location until they have something to attack.\r\nRelated strategies:\r\n[h:strategy|follow] [h:strategy|stay] [h:strategy|runaway] [h:strategy|flee from adds] [h:strategy|free] \r\nCombat behavior:\r\nDefault:[h:action|check mount state] (4.000)[h:action|move to position] (4.000)\r\nNon combat behavior:\r\nOn: [h:trigger|at dark portal azeroth] do [h:action|dark portal azeroth] (1.000)\r\nOn: [h:trigger|at dark portal outland] do [h:action|move from dark portal] (1.000)\r\nDefault:[h:action|check mount state] (4.000)[h:action|move to position] (4.000)\r\nOn: [h:trigger|near dark portal] do [h:action|move to dark portal] (1.000)\r\nOn: [h:trigger|very often] do [h:action|check mount state] (1.000)[h:action|check values] (1.000)', '', '', '', '', '', '', '', '', '', 0), - (161, 'strategy:maintenance', 1, 'maintenance [h:object|strategy] [c:co ~maintenance|toggle combat][c:nc ~maintenance|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|move long stuck] do [h:action|hearthstone] (0.900)[h:action|repop] (0.800)\r\nOn: [h:trigger|random] do [h:action|clean quest log] (6.000)[h:action|smart destroy] (1.000)[h:action|random recipe] (1.000)[h:action|disenchant random item] (1.000)[h:action|auto share quest] (0.900)[h:action|use random quest item] (0.900)[h:action|enchant random item] (1.000)\r\nOn: [h:trigger|move stuck] do [h:action|reset] (0.700)', '', '', '', '', '', '', '', '', '', 0), + (160, 'strategy:guard', 1, 'guard [h:object|strategy] [c:co ~guard|toggle combat][c:nc ~guard|toggle noncombat]\r\nThis a position strategy that will make the bot stay in a location until they have something to attack.\r\nRelated strategies:\r\n[h:strategy|follow] [h:strategy|stay] [h:strategy|runaway] [h:strategy|flee from adds] [h:strategy|free] \r\nCombat behavior:\r\nDefault:[h:action|check mount state] (4.000)[h:action|move to position] (4.000)\r\nNon combat behavior:\r\nOn: [h:trigger|at dark portal azeroth] do [h:action|dark portal azeroth] (1.000)\r\nOn: [h:trigger|very often] do [h:action|check mount state] (1.000)[h:action|check values] (1.000)\r\nOn: [h:trigger|at dark portal outland] do [h:action|move from dark portal] (1.000)\r\nOn: [h:trigger|near dark portal] do [h:action|move to dark portal] (1.000)\r\nDefault:[h:action|check mount state] (4.000)[h:action|move to position] (4.000)', '', '', '', '', '', '', '', '', '', 0), + (161, 'strategy:maintenance', 1, 'maintenance [h:object|strategy] [c:co ~maintenance|toggle combat][c:nc ~maintenance|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|move long stuck] do [h:action|hearthstone] (0.900)[h:action|repop] (0.800)\r\nOn: [h:trigger|move stuck] do [h:action|reset] (0.700)\r\nOn: [h:trigger|random] do [h:action|clean quest log] (6.000)[h:action|random recipe] (1.000)[h:action|smart destroy] (1.000)[h:action|disenchant random item] (1.000)[h:action|enchant random item] (1.000)[h:action|use random quest item] (0.900)[h:action|auto share quest] (0.900)', '', '', '', '', '', '', '', '', '', 0), (162, 'trigger:warrior victory rush', 1, 'victory rush [h:object|trigger] [c:victory rush|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior victory rush|victory rush] (20.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior victory rush|victory rush] (20.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:warrior victory rush|victory rush] (20.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior victory rush|victory rush] (20.000) for [h:strategy:warrior arms raid|arms raid]\r\nExecutes: [h:action:warrior victory rush|victory rush] (20.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior victory rush|victory rush] (20.000) for [h:strategy:warrior fury raid|fury raid]\r\nExecutes: [h:action:warrior victory rush|victory rush] (20.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior victory rush|victory rush] (20.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior victory rush|victory rush] (20.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (163, 'strategy:rpg vendor', 1, 'rpg vendor [h:object|strategy] [c:co ~rpg vendor|toggle combat][c:nc ~rpg vendor|toggle noncombat]\r\nThis strategy makes bot move to vendors, auctionhouses and mail-boxes.\r\nBots will buy and sell items depending on usage see [h:action|query item usage].\r\nBots will pick up their mail if there is any items or gold attached.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|rpg ah buy] do [h:action|rpg ah buy] (1.035)\r\nOn: [h:trigger|rpg ah sell] do [h:action|rpg ah sell] (1.110)\r\nOn: [h:trigger|rpg sell] do [h:action|rpg sell] (1.100)\r\nOn: [h:trigger|rpg buy] do [h:action|rpg buy] (1.030)\r\nOn: [h:trigger|rpg get mail] do [h:action|rpg get mail] (1.070)', '', '', '', '', '', '', '', '', '', 0), - (164, 'strategy:priest holy', 1, 'holy [h:object|strategy] [c:co ~holy|toggle combat][c:nc ~holy|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest binding heal|binding heal] do [h:action:priest binding heal on party|binding heal on party] (52.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:priest renew|renew] (43.000)\r\nOn: [h:trigger:priest chastise on snare target|chastise on snare target] do [h:action:priest chastise on snare target|chastise on snare target] (40.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest flash heal|flash heal] (70.000)[h:action:priest remove shadowform|remove shadowform] (72.000)[h:action:priest power word: shield|power word: shield] (71.000)[h:action:priest pain suppression|pain suppression] (91.000)[h:action:priest desperate prayer|desperate prayer] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:priest heal on party|heal on party] (41.000)[h:action:priest renew on party|renew on party] (40.000)\r\nOn: [h:trigger:priest holy fire|holy fire] do [h:action:priest holy fire|holy fire] (19.000)\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest elune\'s grace|elune\'s grace] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (60.000)[h:action:priest power word: shield|power word: shield] (61.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:priest inner focus|inner focus] (42.000)[h:action:priest consume magic|consume magic] (10.000)[h:action:priest shadowfiend|shadowfiend] (20.000)[h:action:priest mana burn|mana burn] (20.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:priest greater heal|greater heal] (25.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:priest symbol of hope|symbol of hope] (90.000)[h:action:priest shadowfiend|shadowfiend] (20.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:priest fade|fade] (55.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (60.000)[h:action:priest power word: shield on party|power word: shield on party] (61.000)[h:action:priest remove shadowform|remove shadowform] (62.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (50.000)[h:action:priest power word: shield on party|power word: shield on party] (51.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest greater heal on party|greater heal on party] (47.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:priest pain suppression|pain suppression] (90.000)\r\nOn: [h:trigger:priest shadowfiend|shadowfiend] do [h:action:priest shadowfiend|shadowfiend] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)\r\nDefault:[h:action:priest mana burn|mana burn] (9.000)[h:action:priest smite|smite] (10.000)[h:action:priest starshards|starshards] (8.000)', '', '', '', '', '', '', '', '', '', 0), - (165, 'action:add all loot', 1, 'add all loot [h:object|action] [c:do add all loot|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|often] with relevance (1.000) for [h:strategy|loot]\r\nReaction behavior:\r\nTriggers from: [h:trigger|add all loot] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (163, 'strategy:rpg vendor', 1, 'rpg vendor [h:object|strategy] [c:co ~rpg vendor|toggle combat][c:nc ~rpg vendor|toggle noncombat]\r\nThis strategy makes bot move to vendors, auctionhouses and mail-boxes.\r\nBots will buy and sell items depending on usage see [h:action|query item usage].\r\nBots will pick up their mail if there is any items or gold attached.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|rpg ah buy] do [h:action|rpg ah buy] (1.035)\r\nOn: [h:trigger|rpg ah sell] do [h:action|rpg ah sell] (1.110)\r\nOn: [h:trigger|rpg buy] do [h:action|rpg buy] (1.030)\r\nOn: [h:trigger|rpg get mail] do [h:action|rpg get mail] (1.070)\r\nOn: [h:trigger|rpg sell] do [h:action|rpg sell] (1.100)', '', '', '', '', '', '', '', '', '', 0), + (164, 'strategy:priest holy', 1, 'holy [h:object|strategy] [c:co ~holy|toggle combat][c:nc ~holy|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:priest update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:priest update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:priest update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:priest update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:priest update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:priest update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (165, 'action:add all loot', 1, 'add all loot [h:object|action] [c:do add all loot|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|often] with relevance (1.000) for [h:strategy|loot]\r\nReaction behavior:\r\nTriggers from: [h:trigger|add all loot] with relevance (103.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|add all loot] with relevance (103.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (166, 'strategy:kite', 1, 'kite [h:object|strategy] [c:co ~kite|toggle combat][c:nc ~kite|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|have aggro] do [h:action|runaway] (51.000)', '', '', '', '', '', '', '', '', '', 0), (167, 'trigger:mail', 1, 'mail [h:object|trigger] [c:mail|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|mail] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|mail] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|mail] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|mail] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (168, 'trigger:hunter scatter shot on snare target', 1, 'scatter shot on snare target [h:object|trigger] [c:scatter shot on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter scatter shot on snare target|scatter shot on snare target] (61.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), @@ -193,68 +193,68 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (173, 'value:quest givers', 1, 'quest givers [h:object|value] [c:cdebug values quest givers|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (174, 'trigger:end onyxia fight', 1, 'end onyxia fight [h:object|trigger] [c:end onyxia fight|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|disable onyxia fight strategy] (100.000) for [h:strategy|onyxia]\r\nDead state behavior:\r\nExecutes: [h:action|disable onyxia fight strategy] (100.000) for [h:strategy|onyxia]', '', '', '', '', '', '', '', '', '', 0), (175, 'strategy:warrior tank', 1, 'tank [h:object|strategy] [c:co ~tank|toggle combat][c:nc ~tank|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (42.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior last stand|last stand] (93.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (1.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] do [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000)\r\nOn: [h:trigger:warrior commanding shout|commanding shout] do [h:action:warrior commanding shout|commanding shout] (28.000)\r\nOn: [h:trigger:warrior disarm|disarm] do [h:action:warrior disarm|disarm] (21.000)\r\nOn: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] do [h:action:warrior concussion blow|concussion blow] (40.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (60.000)[h:action:warrior heroic throw|heroic throw] (61.000)\r\nOn: [h:trigger:warrior defensive stance|defensive stance] do [h:action:warrior defensive stance|defensive stance] (41.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:warrior intervene|intervene] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (22.000)\r\nOn: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] do [h:action:warrior berserker stance|berserker stance] (54.000)[h:action:warrior intercept|intercept] (53.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:warrior shield wall|shield wall] (70.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior battle shout|battle shout] (11.000)[h:action:warrior challenging shout|challenging shout] (23.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior shield slam|shield slam] (23.000)\r\nOn: [h:trigger:warrior taunt on snare target|taunt on snare target] do [h:action:warrior heroic throw on snare target|heroic throw on snare target] (40.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:warrior rend|rend] do [h:action:warrior rend|rend] (21.000)\r\nOn: [h:trigger:warrior revenge|revenge] do [h:action:warrior revenge|revenge] (22.000)\r\nOn: [h:trigger:warrior shield bash|shield bash] do [h:action:warrior shield bash|shield bash] (40.000)\r\nOn: [h:trigger:warrior sword and board|sword and board] do [h:action:warrior shield slam|shield slam] (40.000)\r\nOn: [h:trigger:warrior shield block|shield block] do [h:action:warrior shield block|shield block] (41.000)\r\nOn: [h:trigger:warrior spell reflection|spell reflection] do [h:action:warrior spell reflection|spell reflection] (41.000)\r\nOn: [h:trigger:warrior sunder armor|sunder armor] do [h:action:warrior devastate|devastate] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:oil of immolation|oil of immolation] (28.000)[h:action:adamantite grenade|adamantite grenade] (61.000)[h:action:goblin sapper|goblin sapper] (29.000)\r\nOn: [h:trigger:warrior victory rush|victory rush] do [h:action:warrior victory rush|victory rush] (40.000)\r\nDefault:[h:action:melee|melee] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (176, 'trigger:mage aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe arcane pve|aoe arcane pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe fire pve|aoe fire pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe fire raid|aoe fire raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe arcane pvp|aoe arcane pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe arcane raid|aoe arcane raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe frost pve|aoe frost pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe frost pvp|aoe frost pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe frost raid|aoe frost raid]', '', '', '', '', '', '', '', '', '', 0), + (176, 'trigger:mage aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe arcane pve|aoe arcane pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe frost pve|aoe frost pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe fire raid|aoe fire raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe arcane pvp|aoe arcane pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe arcane raid|aoe arcane raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe fire pve|aoe fire pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe frost pvp|aoe frost pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:mage aoe frost raid|aoe frost raid]', '', '', '', '', '', '', '', '', '', 0), (177, 'strategy:magmadar', 1, 'magmadar [h:object|strategy] [c:co ~magmadar|toggle combat][c:nc ~magmadar|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|fire protection potion ready] do [h:action|fire protection potion] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|end magmadar fight] do [h:action|disable magmadar fight strategy] (100.000)\r\nDead state behavior:\r\nOn: [h:trigger|end magmadar fight] do [h:action|disable magmadar fight strategy] (100.000)\r\nReaction behavior:\r\nOn: [h:trigger|magmadar lava bomb] do [h:action|move away from hazard] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (178, 'action:runaway', 1, 'runaway [h:object|action] [c:do runaway|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|has nearest adds] with relevance (50.000) for [h:strategy|flee from adds]\r\nTriggers from: [h:trigger|have aggro] with relevance (51.000) for [h:strategy|kite]\r\nTriggers from: [h:trigger|enemy too close for spell] with relevance (50.000) for [h:strategy|runaway]', '', '', '', '', '', '', '', '', '', 0), + (178, 'action:runaway', 1, 'runaway [h:object|action] [c:do runaway|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|have aggro] with relevance (51.000) for [h:strategy|kite]\r\nTriggers from: [h:trigger|has nearest adds] with relevance (50.000) for [h:strategy|flee from adds]\r\nTriggers from: [h:trigger|enemy too close for spell] with relevance (50.000) for [h:strategy|runaway]', '', '', '', '', '', '', '', '', '', 0), (179, 'trigger:return to stay position', 1, 'return to stay position [h:object|trigger] [c:return to stay position|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|move to position] (1.500) for [h:strategy|stay]\r\nNon combat behavior:\r\nExecutes: [h:action|move to position] (1.500) for [h:strategy|stay]', '', '', '', '', '', '', '', '', '', 0), (180, 'action:guild join', 1, 'guild join [h:object|action] [c:do guild join|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|guild join] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|guild join] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|guild join] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|guild join] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (181, 'strategy:mark rti', 1, 'mark rti [h:object|strategy] [c:co ~mark rti|toggle combat][c:nc ~mark rti|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|no rti target] do [h:action|mark rti] (90.000)', '', '', '', '', '', '', '', '', '', 0), - (182, 'action:rogue cold blood', 1, 'cold blood [h:object|action] [c:do cold blood|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (25.000) for [h:strategy:rogue buff assassination pve|buff assassination pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (25.000) for [h:strategy:rogue buff assassination pvp|buff assassination pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (25.000) for [h:strategy:rogue buff assassination raid|buff assassination raid]', '', '', '', '', '', '', '', '', '', 0), + (182, 'action:rogue cold blood', 1, 'cold blood [h:object|action] [c:do cold blood|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (25.000) for [h:strategy:rogue boost assassination raid|boost assassination raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (25.000) for [h:strategy:rogue boost assassination pve|boost assassination pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (25.000) for [h:strategy:rogue boost assassination pvp|boost assassination pvp]', '', '', '', '', '', '', '', '', '', 0), (183, 'trigger:resurrect request', 1, 'resurrect request [h:object|trigger] [c:resurrect request|trigger now]\r\n\r\nDead state behavior:\r\nExecutes: [h:action|accept resurrect] (100.000) for [h:strategy|dead]', '', '', '', '', '', '', '', '', '', 0), (184, 'strategy:hunter react', 1, 'react [h:object|strategy] [c:co ~react|toggle combat][c:nc ~react|toggle noncombat]\r\n\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (185, 'strategy:mage bdps', 1, 'bdps [h:object|strategy] [c:co ~bdps|toggle combat][c:nc ~bdps|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage mage armor|mage armor] do [h:action:mage molten armor|molten armor] (19.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage mage armor|mage armor] do [h:action:mage molten armor|molten armor] (19.000)', '', '', '', '', '', '', '', '', '', 0), (186, 'strategy:reveal', 1, 'reveal [h:object|strategy] [c:co ~reveal|toggle combat][c:nc ~reveal|toggle noncombat]\r\nThis strategy will make bots point out nearby gathering nodes that they can open.\r\nRelated strategies:\r\n[h:strategy|gather] \r\nNon combat behavior:\r\nOn: [h:trigger|often] do [h:action|reveal gathering item] (50.000)', '', '', '', '', '', '', '', '', '', 0), (187, 'value:invalid target', 1, 'invalid target [h:object|value] [c:cdebug values invalid target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (188, 'strategy:wait for attack', 1, 'wait for attack [h:object|strategy] [c:co ~wait for attack|toggle combat][c:nc ~wait for attack|toggle noncombat]\r\nThis strategy will make bots wait a specified time before attacking.\r\nCombat behavior:\r\nOn: [h:trigger|wait for attack safe distance] do [h:action|wait for attack keep safe distance] (60.000)', '', '', '', '', '', '', '', '', '', 0), - (189, 'trigger:mage no food trigger', 1, 'no food trigger [h:object|trigger] [c:no food trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), + (189, 'trigger:mage no food trigger', 1, 'no food trigger [h:object|trigger] [c:no food trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage frost raid|frost raid]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage conjure food|conjure food] (10.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), (190, 'strategy:shaman heal', 1, 'heal [h:object|strategy] [c:co ~heal|toggle combat][c:nc ~heal|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:shaman riptide|riptide] (26.000)\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (30.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:shaman chain heal|chain heal] (27.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (31.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (1.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:shaman mana tide totem|mana tide totem] (95.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman lesser healing wave|lesser healing wave] (26.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman riptide on party|riptide on party] (25.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (25.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (92.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (80.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:adamantite grenade|adamantite grenade] (61.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (23.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (23.000)', '', '', '', '', '', '', '', '', '', 0), (191, 'action:warrior rend', 1, 'rend [h:object|action] [c:do rend|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior rend|rend] with relevance (10.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior rend|rend] with relevance (10.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior rend|rend] with relevance (10.000) for [h:strategy:warrior arms raid|arms raid]', '', '', '', '', '', '', '', '', '', 0), (192, 'strategy:rpg maintenance', 1, 'rpg maintenance [h:object|strategy] [c:co ~rpg maintenance|toggle combat][c:nc ~rpg maintenance|toggle noncombat]\r\nThis strategy makes bot move to trainers and armorers.\r\nBots will automatically train new spells or skills that are available.\r\nBots will automatically repair their armor when below 80% durability.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|rpg repair] do [h:action|rpg repair] (1.095)\r\nOn: [h:trigger|rpg train] do [h:action|rpg train] (1.080)', '', '', '', '', '', '', '', '', '', 0), - (193, 'strategy:rpg', 1, 'rpg [h:object|strategy] [c:co ~rpg|toggle combat][c:nc ~rpg|toggle noncombat]\r\nThis strategy makes bot move between npcs to automatically do various interaction.\r\nThis is the main rpg strategy which make bots pickand move to various rpg targets.\r\nThe interactions included in this strategy are limited to emotesand wait.\r\nRelated strategies:\r\n[h:strategy|rpg quest] [h:strategy|rpg vendor] [h:strategy|rpg explore] [h:strategy|rpg maintenance] [h:strategy|rpg guild] [h:strategy|rpg bg] [h:strategy|rpg player] [h:strategy|rpg craft] [h:strategy|debug rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|far from rpg target] do [h:action|move to rpg target] (5.000)\r\nOn: [h:trigger|no rpg target] do [h:action|choose rpg target] (5.000)\r\nOn: [h:trigger|rpg] do [h:action|rpg cancel] (1.001)[h:action|rpg stay] (1.001)[h:action|rpg work] (1.001)[h:action|rpg emote] (1.001)\r\nOn: [h:trigger|rpg heal] do [h:action|rpg heal] (1.025)\r\nOn: [h:trigger|rpg use] do [h:action|rpg use] (1.001)\r\nOn: [h:trigger|rpg wander] do [h:action|rpg cancel] (1.001)', '', '', '', '', '', '', '', '', '', 0), - (194, 'action:warrior disarm', 1, 'disarm [h:object|action] [c:do disarm|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior disarm|disarm] with relevance (10.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior disarm|disarm] with relevance (10.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior disarm|disarm] with relevance (10.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (193, 'strategy:rpg', 1, 'rpg [h:object|strategy] [c:co ~rpg|toggle combat][c:nc ~rpg|toggle noncombat]\r\nThis strategy makes bot move between npcs to automatically do various interaction.\r\nThis is the main rpg strategy which make bots pickand move to various rpg targets.\r\nThe interactions included in this strategy are limited to emotesand wait.\r\nRelated strategies:\r\n[h:strategy|rpg quest] [h:strategy|rpg vendor] [h:strategy|rpg explore] [h:strategy|rpg maintenance] [h:strategy|rpg guild] [h:strategy|rpg bg] [h:strategy|rpg player] [h:strategy|rpg craft] [h:strategy|debug rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|far from rpg target] do [h:action|move to rpg target] (5.000)\r\nOn: [h:trigger|rpg] do [h:action|rpg stay] (1.001)[h:action|rpg cancel] (1.001)[h:action|rpg work] (1.001)[h:action|rpg emote] (1.001)\r\nOn: [h:trigger|no rpg target] do [h:action|choose rpg target] (5.000)\r\nOn: [h:trigger|rpg use] do [h:action|rpg use] (1.001)\r\nOn: [h:trigger|rpg wander] do [h:action|rpg cancel] (1.001)\r\nOn: [h:trigger|often] do [h:action|rpg cancel] (0.001)\r\nOn: [h:trigger|rpg heal] do [h:action|rpg heal] (1.025)', '', '', '', '', '', '', '', '', '', 0), + (194, 'action:warrior disarm', 1, 'disarm [h:object|action] [c:do disarm|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior disarm|disarm] with relevance (10.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior disarm|disarm] with relevance (10.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior disarm|disarm] with relevance (10.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), (195, 'trigger:warrior taste for blood', 1, 'taste for blood [h:object|trigger] [c:taste for blood|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior overpower|overpower] (20.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:warrior overpower|overpower] (20.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior overpower|overpower] (20.000) for [h:strategy:warrior arms raid|arms raid]', '', '', '', '', '', '', '', '', '', 0), - (196, 'strategy:rpg craft', 1, 'rpg craft [h:object|strategy] [c:co ~rpg craft|toggle combat][c:nc ~rpg craft|toggle noncombat]\r\nThis strategy makes bot move to nearby objects, players, npcs.\r\nBots will automatically craft items they think are usefull or will give them skill points.\r\nBots will automatically cast random spells on or near players or npcs.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|castnc] do [h:action|cast custom nc spell] (0.900)\r\nOn: [h:trigger|rpg craft] do [h:action|rpg craft] (1.001)\r\nOn: [h:trigger|rpg item] do [h:action|rpg item] (1.001)\r\nOn: [h:trigger|rpg spell] do [h:action|rpg spell] (1.001)', '', '', '', '', '', '', '', '', '', 0), + (196, 'strategy:rpg craft', 1, 'rpg craft [h:object|strategy] [c:co ~rpg craft|toggle combat][c:nc ~rpg craft|toggle noncombat]\r\nThis strategy makes bot move to nearby objects, players, npcs.\r\nBots will automatically craft items they think are usefull or will give them skill points.\r\nBots will automatically cast random spells on or near players or npcs.\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nNon combat behavior:\r\nOn: [h:trigger|castnc] do [h:action|cast custom nc spell] (0.900)\r\nOn: [h:trigger|rpg craft] do [h:action|rpg craft] (1.010)\r\nOn: [h:trigger|rpg item] do [h:action|rpg item] (1.001)\r\nOn: [h:trigger|rpg spell] do [h:action|rpg spell] (1.001)', '', '', '', '', '', '', '', '', '', 0), (197, 'strategy:sit', 1, 'sit [h:object|strategy] [c:co ~sit|toggle combat][c:nc ~sit|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|sit] do [h:action|sit] (1.500)', '', '', '', '', '', '', '', '', '', 0), - (198, 'trigger:hunter scare beast', 1, 'scare beast [h:object|trigger] [c:scare beast|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter scare beast on cc|scare beast on cc] (23.000) for [h:strategy:hunter cc|cc]', '', '', '', '', '', '', '', '', '', 0), + (198, 'trigger:hunter scare beast', 1, 'scare beast [h:object|trigger] [c:scare beast|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter scare beast|scare beast] (22.000) for [h:strategy:hunter cc beast mastery pvp|cc beast mastery pvp]\r\nExecutes: [h:action:hunter scare beast|scare beast] (22.000) for [h:strategy:hunter cc marksmanship pvp|cc marksmanship pvp]\r\nExecutes: [h:action:hunter scare beast|scare beast] (22.000) for [h:strategy:hunter cc marksmanship raid|cc marksmanship raid]\r\nExecutes: [h:action:hunter scare beast|scare beast] (22.000) for [h:strategy:hunter cc marksmanship pve|cc marksmanship pve]\r\nExecutes: [h:action:hunter scare beast|scare beast] (22.000) for [h:strategy:hunter cc beast mastery pve|cc beast mastery pve]\r\nExecutes: [h:action:hunter scare beast|scare beast] (22.000) for [h:strategy:hunter cc beast mastery raid|cc beast mastery raid]\r\nExecutes: [h:action:hunter scare beast|scare beast] (22.000) for [h:strategy:hunter cc survival pve|cc survival pve]\r\nExecutes: [h:action:hunter scare beast|scare beast] (22.000) for [h:strategy:hunter cc survival pvp|cc survival pvp]\r\nExecutes: [h:action:hunter scare beast|scare beast] (22.000) for [h:strategy:hunter cc survival raid|cc survival raid]', '', '', '', '', '', '', '', '', '', 0), (199, 'trigger:no target', 1, 'no target [h:object|trigger] [c:no target|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|attack anything] (5.000) for [h:strategy|grind]', '', '', '', '', '', '', '', '', '', 0), (200, 'trigger:paladin judgement of wisdom', 1, 'judgement of wisdom [h:object|trigger] [c:judgement of wisdom|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin judgement of wisdom|judgement of wisdom] (12.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nExecutes: [h:action:paladin judgement of wisdom|judgement of wisdom] (12.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nExecutes: [h:action:paladin judgement of wisdom|judgement of wisdom] (12.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (201, 'strategy:tank assist', 1, 'tank assist [h:object|strategy] [c:co ~tank assist|toggle combat][c:nc ~tank assist|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|no attackers] do [h:action|tank assist] (60.000)', '', '', '', '', '', '', '', '', '', 0), + (201, 'strategy:tank assist', 1, 'tank assist [h:object|strategy] [c:co ~tank assist|toggle combat][c:nc ~tank assist|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|tank assist] do [h:action|tank assist] (60.000)', '', '', '', '', '', '', '', '', '', 0), (202, 'action:random recipe', 1, 'random recipe [h:object|action] [c:do random recipe|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (1.000) for [h:strategy|maintenance]', '', '', '', '', '', '', '', '', '', 0), (203, 'trigger:target changed', 1, 'target changed [h:object|trigger] [c:target changed|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|tell target] (51.000) for [h:strategy|tell target]', '', '', '', '', '', '', '', '', '', 0), (204, 'action:mage summon water elemental', 1, 'summon water elemental [h:object|action] [c:do summon water elemental|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage summon water elemental|summon water elemental] with relevance (10.000) for [h:strategy:mage frost|frost]', '', '', '', '', '', '', '', '', '', 0), (205, 'strategy:travel', 1, 'travel [h:object|strategy] [c:co ~travel|toggle combat][c:nc ~travel|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|far from travel target] do [h:action|check mount state] (1.000)[h:action|move to travel target] (1.000)\r\nOn: [h:trigger|no travel target] do [h:action|choose travel target] (6.000)\r\nDefault:[h:action|travel] (1.000)', '', '', '', '', '', '', '', '', '', 0), - (206, 'action:shaman cure disease on party', 1, 'cure disease on party [h:object|action] [c:do cure disease on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]', '', '', '', '', '', '', '', '', '', 0), - (207, 'strategy:warsong', 1, 'warsong [h:object|strategy] [c:co ~warsong|toggle combat][c:nc ~warsong|toggle noncombat]\r\nThis strategy controls the behavior during a warsong gluch battleground like capturing/retaking flags and picking up buffs.\r\nRelated strategies:\r\n[h:strategy|battleground] [h:strategy|bg] \r\nCombat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|enemy flagcarrier near] do [h:action|attack enemy flag carrier] (80.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|player has flag] do [h:action|move to objective] (80.000)[h:action|rocket boots] (81.000)\r\nOn: [h:trigger|very often] do [h:action|bg banner] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|enemy flagcarrier near] do [h:action|attack enemy flag carrier] (80.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|player has flag] do [h:action|move to objective] (80.000)[h:action|rocket boots] (81.000)\r\nOn: [h:trigger|very often] do [h:action|bg banner] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (208, 'trigger:low health', 1, 'low health [h:object|trigger] [c:low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid regrowth|regrowth] (72.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid regrowth|regrowth] (72.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:druid regrowth|regrowth] (72.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid regrowth|regrowth] (72.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid regrowth|regrowth] (72.000) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:druid regrowth|regrowth] (72.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (206, 'action:shaman cure disease on party', 1, 'cure disease on party [h:object|action] [c:do cure disease on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cure disease|cure disease] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]', '', '', '', '', '', '', '', '', '', 0), + (207, 'strategy:warsong', 1, 'warsong [h:object|strategy] [c:co ~warsong|toggle combat][c:nc ~warsong|toggle noncombat]\r\nThis strategy controls the behavior during a warsong gluch battleground like capturing/retaking flags and picking up buffs.\r\nRelated strategies:\r\n[h:strategy|battleground] [h:strategy|bg] \r\nCombat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|enemy flagcarrier near] do [h:action|attack enemy flag carrier] (80.000)\r\nOn: [h:trigger|player has flag] do [h:action|move to objective] (80.000)[h:action|rocket boots] (81.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|very often] do [h:action|bg banner] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger|bg active] do [h:action|check flag] (70.000)\r\nOn: [h:trigger|enemy flagcarrier near] do [h:action|attack enemy flag carrier] (80.000)\r\nOn: [h:trigger|player has flag] do [h:action|move to objective] (80.000)[h:action|rocket boots] (81.000)\r\nOn: [h:trigger|low health] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|low mana] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|often] do [h:action|use buff] (30.000)\r\nOn: [h:trigger|very often] do [h:action|bg banner] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (208, 'trigger:low health', 1, 'low health [h:object|trigger] [c:low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000)[h:action:druid frenzied regeneration|frenzied regeneration] (60.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000)[h:action:druid frenzied regeneration|frenzied regeneration] (60.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:druid frenzied regeneration|frenzied regeneration] (60.000) for [h:strategy:druid tank feral raid|tank feral raid]\r\nNon combat behavior:\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:druid regrowth|regrowth] (70.000) for [h:strategy:druid tank feral pvp|tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (209, 'chatfilter:rti', 1, 'rti [h:object|chatfilter]\r\nThis filter selects bots that are marked with or are targeting sonething marked with a raid target icon.\r\nExamples:\r\n@star: All bots that are marked with or are targeing something marked with star.\r\n@circle: All bots that are marked with or are targeing something marked with star.', '', '', '', '', '', '', '', '', '', 0), - (210, 'trigger:priest shadow word: pain on attacker', 1, 'shadow word: pain on attacker [h:object|trigger] [c:shadow word: pain on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (11.000) for [h:strategy:priest shadow aoe|shadow aoe]\r\nExecutes: [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (11.000) for [h:strategy:priest shadow aoe|shadow aoe]', '', '', '', '', '', '', '', '', '', 0), - (211, 'strategy:priest boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest inner focus|inner focus] do [h:action:priest inner focus|inner focus] (42.000)\r\nOn: [h:trigger:priest power infusion|power infusion] do [h:action:priest power infusion|power infusion] (41.000)', '', '', '', '', '', '', '', '', '', 0), + (210, 'trigger:priest shadow word: pain on attacker', 1, 'shadow word: pain on attacker [h:object|trigger] [c:shadow word: pain on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000) for [h:strategy:priest offdps pve|offdps pve]\r\nExecutes: [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000) for [h:strategy:priest aoe shadow pve|aoe shadow pve]\r\nExecutes: [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000) for [h:strategy:priest aoe shadow pvp|aoe shadow pvp]\r\nExecutes: [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000) for [h:strategy:priest aoe shadow raid|aoe shadow raid]\r\nExecutes: [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000) for [h:strategy:priest offdps pvp|offdps pvp]\r\nExecutes: [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000) for [h:strategy:priest offdps raid|offdps raid]', '', '', '', '', '', '', '', '', '', 0), + (211, 'strategy:priest boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (212, 'strategy:priest shadow debuff', 1, 'shadow debuff [h:object|strategy] [c:co ~shadow debuff|toggle combat][c:nc ~shadow debuff|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest devouring plague|devouring plague] do [h:action:priest devouring plague|devouring plague] (13.000)\r\nOn: [h:trigger:priest feedback|feedback] do [h:action:priest feedback|feedback] (80.000)\r\nOn: [h:trigger:priest hex of weakness|hex of weakness] do [h:action:priest hex of weakness|hex of weakness] (10.000)\r\nOn: [h:trigger:priest shadow word: pain|shadow word: pain] do [h:action:priest shadow word: pain|shadow word: pain] (12.000)\r\nOn: [h:trigger:priest vampiric touch|vampiric touch] do [h:action:priest vampiric touch|vampiric touch] (11.000)', '', '', '', '', '', '', '', '', '', 0), (213, 'action:taxi', 1, 'taxi [h:object|action] [c:do taxi|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|taxi] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|activate taxi] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|taxi done] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|taxi] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|activate taxi] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|taxi done] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|taxi] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|activate taxi] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|taxi done] with relevance (100.000) for [h:strategy|default]\r\nReaction behavior:\r\nTriggers from: [h:trigger|taxi] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (214, 'action:mage mage armor', 1, 'mage armor [h:object|action] [c:do mage armor|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage mage armor|mage armor] with relevance (19.000) for [h:strategy:mage bmana|bmana]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage mage armor|mage armor] with relevance (19.000) for [h:strategy:mage bmana|bmana]', '', '', '', '', '', '', '', '', '', 0), + (214, 'action:mage mage armor', 1, 'mage armor [h:object|action] [c:do mage armor|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage mage armor|mage armor] with relevance (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage mage armor|mage armor] with relevance (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage mage armor|mage armor] with relevance (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage mage armor|mage armor] with relevance (10.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage mage armor|mage armor] with relevance (10.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage mage armor|mage armor] with relevance (10.000) for [h:strategy:mage buff fire pve|buff fire pve]', '', '', '', '', '', '', '', '', '', 0), (215, 'trigger:priest my attacker count', 1, 'my attacker count [h:object|trigger] [c:my attacker count|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest fade|fade] (55.000) for [h:strategy:priest heal|heal]\r\nExecutes: [h:action:priest fade|fade] (55.000) for [h:strategy:priest shadow|shadow]\r\nExecutes: [h:action:priest fade|fade] (55.000) for [h:strategy:priest holy|holy]\r\nExecutes: [h:action:priest fade|fade] (55.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), (216, 'trigger:loot available', 1, 'loot available [h:object|trigger] [c:loot available|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight corpse explosion|corpse explosion] (11.000) for [h:strategy:deathknight unholy aoe|unholy aoe]', '', '', '', '', '', '', '', '', '', 0), (217, 'action:move to travel target', 1, 'move to travel target [h:object|action] [c:do move to travel target|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|far from travel target] with relevance (1.000) for [h:strategy|travel]\r\nTriggers from: [h:trigger|far from travel target] with relevance (1.000) for [h:strategy|travel once]', '', '', '', '', '', '', '', '', '', 0), - (218, 'action:dark portal azeroth', 1, 'dark portal azeroth [h:object|action] [c:do dark portal azeroth|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid buff|buff]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (219, 'strategy:priest buff', 1, 'buff [h:object|strategy] [c:co ~buff|toggle combat][c:nc ~buff|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:priest divine spirit on party|divine spirit on party] do [h:action:priest divine spirit on party|divine spirit on party] (13.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (10.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] do [h:action:priest power word: fortitude on party|power word: fortitude on party] (11.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:priest touch of weakness|touch of weakness] do [h:action:priest touch of weakness|touch of weakness] (10.000)\r\nOn: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] do [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (12.000)\r\nOn: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] do [h:action:priest prayer of spirit on party|prayer of spirit on party] (14.000)\r\nOn: [h:trigger:priest shadowguard|shadowguard] do [h:action:priest shadowguard|shadowguard] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)', '', '', '', '', '', '', '', '', '', 0), - (220, 'strategy:priest cc', 1, 'cc [h:object|strategy] [c:co ~cc|toggle combat][c:nc ~cc|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest psychic scream|psychic scream] (50.000)\r\nOn: [h:trigger:priest shackle undead|shackle undead] do [h:action:priest shackle undead|shackle undead] (31.000)', '', '', '', '', '', '', '', '', '', 0), - (221, 'trigger:paladin repentance', 1, 'repentance [h:object|trigger] [c:repentance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin repentance|repentance] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin repentance|repentance] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nExecutes: [h:action:paladin repentance|repentance] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (218, 'action:dark portal azeroth', 1, 'dark portal azeroth [h:object|action] [c:do dark portal azeroth|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:at dark portal azeroth|at dark portal azeroth] with relevance (1.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (219, 'strategy:priest buff', 1, 'buff [h:object|strategy] [c:co ~buff|toggle combat][c:nc ~buff|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (220, 'strategy:priest cc', 1, 'cc [h:object|strategy] [c:co ~cc|toggle combat][c:nc ~cc|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (221, 'trigger:paladin repentance', 1, 'repentance [h:object|trigger] [c:repentance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin repentance|repentance] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin repentance|repentance] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nExecutes: [h:action:paladin repentance|repentance] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), (222, 'trigger:shaman magma totem', 1, 'magma totem [h:object|trigger] [c:magma totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman magma totem|magma totem] (26.000) for [h:strategy:shaman melee aoe|melee aoe]', '', '', '', '', '', '', '', '', '', 0), (223, 'action:auto release', 1, 'auto release [h:object|action] [c:do auto release|execute]\r\n\r\nDead state behavior:\r\nTriggers from: [h:trigger|very often] with relevance (100.000) for [h:strategy|dead]', '', '', '', '', '', '', '', '', '', 0), - (224, 'trigger:deathknight bone shield', 1, 'bone shield [h:object|trigger] [c:bone shield|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight bone shield|bone shield] (11.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight bone shield|bone shield] (11.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight bone shield|bone shield] (11.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight bone shield|bone shield] (11.000) for [h:strategy:deathknight unholy|unholy]\r\nNon combat behavior:\r\nExecutes: [h:action:deathknight bone shield|bone shield] (21.000) for [h:strategy:deathknight nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (225, 'strategy:hunter aoe', 1, 'aoe [h:object|strategy] [c:co ~aoe|toggle combat][c:nc ~aoe|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter multi shot|multi shot] do [h:action:hunter multi-shot|multi-shot] (20.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter multi-shot|multi-shot] (20.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter volley|volley] (10.000)\r\nOn: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] do [h:action:hunter serpent sting on attacker|serpent sting on attacker] (17.000)\r\nOn: [h:trigger:hunter viper sting on attacker|viper sting on attacker] do [h:action:hunter viper sting on attacker|viper sting on attacker] (18.000)', '', '', '', '', '', '', '', '', '', 0), - (226, 'strategy:priest shadow', 1, 'shadow [h:object|strategy] [c:co ~shadow|toggle combat][c:nc ~shadow|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest chastise on snare target|chastise on snare target] do [h:action:priest chastise on snare target|chastise on snare target] (40.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest flash heal|flash heal] (70.000)[h:action:priest remove shadowform|remove shadowform] (72.000)[h:action:priest power word: shield|power word: shield] (71.000)[h:action:priest pain suppression|pain suppression] (91.000)[h:action:priest desperate prayer|desperate prayer] (90.000)\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest elune\'s grace|elune\'s grace] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (60.000)[h:action:priest power word: shield|power word: shield] (61.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:priest inner focus|inner focus] (42.000)[h:action:priest consume magic|consume magic] (10.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:priest greater heal|greater heal] (25.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:priest symbol of hope|symbol of hope] (90.000)[h:action:priest shadowfiend|shadowfiend] (21.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:priest fade|fade] (55.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (60.000)[h:action:priest power word: shield on party|power word: shield on party] (61.000)[h:action:priest remove shadowform|remove shadowform] (62.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:priest pain suppression|pain suppression] (90.000)\r\nOn: [h:trigger:priest shadowfiend|shadowfiend] do [h:action:priest shadowfiend|shadowfiend] (21.000)\r\nOn: [h:trigger:priest shadowform|shadowform] do [h:action:priest shadowform|shadowform] (30.000)\r\nOn: [h:trigger:priest silence|silence] do [h:action:priest silence|silence] (41.000)\r\nOn: [h:trigger:priest silence on enemy healer|silence on enemy healer] do [h:action:priest silence on enemy healer|silence on enemy healer] (40.000)\r\nOn: [h:trigger:priest vampiric embrace|vampiric embrace] do [h:action:priest vampiric embrace|vampiric embrace] (16.000)\r\nOn: [h:trigger:priest starshards|starshards] do [h:action:priest starshards|starshards] (15.000)\r\nOn: [h:trigger:priest target low health|target low health] do [h:action:priest shadow word: death|shadow word: death] (41.000)\r\nOn: [h:trigger:timer|timer] do [h:action:priest mind blast|mind blast] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:priest mana burn|mana burn] (20.000)\r\nDefault:[h:action:shoot|shoot] (1.000)', '', '', '', '', '', '', '', '', '', 0), + (224, 'trigger:deathknight bone shield', 1, 'bone shield [h:object|trigger] [c:bone shield|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight bone shield|bone shield] (11.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight bone shield|bone shield] (11.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight bone shield|bone shield] (11.000) for [h:strategy:deathknight unholy|unholy]\r\nExecutes: [h:action:deathknight bone shield|bone shield] (11.000) for [h:strategy:deathknight blood|blood]\r\nNon combat behavior:\r\nExecutes: [h:action:deathknight bone shield|bone shield] (21.000) for [h:strategy:deathknight nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (225, 'strategy:hunter aoe', 1, 'aoe [h:object|strategy] [c:co ~aoe|toggle combat][c:nc ~aoe|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (226, 'strategy:priest shadow', 1, 'shadow [h:object|strategy] [c:co ~shadow|toggle combat][c:nc ~shadow|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:priest update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:priest update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:priest update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:priest update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:priest update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:priest update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), (227, 'trigger:rpg wander', 1, 'rpg wander [h:object|trigger] [c:rpg wander|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg cancel] (1.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), (228, 'trigger:react', 1, 'react [h:object|trigger] [c:react|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|react] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|react] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|react] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|react] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (229, 'strategy:priest cure', 1, 'cure [h:object|strategy] [c:co ~cure|toggle combat][c:nc ~cure|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (230, 'trigger:give food', 1, 'give food [h:object|trigger] [c:give food|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:give food|give food] (12.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:give food|give food] (12.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:give food|give food] (12.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:give food|give food] (12.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:give food|give food] (12.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:give food|give food] (12.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:give food|give food] (12.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:give food|give food] (12.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:give food|give food] (12.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (229, 'strategy:priest cure', 1, 'cure [h:object|strategy] [c:co ~cure|toggle combat][c:nc ~cure|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (230, 'trigger:give food', 1, 'give food [h:object|trigger] [c:give food|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:give food|give food] (11.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:give food|give food] (11.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:give food|give food] (11.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:give food|give food] (11.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:give food|give food] (11.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:give food|give food] (11.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:give food|give food] (11.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:give food|give food] (11.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:give food|give food] (11.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (231, 'strategy:warlock nc', 1, 'nc [h:object|strategy] [c:co ~nc|toggle combat][c:nc ~nc|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warlock trigger|trigger] do [h:action:world buff|world buff] (1.000)\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (21.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (15.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)', '', '', '', '', '', '', '', '', '', 0), (232, 'trigger:not enough money', 1, 'not enough money [h:object|trigger] [c:not enough money|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|tell master] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|tell master] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|tell master] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (233, 'action:priest shackle undead', 1, 'shackle undead [h:object|action] [c:do shackle undead|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest shackle undead|shackle undead] with relevance (31.000) for [h:strategy:priest cc|cc]', '', '', '', '', '', '', '', '', '', 0), + (233, 'action:priest shackle undead', 1, 'shackle undead [h:object|action] [c:do shackle undead|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest shackle undead|shackle undead] with relevance (40.000) for [h:strategy:priest cc discipline pvp|cc discipline pvp]\r\nTriggers from: [h:trigger:priest shackle undead|shackle undead] with relevance (40.000) for [h:strategy:priest cc shadow raid|cc shadow raid]\r\nTriggers from: [h:trigger:priest shackle undead|shackle undead] with relevance (40.000) for [h:strategy:priest cc discipline raid|cc discipline raid]\r\nTriggers from: [h:trigger:priest shackle undead|shackle undead] with relevance (40.000) for [h:strategy:priest cc discipline pve|cc discipline pve]\r\nTriggers from: [h:trigger:priest shackle undead|shackle undead] with relevance (40.000) for [h:strategy:priest cc holy pve|cc holy pve]\r\nTriggers from: [h:trigger:priest shackle undead|shackle undead] with relevance (40.000) for [h:strategy:priest cc holy pvp|cc holy pvp]\r\nTriggers from: [h:trigger:priest shackle undead|shackle undead] with relevance (40.000) for [h:strategy:priest cc holy raid|cc holy raid]\r\nTriggers from: [h:trigger:priest shackle undead|shackle undead] with relevance (40.000) for [h:strategy:priest cc shadow pve|cc shadow pve]\r\nTriggers from: [h:trigger:priest shackle undead|shackle undead] with relevance (40.000) for [h:strategy:priest cc shadow pvp|cc shadow pvp]', '', '', '', '', '', '', '', '', '', 0), (234, 'strategy:priest nc', 1, 'nc [h:object|strategy] [c:co ~nc|toggle combat][c:nc ~nc|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:priest inner fire|inner fire] do [h:action:priest inner fire|inner fire] (10.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:lightwell|lightwell] (42.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest greater heal|greater heal] (70.000)\r\nOn: [h:trigger:priest divine spirit|divine spirit] do [h:action:priest divine spirit|divine spirit] (14.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:priest renew|renew] (41.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (1.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest greater heal on party|greater heal on party] (60.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:priest remove shadowform|remove shadowform] (51.000)[h:action:priest resurrection|resurrection] (50.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest renew on party|renew on party] (40.000)\r\nOn: [h:trigger:priest power word: fortitude|power word: fortitude] do [h:action:priest power word: fortitude|power word: fortitude] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)', '', '', '', '', '', '', '', '', '', 0), (235, 'trigger:rpg train', 1, 'rpg train [h:object|trigger] [c:rpg train|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg train] (1.080) for [h:strategy|rpg maintenance]', '', '', '', '', '', '', '', '', '', 0), - (236, 'strategy:priest pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)', '', '', '', '', '', '', '', '', '', 0), - (237, 'action:shaman wind shear on enemy healer', 1, 'wind shear on enemy healer [h:object|action] [c:do wind shear on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), + (236, 'strategy:priest pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull start|pull start] (30.000)[h:action:pull action|pull action] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull start|pull start] (30.000)[h:action:pull action|pull action] (30.000)', '', '', '', '', '', '', '', '', '', 0), + (237, 'action:shaman wind shear on enemy healer', 1, 'wind shear on enemy healer [h:object|action] [c:do wind shear on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman cc enhancement pve|cc enhancement pve]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman cc elemental raid|cc elemental raid]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman cc elemental pve|cc elemental pve]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman cc elemental pvp|cc elemental pvp]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman cc enhancement pvp|cc enhancement pvp]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman cc enhancement raid|cc enhancement raid]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman cc restoration pve|cc restoration pve]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman cc restoration pvp|cc restoration pvp]\r\nTriggers from: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] with relevance (40.000) for [h:strategy:shaman cc restoration raid|cc restoration raid]', '', '', '', '', '', '', '', '', '', 0), (238, 'strategy:priest react', 1, 'react [h:object|strategy] [c:co ~react|toggle combat][c:nc ~react|toggle noncombat]\r\n\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (239, 'action:check objective', 1, 'check objective [h:object|action] [c:do check objective|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|very often] with relevance (10.000) for [h:strategy|battleground]', '', '', '', '', '', '', '', '', '', 0), (240, 'action:priest shadowfiend', 1, 'shadowfiend [h:object|action] [c:do shadowfiend|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (21.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:priest shadowfiend|shadowfiend] with relevance (21.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (20.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:priest shadowfiend|shadowfiend] with relevance (20.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (21.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:priest shadowfiend|shadowfiend] with relevance (21.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), @@ -264,31 +264,31 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (244, 'trigger:join', 1, 'join [h:object|trigger] [c:join|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|join] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|join] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|join] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|join] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (245, 'strategy:mage fire aoe', 1, 'fire aoe [h:object|strategy] [c:co ~fire aoe|toggle combat][c:nc ~fire aoe|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage living bomb|living bomb] do [h:action:mage living bomb|living bomb] (25.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:mage flamestrike|flamestrike] (20.000)', '', '', '', '', '', '', '', '', '', 0), (246, 'strategy:warrior aoe', 1, 'aoe [h:object|strategy] [c:co ~aoe|toggle combat][c:nc ~aoe|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (247, 'trigger:warrior bloodthirst', 1, 'bloodthirst [h:object|trigger] [c:bloodthirst|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior bloodthirst|bloodthirst] (13.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior bloodthirst|bloodthirst] (13.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior bloodthirst|bloodthirst] (13.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), + (247, 'trigger:warrior bloodthirst', 1, 'bloodthirst [h:object|trigger] [c:bloodthirst|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior bloodthirst|bloodthirst] (20.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior bloodthirst|bloodthirst] (20.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:warrior bloodthirst|bloodthirst] (20.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior bloodthirst|bloodthirst] (13.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior bloodthirst|bloodthirst] (13.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior bloodthirst|bloodthirst] (13.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), (248, 'strategy:warrior react', 1, 'react [h:object|strategy] [c:co ~react|toggle combat][c:nc ~react|toggle noncombat]\r\n\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (60.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (60.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (60.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (60.000)', '', '', '', '', '', '', '', '', '', 0), - (249, 'strategy:warrior pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)', '', '', '', '', '', '', '', '', '', 0), - (250, 'action:paladin lay on hands', 1, 'lay on hands [h:object|action] [c:do lay on hands|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (251, 'strategy:hunter boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter bestial wrath|bestial wrath] do [h:action:hunter bestial wrath|bestial wrath] (16.000)\r\nOn: [h:trigger:hunter rapid fire|rapid fire] do [h:action:hunter rapid fire|rapid fire] (16.000)', '', '', '', '', '', '', '', '', '', 0), - (252, 'strategy:warrior arms', 1, 'arms [h:object|strategy] [c:co ~arms|toggle combat][c:nc ~arms|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (249, 'strategy:warrior pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull start|pull start] (30.000)[h:action:pull action|pull action] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull start|pull start] (30.000)[h:action:pull action|pull action] (30.000)', '', '', '', '', '', '', '', '', '', 0), + (250, 'action:paladin lay on hands', 1, 'lay on hands [h:object|action] [c:do lay on hands|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (251, 'strategy:hunter boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (252, 'strategy:warrior arms', 1, 'arms [h:object|strategy] [c:co ~arms|toggle combat][c:nc ~arms|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), (253, 'strategy:paladin rfire', 1, 'rfire [h:object|strategy] [c:co ~rfire|toggle combat][c:nc ~rfire|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin fire resistance aura|fire resistance aura] (12.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin fire resistance aura|fire resistance aura] (12.000)', '', '', '', '', '', '', '', '', '', 0), (254, 'action:warrior challenging shout', 1, 'challenging shout [h:object|action] [c:do challenging shout|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (21.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (21.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (21.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), - (255, 'strategy:warrior fury', 1, 'fury [h:object|strategy] [c:co ~fury|toggle combat][c:nc ~fury|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (255, 'strategy:warrior fury', 1, 'fury [h:object|strategy] [c:co ~fury|toggle combat][c:nc ~fury|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), (256, 'trigger:repair', 1, 'repair [h:object|trigger] [c:repair|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|repair] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|repair] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|repair] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|repair] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (257, 'action:follow chat shortcut', 1, 'follow chat shortcut [h:object|action] [c:do follow chat shortcut|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|follow] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (258, 'trigger:no rti target', 1, 'no rti target [h:object|trigger] [c:no rti target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|mark rti] (90.000) for [h:strategy|mark rti]', '', '', '', '', '', '', '', '', '', 0), - (259, 'trigger:complete quest', 1, 'complete quest [h:object|trigger] [c:complete quest|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|talk to quest giver] (100.000)[h:action|accept all quests] (100.000) for [h:strategy|accept all quests]\r\nExecutes: [h:action|talk to quest giver] (100.000) for [h:strategy|quest]', '', '', '', '', '', '', '', '', '', 0), + (259, 'trigger:complete quest', 1, 'complete quest [h:object|trigger] [c:complete quest|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|accept all quests] (100.000)[h:action|talk to quest giver] (100.000) for [h:strategy|accept all quests]\r\nExecutes: [h:action|talk to quest giver] (100.000) for [h:strategy|quest]', '', '', '', '', '', '', '', '', '', 0), (260, 'trigger:priest shadowfiend', 1, 'shadowfiend [h:object|trigger] [c:shadowfiend|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest shadowfiend|shadowfiend] (21.000) for [h:strategy:priest shadow|shadow]\r\nExecutes: [h:action:priest shadowfiend|shadowfiend] (20.000) for [h:strategy:priest holy|holy]\r\nExecutes: [h:action:priest shadowfiend|shadowfiend] (21.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (261, 'trigger:hunter feign death', 1, 'feign death [h:object|trigger] [c:feign death|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter freezing trap|freezing trap] (63.000)[h:action:hunter remove feign death|remove feign death] (63.000) for [h:strategy:hunter dps|dps]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter freezing trap|freezing trap] (90.000)[h:action:hunter remove feign death|remove feign death] (91.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (261, 'trigger:hunter feign death', 1, 'feign death [h:object|trigger] [c:feign death|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff marksmanship pve|buff marksmanship pve]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff survival raid|buff survival raid]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff beast mastery raid|buff beast mastery raid]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff beast mastery pvp|buff beast mastery pvp]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff beast mastery pve|buff beast mastery pve]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff marksmanship pvp|buff marksmanship pvp]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff marksmanship raid|buff marksmanship raid]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff survival pve|buff survival pve]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff survival pvp|buff survival pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff marksmanship pve|buff marksmanship pve]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff survival raid|buff survival raid]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff beast mastery raid|buff beast mastery raid]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff beast mastery pvp|buff beast mastery pvp]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff beast mastery pve|buff beast mastery pve]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff marksmanship pvp|buff marksmanship pvp]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff marksmanship raid|buff marksmanship raid]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff survival pve|buff survival pve]\r\nExecutes: [h:action:hunter remove feign death|remove feign death] (20.000) for [h:strategy:hunter buff survival pvp|buff survival pvp]', '', '', '', '', '', '', '', '', '', 0), (262, 'trigger:will of the forsaken', 1, 'will of the forsaken [h:object|trigger] [c:will of the forsaken|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|will of the forsaken] (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nExecutes: [h:action|will of the forsaken] (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (263, 'strategy:paladin baoe', 1, 'baoe [h:object|strategy] [c:co ~baoe|toggle combat][c:nc ~baoe|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin retribution aura|retribution aura] (12.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin retribution aura|retribution aura] (12.000)', '', '', '', '', '', '', '', '', '', 0), - (264, 'strategy:paladin boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin divine favor|divine favor] do [h:action:paladin divine favor|divine favor] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (264, 'strategy:paladin boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (265, 'trigger:s', 1, 's [h:object|trigger] [c:s|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|sell] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (266, 'action:druid ferocious bite', 1, 'ferocious bite [h:object|action] [c:do ferocious bite|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (24.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (24.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), + (266, 'action:druid ferocious bite', 1, 'ferocious bite [h:object|action] [c:do ferocious bite|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (13.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (13.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (13.000) for [h:strategy:druid dps feral raid|dps feral raid]', '', '', '', '', '', '', '', '', '', 0), (267, 'trigger:warrior overpower', 1, 'overpower [h:object|trigger] [c:overpower|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior overpower|overpower] (20.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:warrior overpower|overpower] (20.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior overpower|overpower] (20.000) for [h:strategy:warrior arms raid|arms raid]', '', '', '', '', '', '', '', '', '', 0), (268, 'strategy:paladin bconcentration', 1, 'bconcentration [h:object|strategy] [c:co ~bconcentration|toggle combat][c:nc ~bconcentration|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin concentration aura|concentration aura] (12.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin concentration aura|concentration aura] (12.000)', '', '', '', '', '', '', '', '', '', 0), - (269, 'trigger:warlock target low health', 1, 'target low health [h:object|trigger] [c:target low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), + (269, 'trigger:warlock target low health', 1, 'target low health [h:object|trigger] [c:target low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock shadowburn|shadowburn] (20.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), (270, 'trigger:destroy', 1, 'destroy [h:object|trigger] [c:destroy|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|destroy] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|destroy] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|destroy] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|destroy] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (271, 'action:paladin redemption', 1, 'redemption [h:object|action] [c:do redemption|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (271, 'action:paladin redemption', 1, 'redemption [h:object|action] [c:do redemption|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), (272, 'action:change strategy from all', 1, 'change strategy from all [h:object|action] [c:do change strategy from all|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|all] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|all] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|all] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|all] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (273, 'strategy:paladin bthreat', 1, 'bthreat [h:object|strategy] [c:co ~bthreat|toggle combat][c:nc ~bthreat|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin righteous fury|righteous fury] do [h:action:paladin righteous fury|righteous fury] (28.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin righteous fury|righteous fury] do [h:action:paladin righteous fury|righteous fury] (28.000)', '', '', '', '', '', '', '', '', '', 0), (274, 'strategy:paladin bkings', 1, 'bkings [h:object|strategy] [c:co ~bkings|toggle combat][c:nc ~bkings|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin blessing of kings on party|blessing of kings on party] (11.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin blessing of kings on party|blessing of kings on party] (11.000)', '', '', '', '', '', '', '', '', '', 0), @@ -297,27 +297,27 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (277, 'trigger:rpg start quest', 1, 'rpg start quest [h:object|trigger] [c:rpg start quest|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg start quest] (1.080) for [h:strategy|rpg quest]', '', '', '', '', '', '', '', '', '', 0), (278, 'trigger:rti', 1, 'rti [h:object|trigger] [c:rti|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|rti] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|rti] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|rti] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|rti] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (279, 'strategy:paladin bmight', 1, 'bmight [h:object|strategy] [c:co ~bmight|toggle combat][c:nc ~bmight|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin blessing of might on party|blessing of might on party] (11.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin blessing of might on party|blessing of might on party] (11.000)', '', '', '', '', '', '', '', '', '', 0), - (280, 'action:warlock shadow bolt', 1, 'shadow bolt [h:object|action] [c:do shadow bolt|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nDefault action with relevance (1.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nDefault action with relevance (1.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nDefault action with relevance (1.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nDefault action with relevance (1.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nDefault action with relevance (1.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock backlash|backlash] with relevance (22.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:warlock backlash|backlash] with relevance (22.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nDefault action with relevance (1.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock backlash|backlash] with relevance (22.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), - (281, 'action:priest elune\'s grace', 1, 'elune\'s grace [h:object|action] [c:do elune\'s grace|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (90.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (90.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (90.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (90.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (280, 'action:warlock shadow bolt', 1, 'shadow bolt [h:object|action] [c:do shadow bolt|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nDefault action with relevance (1.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nDefault action with relevance (1.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nDefault action with relevance (1.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nDefault action with relevance (1.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nDefault action with relevance (1.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nDefault action with relevance (1.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nDefault action with relevance (1.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nDefault action with relevance (1.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock shadow trance|shadow trance] with relevance (22.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nDefault action with relevance (1.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (281, 'action:priest elune\'s grace', 1, 'elune\'s grace [h:object|action] [c:do elune\'s grace|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (23.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (23.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (23.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (23.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (23.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (23.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (23.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (23.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (23.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (282, 'trigger:warrior berserker rage', 1, 'berserker rage [h:object|trigger] [c:berserker rage|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (22.000) for [h:strategy:warrior fury|fury]', '', '', '', '', '', '', '', '', '', 0), (283, 'action:set Stance', 1, 'set Stance [h:object|action] [c:do set Stance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|stance] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|stance] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|stance] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|stance] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (284, 'strategy:shaman react', 1, 'react [h:object|strategy] [c:co ~react|toggle combat][c:nc ~react|toggle noncombat]\r\n\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (60.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (60.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (60.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (60.000)', '', '', '', '', '', '', '', '', '', 0), (285, 'strategy:paladin rshadow', 1, 'rshadow [h:object|strategy] [c:co ~rshadow|toggle combat][c:nc ~rshadow|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin shadow resistance aura|shadow resistance aura] (12.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin shadow resistance aura|shadow resistance aura] (12.000)', '', '', '', '', '', '', '', '', '', 0), (286, 'value:cc target', 1, 'cc target [h:object|value] [c:cdebug values cc target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (287, 'strategy:hunter nc', 1, 'nc [h:object|strategy] [c:co ~nc|toggle combat][c:nc ~nc|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:hunter item count|item count] do [h:action:hunter say::low ammo|say::low ammo] (10.000)\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter freezing trap|freezing trap] (90.000)[h:action:hunter remove feign death|remove feign death] (91.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (1.000)\r\nOn: [h:trigger:hunter attackers count|attackers count] do [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (91.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:hunter aspect of the cheetah|aspect of the cheetah] (91.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:hunter trueshot aura|trueshot aura] do [h:action:hunter trueshot aura|trueshot aura] (2.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)', '', '', '', '', '', '', '', '', '', 0), - (288, 'action:warlock rain of fire', 1, 'rain of fire [h:object|action] [c:do rain of fire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe demonology pvp|aoe demonology pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe demonology raid|aoe demonology raid]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe destruction pve|aoe destruction pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe destruction raid|aoe destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (288, 'action:warlock rain of fire', 1, 'rain of fire [h:object|action] [c:do rain of fire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe demonology pvp|aoe demonology pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe demonology raid|aoe demonology raid]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe destruction pve|aoe destruction pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (20.000) for [h:strategy:warlock aoe destruction raid|aoe destruction raid]', '', '', '', '', '', '', '', '', '', 0), (289, 'strategy:paladin heal', 1, 'heal [h:object|strategy] [c:co ~heal|toggle combat][c:nc ~heal|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:paladin flash of light|flash of light] (62.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of light|seal of light] (20.000)\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin blessing of wisdom|blessing of wisdom] (29.000)[h:action:paladin blessing of sanctuary|blessing of sanctuary] (29.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (1.000)\r\nOn: [h:trigger:paladin divine illumination|divine illumination] do [h:action:paladin divine illumination|divine illumination] (25.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:paladin judgement of light|judgement of light] (30.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:paladin judgement|judgement] (30.000)\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (91.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy shock|holy shock] (73.000)[h:action:paladin divine shield|divine shield] (82.000)[h:action:paladin holy light|holy light] (72.000)[h:action:paladin divine favor|divine favor] (74.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin divine favor|divine favor] (21.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:paladin flash of light|flash of light] (72.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy shock on party|holy shock on party] (76.000)[h:action:paladin holy light on party|holy light on party] (75.000)[h:action:paladin divine favor|divine favor] (77.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:adamantite grenade|adamantite grenade] (61.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin concentration aura|concentration aura] (20.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:paladin flash of light on party|flash of light on party] (71.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:paladin flash of light on party|flash of light on party] (61.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (92.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (71.000)', '', '', '', '', '', '', '', '', '', 0), (290, 'strategy:paladin bwisdom', 1, 'bwisdom [h:object|strategy] [c:co ~bwisdom|toggle combat][c:nc ~bwisdom|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin blessing of wisdom on party|blessing of wisdom on party] (11.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin blessing of wisdom on party|blessing of wisdom on party] (11.000)', '', '', '', '', '', '', '', '', '', 0), (291, 'strategy:paladin cc', 1, 'cc [h:object|strategy] [c:co ~cc|toggle combat][c:nc ~cc|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (292, 'trigger:druid bash', 1, 'bash [h:object|trigger] [c:bash|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid bash|bash] (42.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid bash|bash] (42.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (292, 'trigger:druid bash', 1, 'bash [h:object|trigger] [c:bash|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid bash|bash] (40.000) for [h:strategy:druid cc tank feral pvp|cc tank feral pvp]\r\nExecutes: [h:action:druid bash|bash] (40.000) for [h:strategy:druid cc tank feral pve|cc tank feral pve]\r\nExecutes: [h:action:druid bash|bash] (40.000) for [h:strategy:druid cc tank feral raid|cc tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (293, 'trigger:q', 1, 'q [h:object|trigger] [c:q|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|query item usage] (100.000)[h:action|query quest] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (294, 'strategy:paladin cure', 1, 'cure [h:object|strategy] [c:co ~cure|toggle combat][c:nc ~cure|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (295, 'strategy:paladin dps', 1, 'dps [h:object|strategy] [c:co ~dps|toggle combat][c:nc ~dps|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin blessing of might|blessing of might] (29.000)\r\nOn: [h:trigger:paladin the art of war|the art of war] do [h:action:paladin exorcism|exorcism] (22.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (1.000)\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:paladin consecration|consecration] (40.000)\r\nOn: [h:trigger:paladin enemy out of melee range|enemy out of melee range] do [h:action:adamantite grenade|adamantite grenade] (20.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (41.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (91.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:paladin judgement|judgement] do [h:action:paladin judgement|judgement] (30.000)\r\nOn: [h:trigger:paladin judgement of wisdom|judgement of wisdom] do [h:action:paladin judgement of wisdom|judgement of wisdom] (30.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:paladin avenging wrath|avenging wrath] (29.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin divine shield|divine shield] (82.000)[h:action:paladin holy light|holy light] (82.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin seal of wisdom|seal of wisdom] (40.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:paladin consecration|consecration] (21.000)[h:action:paladin divine storm|divine storm] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:adamantite grenade|adamantite grenade] (61.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin sanctity aura|sanctity aura] (40.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (92.000)\r\nOn: [h:trigger:paladin repentance|repentance] do [h:action:paladin repentance|repentance] (42.000)\r\nOn: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] do [h:action:paladin repentance on enemy healer|repentance on enemy healer] (42.000)\r\nOn: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] do [h:action:paladin repentance on snare target|repentance on snare target] (42.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (71.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of command|seal of command] (40.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (41.000)\r\nDefault:[h:action:paladin crusader strike|crusader strike] (11.000)', '', '', '', '', '', '', '', '', '', 0), (296, 'strategy:paladin nc', 1, 'nc [h:object|strategy] [c:co ~nc|toggle combat][c:nc ~nc|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:medium health|medium health] do [h:action:paladin flash of light|flash of light] (25.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (40.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:paladin flash of light|flash of light] (23.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (50.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (1.000)\r\nOn: [h:trigger:paladin trigger|trigger] do [h:action:world buff|world buff] (1.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:paladin flash of light on party|flash of light on party] (24.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (30.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:paladin flash of light on party|flash of light on party] (26.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)', '', '', '', '', '', '', '', '', '', 0), - (297, 'trigger:low mana', 1, 'low mana [h:object|trigger] [c:low mana|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid innervate|innervate] (25.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid innervate|innervate] (25.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:druid innervate|innervate] (25.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid innervate|innervate] (25.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid innervate|innervate] (25.000) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:druid innervate|innervate] (25.000) for [h:strategy:druid bear|bear]\r\nNon combat behavior:\r\nExecutes: [h:action:druid innervate|innervate] (95.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (298, 'trigger:deathknight icy touch on attacker', 1, 'icy touch on attacker [h:object|trigger] [c:icy touch on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (299, 'action:druid moonfire', 1, 'moonfire [h:object|action] [c:do moonfire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid moonfire|moonfire] with relevance (14.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), - (300, 'action:druid regrowth on party', 1, 'regrowth on party [h:object|action] [c:do regrowth on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (82.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (82.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (71.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (82.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (82.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (82.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (71.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (82.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (297, 'trigger:low mana', 1, 'low mana [h:object|trigger] [c:low mana|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock dark pact|dark pact] (22.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock dark pact|dark pact] (22.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock dark pact|dark pact] (22.000) for [h:strategy:warlock affliction pvp|affliction pvp]', '', '', '', '', '', '', '', '', '', 0), + (298, 'trigger:deathknight icy touch on attacker', 1, 'icy touch on attacker [h:object|trigger] [c:icy touch on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight unholy|unholy]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (299, 'action:druid moonfire', 1, 'moonfire [h:object|action] [c:do moonfire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid moonfire|moonfire] with relevance (11.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:druid moonfire|moonfire] with relevance (11.000) for [h:strategy:druid balance pvp|balance pvp]', '', '', '', '', '', '', '', '', '', 0), + (300, 'action:druid regrowth on party', 1, 'regrowth on party [h:object|action] [c:do regrowth on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid offheal raid|offheal raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid offheal raid|offheal raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:druid restoration raid|restoration raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid offheal raid|offheal raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), (301, 'strategy:paladin react', 1, 'react [h:object|strategy] [c:co ~react|toggle combat][c:nc ~react|toggle noncombat]\r\n\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (60.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (60.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (60.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (60.000)', '', '', '', '', '', '', '', '', '', 0), (302, 'strategy:paladin rfrost', 1, 'rfrost [h:object|strategy] [c:co ~rfrost|toggle combat][c:nc ~rfrost|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin frost resistance aura|frost resistance aura] (12.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin frost resistance aura|frost resistance aura] (12.000)', '', '', '', '', '', '', '', '', '', 0), (303, 'strategy:paladin tank', 1, 'tank [h:object|strategy] [c:co ~tank|toggle combat][c:nc ~tank|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin avenger\'s shield|avenger\'s shield] do [h:action:paladin avenger\'s shield|avenger\'s shield] (27.000)\r\nOn: [h:trigger:paladin judgement of light|judgement of light] do [h:action:paladin judgement of light|judgement of light] (30.000)\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin blessing of sanctuary|blessing of sanctuary] (29.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (41.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (1.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:paladin consecration|consecration] (50.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (91.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:paladin holy shield|holy shield] do [h:action:paladin holy shield|holy shield] (27.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:paladin judgement|judgement] do [h:action:paladin judgement|judgement] (30.000)[h:action:paladin exorcism|exorcism] (29.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:paladin hammer of the righteous|hammer of the righteous] (28.000)[h:action:paladin avenger\'s shield|avenger\'s shield] (27.000)[h:action:paladin avenging wrath|avenging wrath] (29.000)\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:paladin hand of reckoning|hand of reckoning] (27.000)[h:action:paladin exorcism|exorcism] (28.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin divine shield|divine shield] (82.000)[h:action:paladin holy light|holy light] (82.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin seal of wisdom|seal of wisdom] (40.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:paladin judgement of wisdom|judgement of wisdom] (30.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:adamantite grenade|adamantite grenade] (61.000)[h:action:goblin sapper|goblin sapper] (28.000)[h:action:oil of immolation|oil of immolation] (29.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:paladin paladin aura|paladin aura] do [h:action:paladin retribution aura|retribution aura] (40.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (92.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (71.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of vengeance|seal of vengeance] (40.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (80.000)\r\nDefault:[h:action:melee|melee] (10.000)', '', '', '', '', '', '', '', '', '', 0), @@ -325,30 +325,30 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (305, 'strategy:shaman bmana', 1, 'bmana [h:object|strategy] [c:co ~bmana|toggle combat][c:nc ~bmana|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (22.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (22.000)', '', '', '', '', '', '', '', '', '', 0), (306, 'action:hunter scatter shot on snare target', 1, 'scatter shot on snare target [h:object|action] [c:do scatter shot on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter scatter shot on snare target|scatter shot on snare target] with relevance (61.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (307, 'strategy:deathknight bdps', 1, 'bdps [h:object|strategy] [c:co ~bdps|toggle combat][c:nc ~bdps|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:deathknight improved icy talons|improved icy talons] do [h:action:deathknight improved icy talons|improved icy talons] (19.000)\r\nNon combat behavior:\r\nOn: [h:trigger:deathknight improved icy talons|improved icy talons] do [h:action:deathknight improved icy talons|improved icy talons] (19.000)', '', '', '', '', '', '', '', '', '', 0), - (308, 'trigger:priest devouring plague', 1, 'devouring plague [h:object|trigger] [c:devouring plague|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest devouring plague|devouring plague] (13.000) for [h:strategy:priest shadow debuff|shadow debuff]\r\nExecutes: [h:action:priest devouring plague|devouring plague] (13.000) for [h:strategy:priest shadow debuff|shadow debuff]', '', '', '', '', '', '', '', '', '', 0), + (308, 'trigger:priest devouring plague', 1, 'devouring plague [h:object|trigger] [c:devouring plague|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest devouring plague|devouring plague] (12.000) for [h:strategy:priest shadow pve|shadow pve]\r\nExecutes: [h:action:priest devouring plague|devouring plague] (12.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nExecutes: [h:action:priest devouring plague|devouring plague] (12.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), (309, 'trigger:ss', 1, 'ss [h:object|trigger] [c:ss|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|skip spells list] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|skip spells list] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|skip spells list] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|skip spells list] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (310, 'strategy:hunter pet', 1, 'pet [h:object|strategy] [c:co ~pet|toggle combat][c:nc ~pet|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter revive pet|revive pet] (1.000)\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter mend pet|mend pet] (2.000)\r\nOn: [h:trigger:no pet|no pet] do [h:action:hunter call pet|call pet] (1.000)\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter feed pet|feed pet] (2.000)', '', '', '', '', '', '', '', '', '', 0), - (311, 'strategy:deathknight blood', 1, 'blood [h:object|strategy] [c:co ~blood|toggle combat][c:nc ~blood|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] do [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000)\r\nOn: [h:trigger:deathknight blood tap|blood tap] do [h:action:deathknight blood tap|blood tap] (25.000)\r\nOn: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nOn: [h:trigger:critical aoe heal|critical aoe heal] do [h:action:deathknight anti magic zone|anti magic zone] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:deathknight bone shield|bone shield] do [h:action:deathknight bone shield|bone shield] (11.000)\r\nOn: [h:trigger:deathknight plague strike|plague strike] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:deathknight death coil|death coil] do [h:action:deathknight death coill|death coill] (13.000)\r\nOn: [h:trigger:deathknight blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:deathknight greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:deathknight horn of winter|horn of winter] do [h:action:deathknight horn of winter|horn of winter] (11.000)\r\nOn: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:deathknight icy touch|icy touch] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:deathknight dark command|dark command] (23.000)\r\nOn: [h:trigger:low health|low health] do [h:action:deathknight icebound fortitude|icebound fortitude] (25.000)[h:action:deathknight rune tap|rune tap] (24.000)[h:action:deathknight blood tap|blood tap] (25.000)[h:action:deathknight death strike|death strike] (24.000)[h:action:deathknight vampiric blood|vampiric blood] (23.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:deathknight death strike|death strike] (13.000)[h:action:deathknight rune tap|rune tap] (14.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight pestilence|pestilence] (14.000)[h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight howling blast|howling blast] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight mind freeze|mind freeze] do [h:action:deathknight mind freeze|mind freeze] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:no pet|no pet] do [h:action:deathknight raise dead|raise dead] (15.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nDefault:[h:action:melee|melee] (12.000)[h:action:deathknight death strike|death strike] (14.000)[h:action:deathknight heart strike|heart strike] (15.000)[h:action:deathknight rune strike|rune strike] (13.000)', '', '', '', '', '', '', '', '', '', 0), + (310, 'strategy:hunter pet', 1, 'pet [h:object|strategy] [c:co ~pet|toggle combat][c:nc ~pet|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter mend pet|mend pet] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter revive pet|revive pet] (11.000)\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter mend pet|mend pet] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:initialize pet|initialize pet] (11.000)\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter feed pet|feed pet] (11.000)\r\nOn: [h:trigger:no pet|no pet] do [h:action:hunter call pet|call pet] (12.000)', '', '', '', '', '', '', '', '', '', 0), + (311, 'strategy:deathknight blood', 1, 'blood [h:object|strategy] [c:co ~blood|toggle combat][c:nc ~blood|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:deathknight blood tap|blood tap] do [h:action:deathknight blood tap|blood tap] (25.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:deathknight icebound fortitude|icebound fortitude] (25.000)[h:action:deathknight rune tap|rune tap] (24.000)[h:action:deathknight vampiric blood|vampiric blood] (23.000)[h:action:deathknight blood tap|blood tap] (25.000)[h:action:deathknight death strike|death strike] (24.000)\r\nOn: [h:trigger:deathknight bone shield|bone shield] do [h:action:deathknight bone shield|bone shield] (11.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:medium health|medium health] do [h:action:deathknight death strike|death strike] (13.000)[h:action:deathknight rune tap|rune tap] (14.000)\r\nOn: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] do [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nDefault:[h:action:deathknight death strike|death strike] (14.000)[h:action:melee|melee] (12.000)[h:action:deathknight heart strike|heart strike] (15.000)[h:action:deathknight rune strike|rune strike] (13.000)\r\nOn: [h:trigger:critical aoe heal|critical aoe heal] do [h:action:deathknight anti magic zone|anti magic zone] (91.000)\r\nOn: [h:trigger:deathknight death coil|death coil] do [h:action:deathknight death coill|death coill] (13.000)\r\nOn: [h:trigger:deathknight greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:deathknight horn of winter|horn of winter] do [h:action:deathknight horn of winter|horn of winter] (11.000)\r\nOn: [h:trigger:deathknight icy touch|icy touch] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:deathknight dark command|dark command] (23.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight howling blast|howling blast] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight mind freeze|mind freeze] do [h:action:deathknight mind freeze|mind freeze] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:no pet|no pet] do [h:action:deathknight raise dead|raise dead] (15.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:deathknight plague strike|plague strike] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)', '', '', '', '', '', '', '', '', '', 0), (312, 'trigger:guild demote', 1, 'guild demote [h:object|trigger] [c:guild demote|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|guild demote] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|guild demote] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|guild demote] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|guild demote] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (313, 'trigger:hunter aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter multi-shot|multi-shot] (20.000) for [h:strategy:hunter aoe|aoe]\r\nExecutes: [h:action:hunter frost trap|frost trap] (21.000)[h:action:hunter explosive trap|explosive trap] (21.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), + (313, 'trigger:hunter aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter feign death|feign death] (40.000) for [h:strategy:hunter aoe marksmanship raid|aoe marksmanship raid]\r\nExecutes: [h:action:hunter feign death|feign death] (40.000) for [h:strategy:hunter aoe marksmanship pve|aoe marksmanship pve]\r\nExecutes: [h:action:hunter feign death|feign death] (40.000) for [h:strategy:hunter aoe beast mastery pve|aoe beast mastery pve]\r\nExecutes: [h:action:hunter feign death|feign death] (40.000) for [h:strategy:hunter aoe beast mastery pvp|aoe beast mastery pvp]\r\nExecutes: [h:action:hunter feign death|feign death] (40.000) for [h:strategy:hunter aoe beast mastery raid|aoe beast mastery raid]\r\nExecutes: [h:action:hunter feign death|feign death] (40.000) for [h:strategy:hunter aoe survival pve|aoe survival pve]\r\nExecutes: [h:action:hunter feign death|feign death] (40.000) for [h:strategy:hunter aoe marksmanship pvp|aoe marksmanship pvp]\r\nExecutes: [h:action:hunter feign death|feign death] (40.000) for [h:strategy:hunter aoe survival pvp|aoe survival pvp]\r\nExecutes: [h:action:hunter feign death|feign death] (40.000) for [h:strategy:hunter aoe survival raid|aoe survival raid]', '', '', '', '', '', '', '', '', '', 0), (314, 'action:bg status', 1, 'bg status [h:object|action] [c:do bg status|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|bg status] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|bg status] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|bg status] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (315, 'trigger:gb', 1, 'gb [h:object|trigger] [c:gb|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|guild bank] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|guild bank] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|guild bank] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|guild bank] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (316, 'strategy:deathknight react', 1, 'react [h:object|strategy] [c:co ~react|toggle combat][c:nc ~react|toggle noncombat]\r\n\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (317, 'strategy:deathknight frost', 1, 'frost [h:object|strategy] [c:co ~frost|toggle combat][c:nc ~frost|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:critical aoe heal|critical aoe heal] do [h:action:deathknight anti magic zone|anti magic zone] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:deathknight bone shield|bone shield] do [h:action:deathknight bone shield|bone shield] (11.000)\r\nOn: [h:trigger:deathknight plague strike|plague strike] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:deathknight horn of winter|horn of winter] do [h:action:deathknight horn of winter|horn of winter] (11.000)\r\nOn: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:deathknight death coil|death coil] do [h:action:deathknight death coill|death coill] (13.000)\r\nOn: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] do [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000)\r\nOn: [h:trigger:deathknight icy touch|icy touch] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:deathknight icebound fortitude|icebound fortitude] (25.000)[h:action:deathknight rune tap|rune tap] (24.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:deathknight death strike|death strike] (13.000)[h:action:deathknight rune tap|rune tap] (14.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight pestilence|pestilence] (14.000)[h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight howling blast|howling blast] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight mind freeze|mind freeze] do [h:action:deathknight mind freeze|mind freeze] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:no pet|no pet] do [h:action:deathknight raise dead|raise dead] (15.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nDefault:[h:action:melee|melee] (10.000)[h:action:deathknight frost strike|frost strike] (15.000)[h:action:deathknight obliterate|obliterate] (14.000)', '', '', '', '', '', '', '', '', '', 0), + (317, 'strategy:deathknight frost', 1, 'frost [h:object|strategy] [c:co ~frost|toggle combat][c:nc ~frost|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:deathknight bone shield|bone shield] do [h:action:deathknight bone shield|bone shield] (11.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:medium health|medium health] do [h:action:deathknight death strike|death strike] (13.000)[h:action:deathknight rune tap|rune tap] (14.000)\r\nOn: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] do [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nDefault:[h:action:deathknight frost strike|frost strike] (15.000)[h:action:deathknight obliterate|obliterate] (14.000)[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:critical aoe heal|critical aoe heal] do [h:action:deathknight anti magic zone|anti magic zone] (91.000)\r\nOn: [h:trigger:deathknight horn of winter|horn of winter] do [h:action:deathknight horn of winter|horn of winter] (11.000)\r\nOn: [h:trigger:deathknight death coil|death coil] do [h:action:deathknight death coill|death coill] (13.000)\r\nOn: [h:trigger:deathknight icy touch|icy touch] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:deathknight icebound fortitude|icebound fortitude] (25.000)[h:action:deathknight rune tap|rune tap] (24.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight howling blast|howling blast] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight mind freeze|mind freeze] do [h:action:deathknight mind freeze|mind freeze] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:no pet|no pet] do [h:action:deathknight raise dead|raise dead] (15.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:deathknight plague strike|plague strike] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)', '', '', '', '', '', '', '', '', '', 0), (318, 'trigger:release', 1, 'release [h:object|trigger] [c:release|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|release] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|release] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|release] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|release] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (319, 'strategy:deathknight frost aoe', 1, 'frost aoe [h:object|strategy] [c:co ~frost aoe|toggle combat][c:nc ~frost aoe|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight howling blast|howling blast] (14.000)', '', '', '', '', '', '', '', '', '', 0), - (320, 'action:warlock drain life', 1, 'drain life [h:object|action] [c:do drain life|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), + (320, 'action:warlock drain life', 1, 'drain life [h:object|action] [c:do drain life|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (60.000) for [h:strategy:warlock destruction pvp|destruction pvp]', '', '', '', '', '', '', '', '', '', 0), (321, 'trigger:quests', 1, 'quests [h:object|trigger] [c:quests|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|quests] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|quests] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|quests] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|quests] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (322, 'trigger:rogue eviscerate', 1, 'eviscerate [h:object|trigger] [c:eviscerate|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue eviscerate|eviscerate] (23.000) for [h:strategy:rogue assassin|assassin]\r\nExecutes: [h:action:rogue eviscerate|eviscerate] (23.000) for [h:strategy:rogue dps|dps]\r\nExecutes: [h:action:rogue eviscerate|eviscerate] (24.000) for [h:strategy:rogue combat|combat]\r\nExecutes: [h:action:rogue eviscerate|eviscerate] (23.000) for [h:strategy:rogue subtlety|subtlety]', '', '', '', '', '', '', '', '', '', 0), (323, 'trigger:no rpg target', 1, 'no rpg target [h:object|trigger] [c:no rpg target|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|choose rpg target] (5.000) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), - (324, 'strategy:deathknight nc', 1, 'nc [h:object|strategy] [c:co ~nc|toggle combat][c:nc ~nc|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:deathknight bone shield|bone shield] do [h:action:deathknight bone shield|bone shield] (21.000)\r\nOn: [h:trigger:deathknight horn of winter|horn of winter] do [h:action:deathknight horn of winter|horn of winter] (21.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:deathknight raise dead|raise dead] do [h:action:deathknight raise dead|raise dead] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)', '', '', '', '', '', '', '', '', '', 0), - (325, 'strategy:deathknight pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull start|pull start] (60.000)[h:action:pull action|pull action] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull start|pull start] (60.000)[h:action:pull action|pull action] (60.000)', '', '', '', '', '', '', '', '', '', 0), - (326, 'strategy:deathknight unholy', 1, 'unholy [h:object|strategy] [c:co ~unholy|toggle combat][c:nc ~unholy|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:critical aoe heal|critical aoe heal] do [h:action:deathknight anti magic zone|anti magic zone] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:deathknight bone shield|bone shield] do [h:action:deathknight bone shield|bone shield] (11.000)\r\nOn: [h:trigger:deathknight plague strike|plague strike] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:deathknight horn of winter|horn of winter] do [h:action:deathknight horn of winter|horn of winter] (11.000)\r\nOn: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:deathknight death coil|death coil] do [h:action:deathknight death coill|death coill] (13.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:deathknight death pact|death pact] (91.000)\r\nOn: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] do [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000)\r\nOn: [h:trigger:deathknight icy touch|icy touch] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:deathknight icebound fortitude|icebound fortitude] (25.000)[h:action:deathknight rune tap|rune tap] (24.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:deathknight death strike|death strike] (13.000)[h:action:deathknight rune tap|rune tap] (14.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight pestilence|pestilence] (14.000)[h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight howling blast|howling blast] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight mind freeze|mind freeze] do [h:action:deathknight mind freeze|mind freeze] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:no pet|no pet] do [h:action:deathknight raise dead|raise dead] (15.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)[h:action:deathknight ghoul frenzy|ghoul frenzy] (12.000)\r\nOn: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nDefault:[h:action:melee|melee] (10.000)[h:action:deathknight scorgue strike|scorgue strike] (13.000)', '', '', '', '', '', '', '', '', '', 0), + (324, 'strategy:deathknight nc', 1, 'nc [h:object|strategy] [c:co ~nc|toggle combat][c:nc ~nc|toggle noncombat]\r\nGeneric noncombat behavior strategy. Currently handles bots mounting and moves them for the dark portal event.\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:deathknight bone shield|bone shield] do [h:action:deathknight bone shield|bone shield] (21.000)\r\nOn: [h:trigger:deathknight horn of winter|horn of winter] do [h:action:deathknight horn of winter|horn of winter] (21.000)\r\nOn: [h:trigger:deathknight raise dead|raise dead] do [h:action:deathknight raise dead|raise dead] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)', '', '', '', '', '', '', '', '', '', 0), + (325, 'strategy:deathknight pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)', '', '', '', '', '', '', '', '', '', 0), + (326, 'strategy:deathknight unholy', 1, 'unholy [h:object|strategy] [c:co ~unholy|toggle combat][c:nc ~unholy|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:deathknight bone shield|bone shield] do [h:action:deathknight bone shield|bone shield] (11.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:medium health|medium health] do [h:action:deathknight death strike|death strike] (13.000)[h:action:deathknight rune tap|rune tap] (14.000)\r\nOn: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] do [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nDefault:[h:action:melee|melee] (10.000)[h:action:deathknight scorgue strike|scorgue strike] (13.000)\r\nOn: [h:trigger:critical aoe heal|critical aoe heal] do [h:action:deathknight anti magic zone|anti magic zone] (91.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:deathknight death pact|death pact] (91.000)\r\nOn: [h:trigger:deathknight horn of winter|horn of winter] do [h:action:deathknight horn of winter|horn of winter] (11.000)\r\nOn: [h:trigger:deathknight death coil|death coil] do [h:action:deathknight death coill|death coill] (13.000)\r\nOn: [h:trigger:deathknight icy touch|icy touch] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] do [h:action:deathknight icy touch|icy touch] (21.000)\r\nOn: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:deathknight icebound fortitude|icebound fortitude] (25.000)[h:action:deathknight rune tap|rune tap] (24.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight howling blast|howling blast] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight pestilence|pestilence] (14.000)\r\nOn: [h:trigger:deathknight mind freeze|mind freeze] do [h:action:deathknight mind freeze|mind freeze] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:no pet|no pet] do [h:action:deathknight raise dead|raise dead] (15.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)[h:action:deathknight ghoul frenzy|ghoul frenzy] (12.000)\r\nOn: [h:trigger:deathknight plague strike|plague strike] do [h:action:deathknight plague strike|plague strike] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)', '', '', '', '', '', '', '', '', '', 0), (327, 'action:accept summon', 1, 'accept summon [h:object|action] [c:do accept summon|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|summon request] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|summon request] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|summon request] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (328, 'action:guild leave', 1, 'guild leave [h:object|action] [c:do guild leave|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|guild leave] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|leave large guild trigger] with relevance (4.000) for [h:strategy|guild]\r\nTriggers from: [h:trigger|guild leave] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|guild leave] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|guild leave] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (328, 'action:guild leave', 1, 'guild leave [h:object|action] [c:do guild leave|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|guild leave] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|guild leave] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|leave large guild trigger] with relevance (4.000) for [h:strategy|guild]\r\nDead state behavior:\r\nTriggers from: [h:trigger|guild leave] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|guild leave] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (329, 'trigger:chat', 1, 'chat [h:object|trigger] [c:chat|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|chat] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|chat] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|chat] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|chat] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (330, 'strategy:deathknight unholy aoe', 1, 'unholy aoe [h:object|strategy] [c:co ~unholy aoe|toggle combat][c:nc ~unholy aoe|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:loot available|loot available] do [h:action:deathknight corpse explosion|corpse explosion] (11.000)\r\nOn: [h:trigger:deathknight aoe|aoe] do [h:action:deathknight corpse explosion|corpse explosion] (13.000)[h:action:deathknight death and decay|death and decay] (13.000)', '', '', '', '', '', '', '', '', '', 0), - (331, 'action:paladin repentance', 1, 'repentance [h:object|action] [c:do repentance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin repentance|repentance] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin repentance|repentance] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nTriggers from: [h:trigger:paladin repentance|repentance] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (331, 'action:paladin repentance', 1, 'repentance [h:object|action] [c:do repentance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin repentance|repentance] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin repentance|repentance] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nTriggers from: [h:trigger:paladin repentance|repentance] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), (332, 'trigger:berserking', 1, 'berserking [h:object|trigger] [c:berserking|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|berserking] (58.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nExecutes: [h:action|berserking] (58.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (333, 'strategy:hunter dps debuff', 1, 'dps debuff [h:object|strategy] [c:co ~dps debuff|toggle combat][c:nc ~dps debuff|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter hunter\'s mark|hunter\'s mark] do [h:action:hunter hunter\'s mark|hunter\'s mark] (13.000)\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter serpent sting|serpent sting] (23.000)[h:action:hunter viper sting|viper sting] (24.000)', '', '', '', '', '', '', '', '', '', 0), (334, 'trigger:priest chastise on snare target', 1, 'chastise on snare target [h:object|trigger] [c:chastise on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest chastise on snare target|chastise on snare target] (40.000) for [h:strategy:priest heal|heal]\r\nExecutes: [h:action:priest chastise on snare target|chastise on snare target] (40.000) for [h:strategy:priest shadow|shadow]\r\nExecutes: [h:action:priest chastise on snare target|chastise on snare target] (40.000) for [h:strategy:priest holy|holy]\r\nExecutes: [h:action:priest chastise on snare target|chastise on snare target] (40.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), @@ -356,31 +356,31 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (336, 'strategy:hunter bspeed', 1, 'bspeed [h:object|strategy] [c:co ~bspeed|toggle combat][c:nc ~bspeed|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the pack|aspect of the pack] do [h:action:hunter aspect of the pack|aspect of the pack] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the pack|aspect of the pack] do [h:action:hunter aspect of the pack|aspect of the pack] (10.000)', '', '', '', '', '', '', '', '', '', 0), (337, 'action:suggest what to do', 1, 'suggest what to do [h:object|action] [c:do suggest what to do|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|often] with relevance (1.000) for [h:strategy|emote]', '', '', '', '', '', '', '', '', '', 0), (338, 'strategy:hunter bdps', 1, 'bdps [h:object|strategy] [c:co ~bdps|toggle combat][c:nc ~bdps|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (339, 'action:druid mark of the wild on party', 1, 'mark of the wild on party [h:object|action] [c:do mark of the wild on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (13.000) for [h:strategy:druid buff|buff]', '', '', '', '', '', '', '', '', '', 0), - (340, 'action:warrior shield slam', 1, 'shield slam [h:object|action] [c:do shield slam|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (14.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior sword and board|sword and board] with relevance (20.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (14.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior sword and board|sword and board] with relevance (20.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (14.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior sword and board|sword and board] with relevance (20.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (339, 'action:druid mark of the wild on party', 1, 'mark of the wild on party [h:object|action] [c:do mark of the wild on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nTriggers from: [h:trigger:druid mark of the wild on party|mark of the wild on party] with relevance (12.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (340, 'action:warrior shield slam', 1, 'shield slam [h:object|action] [c:do shield slam|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (20.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (20.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (20.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), (341, 'trigger:nt', 1, 'nt [h:object|trigger] [c:nt|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|trade] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (342, 'strategy:hunter rnature', 1, 'rnature [h:object|strategy] [c:co ~rnature|toggle combat][c:nc ~rnature|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the wild|aspect of the wild] do [h:action:hunter aspect of the wild|aspect of the wild] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the wild|aspect of the wild] do [h:action:hunter aspect of the wild|aspect of the wild] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (343, 'strategy:hunter cc', 1, 'cc [h:object|strategy] [c:co ~cc|toggle combat][c:nc ~cc|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter scare beast|scare beast] do [h:action:hunter scare beast on cc|scare beast on cc] (23.000)', '', '', '', '', '', '', '', '', '', 0), + (343, 'strategy:hunter cc', 1, 'cc [h:object|strategy] [c:co ~cc|toggle combat][c:nc ~cc|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (344, 'action:talents', 1, 'talents [h:object|action] [c:do talents|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|talents] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|talents] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|talents] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|talents] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (345, 'action:will of the forsaken', 1, 'will of the forsaken [h:object|action] [c:do will of the forsaken|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|will of the forsaken] with relevance (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|will of the forsaken] with relevance (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (346, 'trigger:uninvite', 1, 'uninvite [h:object|trigger] [c:uninvite|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|uninvite] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|uninvite] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|uninvite] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (347, 'trigger:start magmadar fight', 1, 'start magmadar fight [h:object|trigger] [c:start magmadar fight|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|enable magmadar fight strategy] (100.000) for [h:strategy|molten core]', '', '', '', '', '', '', '', '', '', 0), (348, 'strategy:hunter dps', 1, 'dps [h:object|strategy] [c:co ~dps|toggle combat][c:nc ~dps|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aimed shot|aimed shot] do [h:action:hunter aimed shot|aimed shot] (19.000)\r\nOn: [h:trigger:hunter black arrow|black arrow] do [h:action:hunter black arrow|black arrow] (15.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:hunter wyvern sting on snare target|wyvern sting on snare target] do [h:action:hunter wyvern sting on snare target|wyvern sting on snare target] (26.000)\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:hunter aspect of the monkey|aspect of the monkey] (20.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:hunter black arrow on snare target|black arrow on snare target] do [h:action:hunter black arrow|black arrow] (59.000)\r\nOn: [h:trigger:enemy fifteen yards|enemy fifteen yards] do [h:action:hunter concussive shot|concussive shot] (61.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:hunter counterattack|counterattack] do [h:action:hunter counterattack|counterattack] (36.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:hunter deterrence|deterrence] (60.000)[h:action:hunter raptor strike|raptor strike] (10.000)[h:action:hunter feign death|feign death] (62.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:hunter concussive shot|concussive shot] (61.000)\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter freezing trap|freezing trap] (63.000)[h:action:hunter remove feign death|remove feign death] (63.000)\r\nOn: [h:trigger:high threat|high threat] do [h:action:hunter feign death|feign death] (41.000)[h:action:shadowmeld|shadowmeld] (40.000)\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter mend pet|mend pet] (20.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:hunter my attacker count|my attacker count] do [h:action:hunter feign death|feign death] (41.000)[h:action:shadowmeld|shadowmeld] (40.000)\r\nOn: [h:trigger:hunter no beast|no beast] do [h:action:hunter tame beast|tame beast] (1000.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:hunter silencing shot|silencing shot] do [h:action:hunter silencing shot|silencing shot] (40.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter frost trap|frost trap] (21.000)[h:action:hunter explosive trap|explosive trap] (21.000)\r\nOn: [h:trigger:hunter silencing shot on enemy healer|silencing shot on enemy healer] do [h:action:hunter silencing shot on enemy healer|silencing shot on enemy healer] (40.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (65.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)\r\nDefault:[h:action:hunter auto shot|auto shot] (10.000)[h:action:melee|melee] (9.000)[h:action:hunter explosive shot|explosive shot] (11.000)', '', '', '', '', '', '', '', '', '', 0), - (349, 'strategy:hunter pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)', '', '', '', '', '', '', '', '', '', 0), + (349, 'strategy:hunter pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)', '', '', '', '', '', '', '', '', '', 0), (350, 'action:enable molten core strategy', 1, 'enable molten core strategy [h:object|action] [c:do enable molten core strategy|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|enter molten core] with relevance (100.000) for [h:strategy|dungeon]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|enter molten core] with relevance (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), (351, 'action:move to start', 1, 'move to start [h:object|action] [c:do move to start|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|bg waiting] with relevance (1.000) for [h:strategy|battleground]', '', '', '', '', '', '', '', '', '', 0), - (352, 'action:shaman earthliving weapon', 1, 'earthliving weapon [h:object|action] [c:do earthliving weapon|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (353, 'trigger:critical health', 1, 'critical health [h:object|trigger] [c:critical health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid survival instincts|survival instincts] (91.000)[h:action:druid healing touch|healing touch] (81.000)[h:action:druid regrowth|regrowth] (82.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid healing touch|healing touch] (81.000)[h:action:druid regrowth|regrowth] (82.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:druid survival instincts|survival instincts] (91.000)[h:action:druid healing touch|healing touch] (81.000)[h:action:druid regrowth|regrowth] (82.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid survival instincts|survival instincts] (91.000)[h:action:druid healing touch|healing touch] (81.000)[h:action:druid regrowth|regrowth] (82.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid healing touch|healing touch] (81.000)[h:action:druid regrowth|regrowth] (82.000) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:druid survival instincts|survival instincts] (91.000)[h:action:druid healing touch|healing touch] (81.000)[h:action:druid regrowth|regrowth] (82.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (354, 'action:priest inner focus', 1, 'inner focus [h:object|action] [c:do inner focus|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (42.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:priest inner focus|inner focus] with relevance (42.000) for [h:strategy:priest boost|boost]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (42.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (42.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (42.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (352, 'action:shaman earthliving weapon', 1, 'earthliving weapon [h:object|action] [c:do earthliving weapon|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]', '', '', '', '', '', '', '', '', '', 0), + (353, 'trigger:critical health', 1, 'critical health [h:object|trigger] [c:critical health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000) for [h:strategy:druid tank feral pvp|tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (354, 'action:priest inner focus', 1, 'inner focus [h:object|action] [c:do inner focus|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest inner focus|inner focus] with relevance (20.000) for [h:strategy:priest boost discipline pve|boost discipline pve]\r\nTriggers from: [h:trigger:priest inner focus|inner focus] with relevance (20.000) for [h:strategy:priest boost discipline pvp|boost discipline pvp]\r\nTriggers from: [h:trigger:priest inner focus|inner focus] with relevance (20.000) for [h:strategy:priest boost discipline raid|boost discipline raid]\r\nTriggers from: [h:trigger:priest inner focus|inner focus] with relevance (20.000) for [h:strategy:priest boost holy pve|boost holy pve]\r\nTriggers from: [h:trigger:priest inner focus|inner focus] with relevance (20.000) for [h:strategy:priest boost holy pvp|boost holy pvp]\r\nTriggers from: [h:trigger:priest inner focus|inner focus] with relevance (20.000) for [h:strategy:priest boost holy raid|boost holy raid]\r\nTriggers from: [h:trigger:priest inner focus|inner focus] with relevance (20.000) for [h:strategy:priest boost shadow pve|boost shadow pve]\r\nTriggers from: [h:trigger:priest inner focus|inner focus] with relevance (20.000) for [h:strategy:priest boost shadow pvp|boost shadow pvp]\r\nTriggers from: [h:trigger:priest inner focus|inner focus] with relevance (20.000) for [h:strategy:priest boost shadow raid|boost shadow raid]', '', '', '', '', '', '', '', '', '', 0), (355, 'trigger:generic petition turn in trigger', 1, 'petition turn in trigger [h:object|trigger] [c:petition turn in trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|turn in petition] (10.000) for [h:strategy|guild]', '', '', '', '', '', '', '', '', '', 0), - (356, 'trigger:shaman lightning shield', 1, 'lightning shield [h:object|trigger] [c:lightning shield|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (20.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (20.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (20.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nNon combat behavior:\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]', '', '', '', '', '', '', '', '', '', 0), + (356, 'trigger:shaman lightning shield', 1, 'lightning shield [h:object|trigger] [c:lightning shield|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman lightning shield|lightning shield] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]', '', '', '', '', '', '', '', '', '', 0), (357, 'strategy:druid bear', 1, 'bear [h:object|strategy] [c:co ~bear|toggle combat][c:nc ~bear|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid bash|bash] do [h:action:druid bash|bash] (42.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (71.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (66.000)\r\nOn: [h:trigger:druid bash on enemy healer|bash on enemy healer] do [h:action:druid bash on enemy healer|bash on enemy healer] (41.000)\r\nOn: [h:trigger:enemy too close for melee|enemy too close for melee] do [h:action:move out of enemy contact|move out of enemy contact] (18.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid survival instincts|survival instincts] (91.000)[h:action:druid healing touch|healing touch] (81.000)[h:action:druid regrowth|regrowth] (82.000)\r\nOn: [h:trigger:druid bear form|bear form] do [h:action:druid dire bear form|dire bear form] (65.000)\r\nOn: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:druid growl|growl] (28.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] do [h:action:druid faerie fire (feral)|faerie fire (feral)] (27.000)\r\nOn: [h:trigger:druid blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (72.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:druid innervate|innervate] (25.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid swipe (bear)|swipe (bear)] (25.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid demoralizing roar|demoralizing roar] (26.000)[h:action:druid swipe (bear)|swipe (bear)] (26.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:druid omen of clarity|omen of clarity] do [h:action:druid omen of clarity|omen of clarity] (66.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:druid healing touch on party|healing touch on party] (81.000)[h:action:druid regrowth on party|regrowth on party] (82.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:druid rebirth|rebirth] (21.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (92.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)\r\nDefault:[h:action:druid mangle (bear)|mangle (bear)] (13.000)[h:action:druid faerie fire (feral)|faerie fire (feral)] (11.000)[h:action:druid lacerate|lacerate] (14.000)[h:action:druid maul|maul] (12.000)[h:action:melee|melee] (10.000)', '', '', '', '', '', '', '', '', '', 0), (358, 'action:deathknight dark command', 1, 'dark command [h:object|action] [c:do dark command|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (23.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (23.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), - (359, 'trigger:warrior sunder armor', 1, 'sunder armor [h:object|trigger] [c:sunder armor|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior devastate|devastate] (13.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior devastate|devastate] (13.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior devastate|devastate] (13.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (359, 'trigger:warrior sunder armor', 1, 'sunder armor [h:object|trigger] [c:sunder armor|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior devastate|devastate] (22.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior devastate|devastate] (22.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:warrior devastate|devastate] (22.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), (360, 'action:los', 1, 'los [h:object|action] [c:do los|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|los] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|los] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|los] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|los] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (361, 'strategy:rogue react', 1, 'react [h:object|strategy] [c:co ~react|toggle combat][c:nc ~react|toggle noncombat]\r\n\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (60.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (60.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (60.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (60.000)', '', '', '', '', '', '', '', '', '', 0), - (362, 'action:rogue feint', 1, 'feint [h:object|action] [c:do feint|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (50.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (50.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety raid|subtlety raid]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (50.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (363, 'trigger:often', 1, 'often [h:object|trigger] [c:often|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:use trinket|use trinket] (50.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:use trinket|use trinket] (50.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:use trinket|use trinket] (50.000) for [h:strategy:druid melee|melee]\r\nExecutes: [h:action:use trinket|use trinket] (50.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:use trinket|use trinket] (50.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:use trinket|use trinket] (50.000) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:use trinket|use trinket] (50.000) for [h:strategy:druid bear|bear]\r\nNon combat behavior:\r\nExecutes: [h:action:apply oil|apply oil] (1.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (362, 'action:rogue feint', 1, 'feint [h:object|action] [c:do feint|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (50.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (50.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety raid|subtlety raid]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (50.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (363, 'trigger:often', 1, 'often [h:object|trigger] [c:often|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost balance raid|boost balance raid]\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost balance pve|boost balance pve]\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost balance pvp|boost balance pvp]\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost dps feral pve|boost dps feral pve]\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost dps feral pvp|boost dps feral pvp]\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost tank feral raid|boost tank feral raid]\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost dps feral raid|boost dps feral raid]\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost restoration pve|boost restoration pve]\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost restoration pvp|boost restoration pvp]\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost restoration raid|boost restoration raid]\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost tank feral pve|boost tank feral pve]\r\nExecutes: [h:action:use trinket|use trinket] (20.000) for [h:strategy:druid boost tank feral pvp|boost tank feral pvp]\r\nExecutes: [h:action:stoneshield potion|stoneshield potion] (20.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nNon combat behavior:\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nExecutes: [h:action:apply oil|apply oil] (10.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (364, 'strategy:rogue assassin', 1, 'assassin [h:object|strategy] [c:co ~assassin|toggle combat][c:nc ~assassin|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (21.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue backstab|backstab] (23.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (23.000)\r\nOn: [h:trigger:rogue cloak of shadows|cloak of shadows] do [h:action:rogue cloak of shadows|cloak of shadows] (45.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (1.000)\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:adamantite grenade|adamantite grenade] (20.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (91.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (46.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (45.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue evasion|evasion] (90.000)[h:action:rogue blind|blind] (92.000)[h:action:rogue feint|feint] (90.000)[h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (20.000)\r\nOn: [h:trigger:rogue my attacker count|my attacker count] do [h:action:rogue feint|feint] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (92.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (22.000)\r\nDefault:[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (30.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (41.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:adamantite grenade|adamantite grenade] (61.000)[h:action:rogue cold blood|cold blood] (20.000)', '', '', '', '', '', '', '', '', '', 0), (365, 'action:bank', 1, 'bank [h:object|action] [c:do bank|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|bank] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|bank] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|bank] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|bank] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (366, 'strategy:rogue aoe', 1, 'aoe [h:object|strategy] [c:co ~aoe|toggle combat][c:nc ~aoe|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), @@ -388,10 +388,10 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (368, 'action:warrior spell reflection', 1, 'spell reflection [h:object|action] [c:do spell reflection|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior spell reflection|spell reflection] with relevance (31.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior spell reflection|spell reflection] with relevance (31.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior spell reflection|spell reflection] with relevance (31.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), (369, 'trigger:rpg trade useful', 1, 'rpg trade useful [h:object|trigger] [c:rpg trade useful|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg trade useful] (1.030) for [h:strategy|rpg player]', '', '', '', '', '', '', '', '', '', 0), (370, 'value:generic useful to give', 1, 'items useful to give [h:object|value] [c:cdebug values items useful to give|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (371, 'action:druid insect swarm', 1, 'insect swarm [h:object|action] [c:do insect swarm|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid insect swarm|insect swarm] with relevance (15.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), - (372, 'strategy:rogue pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)', '', '', '', '', '', '', '', '', '', 0), - (373, 'action:druid tranquility', 1, 'tranquility [h:object|action] [c:do tranquility|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (73.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), - (374, 'trigger:enemy is close', 1, 'enemy is close [h:object|trigger] [c:enemy is close|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter deterrence|deterrence] (60.000)[h:action:hunter raptor strike|raptor strike] (10.000)[h:action:hunter feign death|feign death] (62.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), + (371, 'action:druid insect swarm', 1, 'insect swarm [h:object|action] [c:do insect swarm|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid insect swarm|insect swarm] with relevance (12.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:druid insect swarm|insect swarm] with relevance (12.000) for [h:strategy:druid balance pvp|balance pvp]', '', '', '', '', '', '', '', '', '', 0), + (372, 'strategy:rogue pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)', '', '', '', '', '', '', '', '', '', 0), + (373, 'action:druid tranquility', 1, 'tranquility [h:object|action] [c:do tranquility|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (72.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (72.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (72.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (374, 'trigger:enemy is close', 1, 'enemy is close [h:object|trigger] [c:enemy is close|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter raptor strike|raptor strike] (11.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nExecutes: [h:action:hunter raptor strike|raptor strike] (11.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nExecutes: [h:action:hunter raptor strike|raptor strike] (11.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nExecutes: [h:action:hunter raptor strike|raptor strike] (11.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nExecutes: [h:action:hunter raptor strike|raptor strike] (11.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nExecutes: [h:action:hunter raptor strike|raptor strike] (11.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nExecutes: [h:action:hunter raptor strike|raptor strike] (11.000) for [h:strategy:hunter survival pve|survival pve]\r\nExecutes: [h:action:hunter raptor strike|raptor strike] (11.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nExecutes: [h:action:hunter raptor strike|raptor strike] (11.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), (375, 'value:nearest dynamic objects', 1, 'nearest dynamic objects no los [h:object|value] [c:cdebug values nearest dynamic objects no los|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (376, 'strategy:rogue nc', 1, 'nc [h:object|strategy] [c:co ~nc|toggle combat][c:nc ~nc|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (1.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:world buff|world buff] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:apply poison|apply poison] (1.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (42.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (41.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)', '', '', '', '', '', '', '', '', '', 0), (377, 'strategy:rogue combat', 1, 'combat [h:object|strategy] [c:co ~combat|toggle combat][c:nc ~combat|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:rogue update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:rogue update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:rogue update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:rogue update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:rogue update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:rogue update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), @@ -399,13 +399,13 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (379, 'action:enable onyxia fight strategy', 1, 'enable onyxia fight strategy [h:object|action] [c:do enable onyxia fight strategy|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|start onyxia fight] with relevance (100.000) for [h:strategy|onyxia\'s lair]', '', '', '', '', '', '', '', '', '', 0), (380, 'trigger:rpg end quest', 1, 'rpg end quest [h:object|trigger] [c:rpg end quest|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg end quest] (1.090) for [h:strategy|rpg quest]', '', '', '', '', '', '', '', '', '', 0), (381, 'strategy:rogue dps', 1, 'dps [h:object|strategy] [c:co ~dps|toggle combat][c:nc ~dps|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (23.000)\r\nOn: [h:trigger:rogue cloak of shadows|cloak of shadows] do [h:action:rogue cloak of shadows|cloak of shadows] (45.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (1.000)\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:adamantite grenade|adamantite grenade] (20.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (91.000)\r\nOn: [h:trigger:rogue rupture|rupture] do [h:action:rogue rupture|rupture] (24.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (46.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (45.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue evasion|evasion] (90.000)[h:action:rogue blind|blind] (92.000)[h:action:rogue feint|feint] (90.000)[h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:rogue sinister strike|sinister strike] do [h:action:rogue sinister strike|sinister strike] (15.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (20.000)\r\nOn: [h:trigger:rogue my attacker count|my attacker count] do [h:action:rogue feint|feint] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (92.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (25.000)\r\nDefault:[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (30.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (41.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:adamantite grenade|adamantite grenade] (61.000)[h:action:rogue cold blood|cold blood] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (382, 'trigger:no pet', 1, 'no pet [h:object|trigger] [c:no pet|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock summon voidwalker|summon voidwalker] (11.000)[h:action:warlock summon imp|summon imp] (10.000)[h:action:warlock summon felguard|summon felguard] (12.000) for [h:strategy:warlock pet demonology pve|pet demonology pve]\r\nExecutes: [h:action:warlock summon succubus|summon succubus] (10.000)[h:action:warlock summon felhunter|summon felhunter] (10.000)[h:action:warlock summon felguard|summon felguard] (12.000) for [h:strategy:warlock pet demonology pvp|pet demonology pvp]\r\nExecutes: [h:action:warlock summon voidwalker|summon voidwalker] (11.000)[h:action:warlock summon imp|summon imp] (10.000) for [h:strategy:warlock pet affliction pve|pet affliction pve]\r\nExecutes: [h:action:warlock summon succubus|summon succubus] (10.000)[h:action:warlock summon felhunter|summon felhunter] (10.000) for [h:strategy:warlock pet affliction pvp|pet affliction pvp]\r\nExecutes: [h:action:warlock summon imp|summon imp] (10.000) for [h:strategy:warlock pet affliction raid|pet affliction raid]\r\nExecutes: [h:action:warlock summon voidwalker|summon voidwalker] (11.000)[h:action:warlock summon imp|summon imp] (10.000) for [h:strategy:warlock pet destruction pve|pet destruction pve]\r\nExecutes: [h:action:warlock summon succubus|summon succubus] (10.000)[h:action:warlock summon felhunter|summon felhunter] (10.000) for [h:strategy:warlock pet destruction pvp|pet destruction pvp]\r\nExecutes: [h:action:warlock summon imp|summon imp] (10.000) for [h:strategy:warlock pet destruction raid|pet destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (382, 'trigger:no pet', 1, 'no pet [h:object|trigger] [c:no pet|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock summon felhunter|summon felhunter] (10.000)[h:action:warlock summon succubus|summon succubus] (10.000) for [h:strategy:warlock pet destruction pvp|pet destruction pvp]\r\nExecutes: [h:action:warlock summon felhunter|summon felhunter] (10.000)[h:action:warlock summon succubus|summon succubus] (10.000) for [h:strategy:warlock pet affliction pvp|pet affliction pvp]\r\nExecutes: [h:action:warlock summon imp|summon imp] (10.000) for [h:strategy:warlock pet destruction raid|pet destruction raid]\r\nExecutes: [h:action:warlock summon voidwalker|summon voidwalker] (11.000)[h:action:warlock summon imp|summon imp] (10.000) for [h:strategy:warlock pet affliction pve|pet affliction pve]\r\nExecutes: [h:action:warlock summon imp|summon imp] (10.000) for [h:strategy:warlock pet affliction raid|pet affliction raid]\r\nExecutes: [h:action:warlock summon voidwalker|summon voidwalker] (11.000)[h:action:warlock summon imp|summon imp] (10.000) for [h:strategy:warlock pet demonology pve|pet demonology pve]\r\nExecutes: [h:action:warlock summon felhunter|summon felhunter] (10.000)[h:action:warlock summon succubus|summon succubus] (10.000) for [h:strategy:warlock pet demonology pvp|pet demonology pvp]\r\nExecutes: [h:action:warlock summon voidwalker|summon voidwalker] (11.000)[h:action:warlock summon imp|summon imp] (10.000) for [h:strategy:warlock pet destruction pve|pet destruction pve]', '', '', '', '', '', '', '', '', '', 0), (383, 'action:paladin blessing of might', 1, 'blessing of might [h:object|action] [c:do blessing of might|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of might|blessing of might] with relevance (10.000) for [h:strategy:paladin blessing might|blessing might]', '', '', '', '', '', '', '', '', '', 0), (384, 'strategy:rogue stealth', 1, 'stealth [h:object|strategy] [c:co ~stealth|toggle combat][c:nc ~stealth|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (385, 'action:move out of enemy contact', 1, 'move out of enemy contact [h:object|action] [c:do move out of enemy contact|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy too close for melee|enemy too close for melee] with relevance (18.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:enemy too close for melee|enemy too close for melee] with relevance (18.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:enemy too close for melee|enemy too close for melee] with relevance (18.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:enemy too close for melee|enemy too close for melee] with relevance (18.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (385, 'action:move out of enemy contact', 1, 'move out of enemy contact [h:object|action] [c:do move out of enemy contact|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy too close for melee|enemy too close for melee] with relevance (10.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:enemy too close for melee|enemy too close for melee] with relevance (10.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:enemy too close for melee|enemy too close for melee] with relevance (10.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (386, 'strategy:rogue stealthed', 1, 'stealthed [h:object|strategy] [c:co ~stealthed|toggle combat][c:nc ~stealthed|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (387, 'action:guild demote', 1, 'guild demote [h:object|action] [c:do guild demote|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|guild demote] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|guild demote] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|guild demote] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|guild demote] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (388, 'action:rogue gouge', 1, 'gouge [h:object|action] [c:do gouge|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (388, 'action:rogue gouge', 1, 'gouge [h:object|action] [c:do gouge|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (40.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]', '', '', '', '', '', '', '', '', '', 0), (389, 'trigger:enter onyxia\'s lair', 1, 'enter onyxia\'s lair [h:object|trigger] [c:enter onyxia\'s lair|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|enable onyxia\'s lair strategy] (100.000) for [h:strategy|dungeon]\r\nNon combat behavior:\r\nExecutes: [h:action|enable onyxia\'s lair strategy] (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), (390, 'value:possible attack targets', 1, 'possible attack targets [h:object|value] [c:cdebug values possible attack targets|current value]\r\nThis value contains all the units the bot should attack.\r\nUsed values:\r\n[h:value|attackers] [h:value|attack target] ', '', '', '', '', '', '', '', '', '', 0), (391, 'trigger:priest target low health', 1, 'target low health [h:object|trigger] [c:target low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest shadow word: death|shadow word: death] (41.000) for [h:strategy:priest shadow|shadow]\r\nExecutes: [h:action:priest shadow word: death|shadow word: death] (41.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), @@ -414,136 +414,136 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (394, 'action:log', 1, 'log [h:object|action] [c:do log|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|log] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|log] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|log] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|log] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (395, 'value:self target', 1, 'self target [h:object|value] [c:cdebug values self target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (396, 'strategy:shaman bdps', 1, 'bdps [h:object|strategy] [c:co ~bdps|toggle combat][c:nc ~bdps|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (22.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (22.000)', '', '', '', '', '', '', '', '', '', 0), - (397, 'action:paladin holy light', 1, 'holy light [h:object|action] [c:do holy light|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (71.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (71.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (71.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (398, 'trigger:in vehicle', 1, 'in vehicle [h:object|trigger] [c:in vehicle|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|glaive throw] (70.000)[h:action|hurl boulder] (70.000)[h:action|napalm] (70.000)[h:action|fire cannon] (70.000)[h:action|ram] (70.000)[h:action|blade salvo] (71.000)[h:action|incendiary rocket] (70.000)[h:action|rocket blast] (70.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nExecutes: [h:action|glaive throw] (70.000)[h:action|hurl boulder] (70.000)[h:action|napalm] (70.000)[h:action|fire cannon] (70.000)[h:action|ram] (70.000)[h:action|blade salvo] (71.000)[h:action|incendiary rocket] (70.000)[h:action|rocket blast] (70.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), + (397, 'action:paladin holy light', 1, 'holy light [h:object|action] [c:do holy light|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (398, 'trigger:in vehicle', 1, 'in vehicle [h:object|trigger] [c:in vehicle|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|hurl boulder] (70.000)[h:action|incendiary rocket] (70.000)[h:action|fire cannon] (70.000)[h:action|blade salvo] (71.000)[h:action|rocket blast] (70.000)[h:action|napalm] (70.000)[h:action|ram] (70.000)[h:action|glaive throw] (70.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nExecutes: [h:action|hurl boulder] (70.000)[h:action|incendiary rocket] (70.000)[h:action|fire cannon] (70.000)[h:action|blade salvo] (71.000)[h:action|rocket blast] (70.000)[h:action|napalm] (70.000)[h:action|ram] (70.000)[h:action|glaive throw] (70.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), (399, 'trigger:warrior mortal strike', 1, 'mortal strike [h:object|trigger] [c:mortal strike|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior mortal strike|mortal strike] (11.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:warrior mortal strike|mortal strike] (11.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior mortal strike|mortal strike] (11.000) for [h:strategy:warrior arms raid|arms raid]', '', '', '', '', '', '', '', '', '', 0), - (400, 'action:mage blast wave', 1, 'blast wave [h:object|action] [c:do blast wave|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy player ten yards|enemy player ten yards] with relevance (16.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:enemy player ten yards|enemy player ten yards] with relevance (16.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:enemy player ten yards|enemy player ten yards] with relevance (16.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), + (400, 'action:mage blast wave', 1, 'blast wave [h:object|action] [c:do blast wave|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:mage cc fire raid|cc fire raid]', '', '', '', '', '', '', '', '', '', 0), (401, 'trigger:trainer', 1, 'trainer [h:object|trigger] [c:trainer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|trainer] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|trainer] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|trainer] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|trainer] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (402, 'strategy:shaman caster', 1, 'caster [h:object|strategy] [c:co ~caster|toggle combat][c:nc ~caster|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:shaman riptide|riptide] (26.000)\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (30.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:shaman chain heal|chain heal] (27.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (31.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (1.000)\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (21.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman lesser healing wave|lesser healing wave] (26.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman riptide on party|riptide on party] (25.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (25.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (92.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (80.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:adamantite grenade|adamantite grenade] (61.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (23.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (23.000)\r\nDefault:[h:action:shaman lightning bolt|lightning bolt] (10.000)', '', '', '', '', '', '', '', '', '', 0), (403, 'value:combat', 1, 'combat [h:object|value] [c:cdebug values combat|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (404, 'trigger:rogue adrenaline rush', 1, 'adrenaline rush [h:object|trigger] [c:adrenaline rush|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue adrenaline rush|adrenaline rush] (26.000) for [h:strategy:rogue buff combat pvp|buff combat pvp]\r\nExecutes: [h:action:rogue adrenaline rush|adrenaline rush] (26.000) for [h:strategy:rogue buff combat pve|buff combat pve]\r\nExecutes: [h:action:rogue adrenaline rush|adrenaline rush] (26.000) for [h:strategy:rogue buff combat raid|buff combat raid]', '', '', '', '', '', '', '', '', '', 0), + (404, 'trigger:rogue adrenaline rush', 1, 'adrenaline rush [h:object|trigger] [c:adrenaline rush|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue adrenaline rush|adrenaline rush] (25.000) for [h:strategy:rogue boost combat pve|boost combat pve]\r\nExecutes: [h:action:rogue adrenaline rush|adrenaline rush] (25.000) for [h:strategy:rogue boost combat pvp|boost combat pvp]\r\nExecutes: [h:action:rogue adrenaline rush|adrenaline rush] (25.000) for [h:strategy:rogue boost combat raid|boost combat raid]', '', '', '', '', '', '', '', '', '', 0), (405, 'strategy:shaman melee', 1, 'melee [h:object|strategy] [c:co ~melee|toggle combat][c:nc ~melee|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:shaman riptide|riptide] (26.000)\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (30.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:shaman chain heal|chain heal] (27.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (31.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (1.000)\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (21.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman lesser healing wave|lesser healing wave] (26.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman riptide on party|riptide on party] (25.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (25.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (92.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (80.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (22.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:adamantite grenade|adamantite grenade] (61.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (23.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (23.000)\r\nDefault:[h:action:shaman stormstrike|stormstrike] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (406, 'action:paladin seal of wisdom', 1, 'seal of wisdom [h:object|action] [c:do seal of wisdom|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (406, 'action:paladin seal of wisdom', 1, 'seal of wisdom [h:object|action] [c:do seal of wisdom|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (21.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (21.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (21.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), (407, 'strategy:shaman caster aoe', 1, 'caster aoe [h:object|strategy] [c:co ~caster aoe|toggle combat][c:nc ~caster aoe|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman chain lightning|chain lightning] (25.000)', '', '', '', '', '', '', '', '', '', 0), (408, 'strategy:shaman cure', 1, 'cure [h:object|strategy] [c:co ~cure|toggle combat][c:nc ~cure|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (409, 'trigger:priest shadow protection', 1, 'shadow protection [h:object|trigger] [c:shadow protection|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest shadow protection|shadow protection] (14.000) for [h:strategy:priest rshadow|rshadow]', '', '', '', '', '', '', '', '', '', 0), - (410, 'trigger:mage frost ward', 1, 'frost ward [h:object|trigger] [c:frost ward|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (409, 'trigger:priest shadow protection', 1, 'shadow protection [h:object|trigger] [c:shadow protection|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest shadow protection|shadow protection] (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest shadow protection|shadow protection] (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest shadow protection|shadow protection] (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest shadow protection|shadow protection] (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest shadow protection|shadow protection] (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest shadow protection|shadow protection] (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest shadow protection|shadow protection] (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest shadow protection|shadow protection] (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest shadow protection|shadow protection] (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (410, 'trigger:mage frost ward', 1, 'frost ward [h:object|trigger] [c:frost ward|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage frost ward|frost ward] (20.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (411, 'action:enable magmadar fight strategy', 1, 'enable magmadar fight strategy [h:object|action] [c:do enable magmadar fight strategy|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|start magmadar fight] with relevance (100.000) for [h:strategy|molten core]', '', '', '', '', '', '', '', '', '', 0), - (412, 'action:set non combat state', 1, 'set non combat state [h:object|action] [c:do set non combat state|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid react|react]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid react|react]', '', '', '', '', '', '', '', '', '', 0), - (413, 'trigger:seldom', 1, 'seldom [h:object|trigger] [c:seldom|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|talk] (1.000) for [h:strategy|emote]\r\nExecutes: [h:action|leave far away] (4.000) for [h:strategy|group]\r\nExecutes: [h:action|lfg leave] (100.000) for [h:strategy|lfg]\r\nDead state behavior:\r\nExecutes: [h:action|leave far away] (4.000) for [h:strategy|group]', '', '', '', '', '', '', '', '', '', 0), + (412, 'action:set non combat state', 1, 'set non combat state [h:object|action] [c:do set non combat state|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:combat end|combat end] with relevance (110.000) for [h:strategy:druid tank feral raid|tank feral raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (110.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (413, 'trigger:seldom', 1, 'seldom [h:object|trigger] [c:seldom|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|lfg leave] (100.000) for [h:strategy|lfg]\r\nExecutes: [h:action|leave far away] (4.000) for [h:strategy|group]\r\nExecutes: [h:action|talk] (0.500) for [h:strategy|emote]\r\nDead state behavior:\r\nExecutes: [h:action|leave far away] (4.000) for [h:strategy|group]', '', '', '', '', '', '', '', '', '', 0), (414, 'strategy:shaman nc', 1, 'nc [h:object|strategy] [c:co ~nc|toggle combat][c:nc ~nc|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (21.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (31.000)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:shaman chain heal|chain heal] (27.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:shaman trigger|trigger] do [h:action:world buff|world buff] (1.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (30.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (21.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (33.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (92.000)\r\nOn: [h:trigger:shaman ready to remove totems|ready to remove totems] do [h:action:shaman totemic recall|totemic recall] (15.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (12.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (11.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (11.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (12.000)', '', '', '', '', '', '', '', '', '', 0), (415, 'trigger:taxi', 1, 'taxi [h:object|trigger] [c:taxi|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|taxi] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|taxi] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|taxi] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|taxi] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (416, 'strategy:shaman totems', 1, 'totems [h:object|strategy] [c:co ~totems|toggle combat][c:nc ~totems|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (417, 'action:use bandage', 1, 'use bandage [h:object|action] [c:do use bandage|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|low health] with relevance (23.000) for [h:strategy|potions]\r\nReaction behavior:\r\nTriggers from: [h:trigger|low health] with relevance (23.000) for [h:strategy|potions]', '', '', '', '', '', '', '', '', '', 0), - (418, 'trigger:invalid target', 1, 'invalid target [h:object|trigger] [c:invalid target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:select new target|select new target] (89.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:select new target|select new target] (89.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:select new target|select new target] (89.000) for [h:strategy:druid melee|melee]\r\nExecutes: [h:action:select new target|select new target] (89.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:select new target|select new target] (89.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:select new target|select new target] (89.000) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:select new target|select new target] (89.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (417, 'action:use bandage', 1, 'use bandage [h:object|action] [c:do use bandage|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|low health] with relevance (70.000) for [h:strategy|potions]\r\nReaction behavior:\r\nTriggers from: [h:trigger|low health] with relevance (70.000) for [h:strategy|potions]', '', '', '', '', '', '', '', '', '', 0), + (418, 'trigger:invalid target', 1, 'invalid target [h:object|trigger] [c:invalid target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:select new target|select new target] (90.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (419, 'action:tell possible attack targets', 1, 'tell possible attack targets [h:object|action] [c:do tell possible attack targets|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|possible attack targets] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (420, 'strategy:mage boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage arcane power|arcane power] do [h:action:mage arcane power|arcane power] (41.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage presence of mind|presence of mind] (42.000)', '', '', '', '', '', '', '', '', '', 0), - (421, 'trigger:warrior rage available', 1, 'rage available [h:object|trigger] [c:rage available|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior whirlwind|whirlwind] (12.000)[h:action:warrior heroic strike|heroic strike] (11.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior heroic strike|heroic strike] (12.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:warrior heroic strike|heroic strike] (12.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior heroic strike|heroic strike] (12.000) for [h:strategy:warrior arms raid|arms raid]\r\nExecutes: [h:action:warrior whirlwind|whirlwind] (12.000)[h:action:warrior heroic strike|heroic strike] (11.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior whirlwind|whirlwind] (12.000)[h:action:warrior heroic strike|heroic strike] (11.000) for [h:strategy:warrior fury raid|fury raid]\r\nExecutes: [h:action:warrior shield slam|shield slam] (14.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior shield slam|shield slam] (14.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior shield slam|shield slam] (14.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (420, 'strategy:mage boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (421, 'trigger:warrior rage available', 1, 'rage available [h:object|trigger] [c:rage available|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior heroic strike|heroic strike] (12.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior heroic strike|heroic strike] (12.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:warrior heroic strike|heroic strike] (12.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), (422, 'strategy:mage arcane', 1, 'arcane [h:object|strategy] [c:co ~arcane|toggle combat][c:nc ~arcane|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:mage update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:mage update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:mage update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:mage update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:mage update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:mage update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), (423, 'trigger:mage enemy out of spell range', 1, 'enemy out of spell range [h:object|trigger] [c:enemy out of spell range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:reach spell|reach spell] (60.000) for [h:strategy:mage arcane|arcane]\r\nExecutes: [h:action:reach spell|reach spell] (60.000) for [h:strategy:mage fire|fire]\r\nExecutes: [h:action:reach spell|reach spell] (60.000) for [h:strategy:mage frost|frost]', '', '', '', '', '', '', '', '', '', 0), (424, 'strategy:mage arcane aoe', 1, 'arcane aoe [h:object|strategy] [c:co ~arcane aoe|toggle combat][c:nc ~arcane aoe|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy too close for spell|enemy too close for spell] do [h:action:mage arcane explosion|arcane explosion] (60.000)', '', '', '', '', '', '', '', '', '', 0), - (425, 'action:priest abolish disease', 1, 'abolish disease [h:object|action] [c:do abolish disease|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure|cure]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure|cure]', '', '', '', '', '', '', '', '', '', 0), + (425, 'action:priest abolish disease', 1, 'abolish disease [h:object|action] [c:do abolish disease|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure shadow pve|cure shadow pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (51.000) for [h:strategy:priest cure shadow pve|cure shadow pve]', '', '', '', '', '', '', '', '', '', 0), (426, 'trigger:possible attack targets', 1, 'possible attack targets [h:object|trigger] [c:possible attack targets|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|tell possible attack targets] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (427, 'strategy:mage cc', 1, 'cc [h:object|strategy] [c:co ~cc|toggle combat][c:nc ~cc|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (428, 'trigger:no possible targets', 1, 'no possible targets [h:object|trigger] [c:no possible targets|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|arena tactics] (1.000) for [h:strategy|arena]\r\nNon combat behavior:\r\nExecutes: [h:action|arena tactics] (1.000) for [h:strategy|arena]', '', '', '', '', '', '', '', '', '', 0), - (429, 'action:check mount state', 1, 'check mount state [h:object|action] [c:do check mount state|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (88.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (88.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (88.000) for [h:strategy:druid melee|melee]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (88.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (88.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (88.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (88.000) for [h:strategy:druid bear|bear]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid buff|buff]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (429, 'action:check mount state', 1, 'check mount state [h:object|action] [c:do check mount state|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:mounted|mounted] with relevance (90.000) for [h:strategy:druid tank feral raid|tank feral raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (430, 'strategy:mage cure', 1, 'cure [h:object|strategy] [c:co ~cure|toggle combat][c:nc ~cure|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (431, 'trigger:shaman bloodlust', 1, 'bloodlust [h:object|trigger] [c:bloodlust|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman bloodlust|bloodlust] (20.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman bloodlust|bloodlust] (20.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman bloodlust|bloodlust] (20.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman bloodlust|bloodlust] (20.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman bloodlust|bloodlust] (20.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman bloodlust|bloodlust] (20.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman bloodlust|bloodlust] (20.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:shaman bloodlust|bloodlust] (20.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman bloodlust|bloodlust] (20.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), (432, 'action:uninvite', 1, 'uninvite [h:object|action] [c:do uninvite|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|uninvite] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|uninvite guid] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|uninvite] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|uninvite guid] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|uninvite] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|uninvite guid] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (433, 'strategy:mage react', 1, 'react [h:object|strategy] [c:co ~react|toggle combat][c:nc ~react|toggle noncombat]\r\n\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (60.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (60.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (60.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (60.000)', '', '', '', '', '', '', '', '', '', 0), - (434, 'trigger:rogue slice and dice', 1, 'slice and dice [h:object|trigger] [c:slice and dice|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (22.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (22.000) for [h:strategy:rogue combat pve|combat pve]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (22.000) for [h:strategy:rogue combat raid|combat raid]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (435, 'action:warrior whirlwind', 1, 'whirlwind [h:object|action] [c:do whirlwind|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior rage available|rage available] with relevance (12.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), + (434, 'trigger:rogue slice and dice', 1, 'slice and dice [h:object|trigger] [c:slice and dice|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (22.000) for [h:strategy:rogue combat raid|combat raid]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (22.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (22.000) for [h:strategy:rogue combat pve|combat pve]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nExecutes: [h:action:rogue slice and dice|slice and dice] (21.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (435, 'action:warrior whirlwind', 1, 'whirlwind [h:object|action] [c:do whirlwind|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (25.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (24.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (24.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (24.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (25.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (25.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nTriggers from: [h:trigger:warrior whirlwind|whirlwind] with relevance (13.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior whirlwind|whirlwind] with relevance (13.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior whirlwind|whirlwind] with relevance (13.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:warrior whirlwind|whirlwind] with relevance (12.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior whirlwind|whirlwind] with relevance (12.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior whirlwind|whirlwind] with relevance (12.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), (436, 'strategy:mage buff', 1, 'buff [h:object|strategy] [c:co ~buff|toggle combat][c:nc ~buff|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (437, 'action:lfg teleport', 1, 'lfg teleport [h:object|action] [c:do lfg teleport|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|lfg teleport] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|lfg teleport] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|lfg teleport] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (438, 'action:use trinket', 1, 'use trinket [h:object|action] [c:do use trinket|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:often|often] with relevance (50.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:often|often] with relevance (50.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:often|often] with relevance (50.000) for [h:strategy:druid melee|melee]\r\nTriggers from: [h:trigger:often|often] with relevance (50.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:often|often] with relevance (50.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:often|often] with relevance (50.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:often|often] with relevance (50.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (438, 'action:use trinket', 1, 'use trinket [h:object|action] [c:do use trinket|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost balance raid|boost balance raid]\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost balance pve|boost balance pve]\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost balance pvp|boost balance pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost dps feral pve|boost dps feral pve]\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost dps feral pvp|boost dps feral pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost tank feral raid|boost tank feral raid]\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost dps feral raid|boost dps feral raid]\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost restoration pve|boost restoration pve]\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost restoration pvp|boost restoration pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost restoration raid|boost restoration raid]\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost tank feral pve|boost tank feral pve]\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid boost tank feral pvp|boost tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (439, 'value:should repair', 1, 'should repair [h:object|value] [c:cdebug values should repair|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (440, 'action:druid healing touch', 1, 'healing touch [h:object|action] [c:do healing touch|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (441, 'action:hunter remove feign death', 1, 'remove feign death [h:object|action] [c:do remove feign death|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (63.000) for [h:strategy:hunter dps|dps]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (91.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (440, 'action:druid healing touch', 1, 'healing touch [h:object|action] [c:do healing touch|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:druid tank feral pvp|tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (441, 'action:hunter remove feign death', 1, 'remove feign death [h:object|action] [c:do remove feign death|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff marksmanship pve|buff marksmanship pve]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff survival raid|buff survival raid]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff beast mastery raid|buff beast mastery raid]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff beast mastery pvp|buff beast mastery pvp]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff beast mastery pve|buff beast mastery pve]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff marksmanship pvp|buff marksmanship pvp]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff marksmanship raid|buff marksmanship raid]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff survival pve|buff survival pve]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff survival pvp|buff survival pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff marksmanship pve|buff marksmanship pve]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff survival raid|buff survival raid]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff beast mastery raid|buff beast mastery raid]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff beast mastery pvp|buff beast mastery pvp]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff beast mastery pve|buff beast mastery pve]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff marksmanship pvp|buff marksmanship pvp]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff marksmanship raid|buff marksmanship raid]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff survival pve|buff survival pve]\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (20.000) for [h:strategy:hunter buff survival pvp|buff survival pvp]', '', '', '', '', '', '', '', '', '', 0), (442, 'action:wait for attack time', 1, 'wait for attack time [h:object|action] [c:do wait for attack time|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|wait for attack time] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (443, 'action:shaman healing stream totem', 1, 'healing stream totem [h:object|action] [c:do healing stream totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totem water healing|totem water healing]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (443, 'action:shaman healing stream totem', 1, 'healing stream totem [h:object|action] [c:do healing stream totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totem water healing|totem water healing]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), (444, 'strategy:mage fire', 1, 'fire [h:object|strategy] [c:co ~fire|toggle combat][c:nc ~fire|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:mage update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:mage update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:mage update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:mage update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:mage update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:mage update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (445, 'trigger:hunter aspect of the hawk', 1, 'aspect of the hawk [h:object|trigger] [c:aspect of the hawk|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000) for [h:strategy:hunter bdps|bdps]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000) for [h:strategy:hunter bdps|bdps]', '', '', '', '', '', '', '', '', '', 0), + (445, 'trigger:hunter aspect of the hawk', 1, 'aspect of the hawk [h:object|trigger] [c:aspect of the hawk|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000) for [h:strategy:hunter aspect survival pvp|aspect survival pvp]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (20.000) for [h:strategy:hunter aspect hawk|aspect hawk]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000) for [h:strategy:hunter aspect marksmanship raid|aspect marksmanship raid]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000) for [h:strategy:hunter aspect marksmanship pvp|aspect marksmanship pvp]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000) for [h:strategy:hunter aspect beast mastery pve|aspect beast mastery pve]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000) for [h:strategy:hunter aspect beast mastery pvp|aspect beast mastery pvp]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000) for [h:strategy:hunter aspect beast mastery raid|aspect beast mastery raid]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000) for [h:strategy:hunter aspect marksmanship pve|aspect marksmanship pve]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000) for [h:strategy:hunter aspect survival pve|aspect survival pve]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000) for [h:strategy:hunter aspect survival raid|aspect survival raid]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000) for [h:strategy:hunter aspect survival pvp|aspect survival pvp]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (20.000) for [h:strategy:hunter aspect hawk|aspect hawk]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000) for [h:strategy:hunter aspect marksmanship raid|aspect marksmanship raid]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000) for [h:strategy:hunter aspect marksmanship pvp|aspect marksmanship pvp]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000) for [h:strategy:hunter aspect beast mastery pve|aspect beast mastery pve]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000) for [h:strategy:hunter aspect beast mastery pvp|aspect beast mastery pvp]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000) for [h:strategy:hunter aspect beast mastery raid|aspect beast mastery raid]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000) for [h:strategy:hunter aspect marksmanship pve|aspect marksmanship pve]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000) for [h:strategy:hunter aspect survival pve|aspect survival pve]\r\nExecutes: [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000) for [h:strategy:hunter aspect survival raid|aspect survival raid]', '', '', '', '', '', '', '', '', '', 0), (446, 'strategy:warlock dps', 1, 'dps [h:object|strategy] [c:co ~dps|toggle combat][c:nc ~dps|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (41.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (20.000)\r\nOn: [h:trigger:warlock backlash|backlash] do [h:action:warlock shadow bolt|shadow bolt] (20.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (61.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (41.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (1.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (43.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (61.000)\r\nOn: [h:trigger:warlock immolate|immolate] do [h:action:warlock conflagrate|conflagrate] (12.000)[h:action:warlock immolate|immolate] (13.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:warlock drain life|drain life] (40.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:warlock dark pact|dark pact] (21.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:warlock life tap|life tap] (21.000)\r\nOn: [h:trigger:warlock my attacker count|my attacker count] do [h:action:warlock soul shatter|soul shatter] (55.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:warlock shadowfury|shadowfury] do [h:action:warlock shadowfury|shadowfury] (44.000)\r\nOn: [h:trigger:warlock shadowfury on snare target|shadowfury on snare target] do [h:action:warlock shadowfury on snare target|shadowfury on snare target] (62.000)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock drain soul|drain soul] (30.000)[h:action:warlock shadowburn|shadowburn] (41.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:adamantite grenade|adamantite grenade] (61.000)\r\nDefault:[h:action:warlock incinerate|incinerate] (10.000)[h:action:warlock shadow bolt|shadow bolt] (10.000)', '', '', '', '', '', '', '', '', '', 0), (447, 'action:set formation', 1, 'set formation [h:object|action] [c:do set formation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|formation] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|formation] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|formation] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|formation] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (448, 'action:select new target', 1, 'select new target [h:object|action] [c:do select new target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (89.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (89.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (89.000) for [h:strategy:druid melee|melee]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (89.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (89.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (89.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (89.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (448, 'action:select new target', 1, 'select new target [h:object|action] [c:do select new target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:invalid target|invalid target] with relevance (90.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (449, 'action:hunter frost trap', 1, 'frost trap [h:object|action] [c:do frost trap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (21.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (450, 'strategy:mage frost', 1, 'frost [h:object|strategy] [c:co ~frost|toggle combat][c:nc ~frost|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:mage update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:mage update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:mage update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:mage update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:mage update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:mage update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), (451, 'strategy:mage frost aoe', 1, 'frost aoe [h:object|strategy] [c:co ~frost aoe|toggle combat][c:nc ~frost aoe|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:mage blizzard|blizzard] (40.000)', '', '', '', '', '', '', '', '', '', 0), (452, 'strategy:mage nc', 1, 'nc [h:object|strategy] [c:co ~nc|toggle combat][c:nc ~nc|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (21.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (15.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:mage trigger|trigger] do [h:action:world buff|world buff] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (16.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)', '', '', '', '', '', '', '', '', '', 0), - (453, 'trigger:party member low health', 1, 'party member low health [h:object|trigger] [c:party member low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (71.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (71.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (71.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (71.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (71.000) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (71.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (454, 'strategy:mage pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)', '', '', '', '', '', '', '', '', '', 0), + (453, 'trigger:party member low health', 1, 'party member low health [h:object|trigger] [c:party member low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid offheal pve|offheal pve]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid offheal pvp|offheal pvp]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid offheal raid|offheal raid]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid restoration raid|restoration raid]\r\nNon combat behavior:\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid offheal pve|offheal pve]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid offheal pvp|offheal pvp]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid offheal raid|offheal raid]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (454, 'strategy:mage pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)', '', '', '', '', '', '', '', '', '', 0), (455, 'trigger:hunter viper sting', 1, 'viper sting [h:object|trigger] [c:viper sting|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter viper sting|viper sting] (24.000) for [h:strategy:hunter dps debuff|dps debuff]', '', '', '', '', '', '', '', '', '', 0), (456, 'strategy:warlock aoe', 1, 'aoe [h:object|strategy] [c:co ~aoe|toggle combat][c:nc ~aoe|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (457, 'action:trainer', 1, 'trainer [h:object|action] [c:do trainer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|trainer] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|gossip hello] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|trainer] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|gossip hello] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|trainer] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|gossip hello] with relevance (100.000) for [h:strategy|default]\r\nReaction behavior:\r\nTriggers from: [h:trigger|trainer] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (458, 'action:shaman mana spring totem', 1, 'mana spring totem [h:object|action] [c:do mana spring totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totem water mana|totem water mana]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]', '', '', '', '', '', '', '', '', '', 0), - (459, 'strategy:warlock boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (41.000)', '', '', '', '', '', '', '', '', '', 0), + (458, 'action:shaman mana spring totem', 1, 'mana spring totem [h:object|action] [c:do mana spring totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totem water mana|totem water mana]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]', '', '', '', '', '', '', '', '', '', 0), + (459, 'strategy:warlock boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (460, 'strategy:warlock pet', 1, 'pet [h:object|strategy] [c:co ~pet|toggle combat][c:nc ~pet|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (461, 'trigger:combat long stuck', 1, 'combat long stuck [h:object|trigger] [c:combat long stuck|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid melee|melee]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (461, 'trigger:combat long stuck', 1, 'combat long stuck [h:object|trigger] [c:combat long stuck|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (462, 'value:party member without my aura', 1, 'party member without my aura [h:object|value] [c:cdebug values party member without my aura|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (463, 'action:druid innervate', 1, 'innervate [h:object|action] [c:do innervate|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (25.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (25.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (25.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (25.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (25.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (25.000) for [h:strategy:druid bear|bear]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (95.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (463, 'action:druid innervate', 1, 'innervate [h:object|action] [c:do innervate|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nTriggers from: [h:trigger:druid innervate|innervate] with relevance (20.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (464, 'strategy:warlock cc', 1, 'cc [h:object|strategy] [c:co ~cc|toggle combat][c:nc ~cc|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (465, 'action:auto talents', 1, 'auto talents [h:object|action] [c:do auto talents|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|levelup] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|levelup] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|levelup] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (466, 'action:enter vehicle', 1, 'enter vehicle [h:object|action] [c:do enter vehicle|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|timer] with relevance (85.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|timer] with relevance (85.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), (467, 'strategy:warlock dps debuff', 1, 'dps debuff [h:object|strategy] [c:co ~dps debuff|toggle combat][c:nc ~dps debuff|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock seed of corruption|seed of corruption] (21.000)[h:action:warlock corruption|corruption] (21.000)\r\nOn: [h:trigger:warlock curse of agony|curse of agony] do [h:action:warlock curse of agony|curse of agony] (22.000)\r\nOn: [h:trigger:warlock siphon life|siphon life] do [h:action:warlock siphon life|siphon life] (23.000)\r\nOn: [h:trigger:warlock unstable affliction|unstable affliction] do [h:action:warlock unstable affliction|unstable affliction] (25.000)', '', '', '', '', '', '', '', '', '', 0), (468, 'trigger:cannot equip', 1, 'cannot equip [h:object|trigger] [c:cannot equip|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|inventory change failure] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|inventory change failure] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|inventory change failure] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (469, 'trigger:has area debuff', 1, 'has area debuff [h:object|trigger] [c:has area debuff|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|flee] (95.000) for [h:strategy|avoid aoe]\r\nReaction behavior:\r\nExecutes: [h:action|flee] (95.000) for [h:strategy|avoid aoe]', '', '', '', '', '', '', '', '', '', 0), - (470, 'strategy:warlock pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)', '', '', '', '', '', '', '', '', '', 0), + (470, 'strategy:warlock pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)', '', '', '', '', '', '', '', '', '', 0), (471, 'strategy:warlock react', 1, 'react [h:object|strategy] [c:co ~react|toggle combat][c:nc ~react|toggle noncombat]\r\n\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (60.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (60.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (60.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (60.000)', '', '', '', '', '', '', '', '', '', 0), - (472, 'action:accept resurrect', 1, 'accept resurrect [h:object|action] [c:do accept resurrect|execute]\r\n\r\nDead state behavior:\r\nTriggers from: [h:trigger|resurrect request] with relevance (100.000) for [h:strategy|dead]', '', '', '', '', '', '', '', '', '', 0), - (473, 'trigger:at dark portal azeroth', 1, 'at dark portal azeroth [h:object|trigger] [c:at dark portal azeroth|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid buff|buff]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (472, 'action:accept resurrect', 1, 'accept resurrect [h:object|action] [c:do accept resurrect|execute]\r\nThis action clicks the accept button asked if it wants to be resurrected by a player.\r\nDead state behavior:\r\nTriggers from: [h:trigger|resurrect request] with relevance (100.000) for [h:strategy|dead]', '', '', '', '', '', '', '', '', '', 0), + (473, 'trigger:at dark portal azeroth', 1, 'at dark portal azeroth [h:object|trigger] [c:at dark portal azeroth|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:dark portal azeroth|dark portal azeroth] (1.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (474, 'strategy:warlock tank', 1, 'tank [h:object|strategy] [c:co ~tank|toggle combat][c:nc ~tank|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (41.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (20.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (61.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (41.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (1.000)\r\nOn: [h:trigger:warlock immolate|immolate] do [h:action:warlock conflagrate|conflagrate] (12.000)[h:action:warlock immolate|immolate] (13.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (43.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (61.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:warlock drain life|drain life] (40.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:warlock dark pact|dark pact] (21.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:warlock life tap|life tap] (21.000)\r\nOn: [h:trigger:warlock my attacker count|my attacker count] do [h:action:warlock soul shatter|soul shatter] (55.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:warlock shadowfury|shadowfury] do [h:action:warlock shadowfury|shadowfury] (44.000)\r\nOn: [h:trigger:warlock shadowfury on snare target|shadowfury on snare target] do [h:action:warlock shadowfury on snare target|shadowfury on snare target] (62.000)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock drain soul|drain soul] (30.000)[h:action:warlock shadowburn|shadowburn] (41.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)[h:action:adamantite grenade|adamantite grenade] (61.000)\r\nDefault:[h:action:shoot|shoot] (10.000)', '', '', '', '', '', '', '', '', '', 0), (475, 'trigger:shaman trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:world buff|world buff] (1.000) for [h:strategy:shaman nc|nc]', '', '', '', '', '', '', '', '', '', 0), (476, 'trigger:reset ai', 1, 'reset ai [h:object|trigger] [c:reset ai|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|reset ai] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|reset ai] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|reset ai] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|reset ai] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (477, 'strategy:druid caster debuff', 1, 'caster debuff [h:object|strategy] [c:co ~caster debuff|toggle combat][c:nc ~caster debuff|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid faerie fire|faerie fire] do [h:action:druid faerie fire|faerie fire] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (478, 'action:hearthstone', 1, 'hearthstone [h:object|action] [c:do hearthstone|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid melee|melee]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (478, 'action:hearthstone', 1, 'hearthstone [h:object|action] [c:do hearthstone|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.900) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (479, 'trigger:who', 1, 'who [h:object|trigger] [c:who|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|who] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|who] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|who] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|who] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (480, 'strategy:druid react', 1, 'react [h:object|strategy] [c:co ~react|toggle combat][c:nc ~react|toggle noncombat]\r\n\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (481, 'trigger:deathknight aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight pestilence|pestilence] (14.000)[h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight pestilence|pestilence] (14.000)[h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight pestilence|pestilence] (14.000)[h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight pestilence|pestilence] (14.000)[h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (482, 'strategy:druid boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] do [h:action:druid nature\'s swiftness|nature\'s swiftness] (29.000)', '', '', '', '', '', '', '', '', '', 0), + (481, 'trigger:deathknight aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight pestilence|pestilence] (14.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight pestilence|pestilence] (14.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight pestilence|pestilence] (14.000) for [h:strategy:deathknight unholy|unholy]\r\nExecutes: [h:action:deathknight anti magic shell|anti magic shell] (13.000)[h:action:deathknight blood boil|blood boil] (13.000)[h:action:deathknight death and decay|death and decay] (15.000)[h:action:deathknight unholy blight|unholy blight] (16.000)[h:action:deathknight pestilence|pestilence] (14.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (482, 'strategy:druid boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (483, 'value:item for spell', 1, 'item for spell [h:object|value] [c:cdebug values item for spell|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (484, 'trigger:leader is afk', 1, 'leader is afk [h:object|trigger] [c:leader is afk|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|leave far away] (4.000) for [h:strategy|group]\r\nDead state behavior:\r\nExecutes: [h:action|leave far away] (4.000) for [h:strategy|group]', '', '', '', '', '', '', '', '', '', 0), (485, 'trigger:drop', 1, 'drop [h:object|trigger] [c:drop|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|drop quest] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|drop quest] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|drop quest] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|drop quest] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (486, 'action:store loot', 1, 'store loot [h:object|action] [c:do store loot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|loot response] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|loot response] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|loot response] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (487, 'action:paladin exorcism', 1, 'exorcism [h:object|action] [c:do exorcism|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin the art of war|the art of war] with relevance (23.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:often|often] with relevance (13.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:often|often] with relevance (13.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (13.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:paladin the art of war|the art of war] with relevance (23.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:paladin the art of war|the art of war] with relevance (23.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (487, 'action:paladin exorcism', 1, 'exorcism [h:object|action] [c:do exorcism|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin exorcism|exorcism] with relevance (13.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:paladin exorcism|exorcism] with relevance (14.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:paladin exorcism|exorcism] with relevance (14.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:paladin exorcism|exorcism] with relevance (13.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:paladin exorcism|exorcism] with relevance (13.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:paladin exorcism|exorcism] with relevance (14.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), (488, 'strategy:druid cat', 1, 'cat [h:object|strategy] [c:co ~cat|toggle combat][c:nc ~cat|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid shred|shred] (20.000)[h:action:druid pounce|pounce] (25.000)\r\nOn: [h:trigger:druid cat form|cat form] do [h:action:druid cat form|cat form] (65.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:druid rebirth|rebirth] (21.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:enemy too close for melee|enemy too close for melee] do [h:action:move out of enemy contact|move out of enemy contact] (18.000)\r\nOn: [h:trigger:druid enemy out of melee range|enemy out of melee range] do [h:action:druid dash|dash] (23.000)[h:action:druid prowl|prowl] (90.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:druid healing touch on party|healing touch on party] (81.000)[h:action:druid regrowth on party|regrowth on party] (82.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid survival instincts|survival instincts] (91.000)[h:action:druid healing touch|healing touch] (81.000)[h:action:druid regrowth|regrowth] (82.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:druid dash|dash] (81.000)\r\nOn: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] do [h:action:druid faerie fire (feral)|faerie fire (feral)] (21.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:druid ferocious bite|ferocious bite] (24.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (72.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:druid innervate|innervate] (25.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:druid cower|cower] (91.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid claw|claw] (20.000)\r\nOn: [h:trigger:druid omen of clarity|omen of clarity] do [h:action:druid omen of clarity|omen of clarity] (66.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (71.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (92.000)[h:action:druid dash|dash] (91.000)\r\nOn: [h:trigger:druid rake|rake] do [h:action:druid rake|rake] (15.000)\r\nOn: [h:trigger:druid rake|rake] do [h:action:druid rip|rip] (24.000)\r\nOn: [h:trigger:druid tiger\'s fury|tiger\'s fury] do [h:action:druid tiger\'s fury|tiger\'s fury] (22.000)\r\nDefault:[h:action:druid mangle (cat)|mangle (cat)] (11.000)[h:action:melee|melee] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (489, 'strategy:druid buff', 1, 'buff [h:object|strategy] [c:co ~buff|toggle combat][c:nc ~buff|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (14.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (13.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)', '', '', '', '', '', '', '', '', '', 0), + (489, 'strategy:druid buff', 1, 'buff [h:object|strategy] [c:co ~buff|toggle combat][c:nc ~buff|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (490, 'action:deathknight corpse explosion', 1, 'corpse explosion [h:object|action] [c:do corpse explosion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:loot available|loot available] with relevance (11.000) for [h:strategy:deathknight unholy aoe|unholy aoe]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight unholy aoe|unholy aoe]', '', '', '', '', '', '', '', '', '', 0), (491, 'strategy:druid caster aoe', 1, 'caster aoe [h:object|strategy] [c:co ~caster aoe|toggle combat][c:nc ~caster aoe|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid starfall|starfall] (21.000)', '', '', '', '', '', '', '', '', '', 0), (492, 'action:ss', 1, 'ss [h:object|action] [c:do ss|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|ss] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|ss] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|ss] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|ss] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (493, 'action:deathknight anti magic zone', 1, 'anti magic zone [h:object|action] [c:do anti magic zone|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical aoe heal|critical aoe heal] with relevance (91.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:critical aoe heal|critical aoe heal] with relevance (91.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:critical aoe heal|critical aoe heal] with relevance (91.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:critical aoe heal|critical aoe heal] with relevance (91.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (494, 'trigger:rogue sprint', 1, 'sprint [h:object|trigger] [c:sprint|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue combat pve|combat pve]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue combat raid|combat raid]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (493, 'action:deathknight anti magic zone', 1, 'anti magic zone [h:object|action] [c:do anti magic zone|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical aoe heal|critical aoe heal] with relevance (91.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:critical aoe heal|critical aoe heal] with relevance (91.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:critical aoe heal|critical aoe heal] with relevance (91.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:critical aoe heal|critical aoe heal] with relevance (91.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (494, 'trigger:rogue sprint', 1, 'sprint [h:object|trigger] [c:sprint|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue combat raid|combat raid]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue combat pve|combat pve]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nExecutes: [h:action:rogue sprint|sprint] (21.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (495, 'strategy:druid cat aoe', 1, 'cat aoe [h:object|strategy] [c:co ~cat aoe|toggle combat][c:nc ~cat aoe|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid swipe (cat)|swipe (cat)] (22.000)', '', '', '', '', '', '', '', '', '', 0), - (496, 'strategy:druid cc', 1, 'cc [h:object|strategy] [c:co ~cc|toggle combat][c:nc ~cc|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (22.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (22.000)\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate on cc|hibernate on cc] (23.000)', '', '', '', '', '', '', '', '', '', 0), - (497, 'strategy:druid cure', 1, 'cure [h:object|strategy] [c:co ~cure|toggle combat][c:nc ~cure|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (52.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (51.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (73.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (74.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (52.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (51.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (73.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (74.000)', '', '', '', '', '', '', '', '', '', 0), - (498, 'action:warrior concussion blow', 1, 'concussion blow [h:object|action] [c:do concussion blow|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] with relevance (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] with relevance (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] with relevance (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]', '', '', '', '', '', '', '', '', '', 0), + (496, 'strategy:druid cc', 1, 'cc [h:object|strategy] [c:co ~cc|toggle combat][c:nc ~cc|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (497, 'strategy:druid cure', 1, 'cure [h:object|strategy] [c:co ~cure|toggle combat][c:nc ~cure|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (498, 'action:warrior concussion blow', 1, 'concussion blow [h:object|action] [c:do concussion blow|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] with relevance (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] with relevance (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] with relevance (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]', '', '', '', '', '', '', '', '', '', 0), (499, 'trigger:b', 1, 'b [h:object|trigger] [c:b|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|buy] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (500, 'action:paladin hammer of the righteous', 1, 'hammer of the righteous [h:object|action] [c:do hammer of the righteous|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (23.000) for [h:strategy:paladin aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (23.000) for [h:strategy:paladin aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (23.000) for [h:strategy:paladin aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), - (501, 'trigger:party member critical health', 1, 'party member critical health [h:object|trigger] [c:party member critical health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (81.000)[h:action:druid regrowth on party|regrowth on party] (82.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (81.000)[h:action:druid regrowth on party|regrowth on party] (82.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (81.000)[h:action:druid regrowth on party|regrowth on party] (82.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (81.000)[h:action:druid regrowth on party|regrowth on party] (82.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (81.000)[h:action:druid regrowth on party|regrowth on party] (82.000) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (81.000)[h:action:druid regrowth on party|regrowth on party] (82.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (501, 'trigger:party member critical health', 1, 'party member critical health [h:object|trigger] [c:party member critical health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000) for [h:strategy:druid offheal pve|offheal pve]\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000) for [h:strategy:druid offheal pvp|offheal pvp]\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000) for [h:strategy:druid offheal raid|offheal raid]\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), (502, 'strategy:druid heal', 1, 'heal [h:object|strategy] [c:co ~heal|toggle combat][c:nc ~heal|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:druid rejuvenation|rejuvenation] (62.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:druid tranquility|tranquility] (73.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (81.000)[h:action:druid regrowth|regrowth] (82.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (72.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:druid innervate|innervate] (25.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:druid regrowth|regrowth] (72.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:druid rejuvenation on party|rejuvenation on party] (61.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:druid healing touch on party|healing touch on party] (81.000)[h:action:druid regrowth on party|regrowth on party] (82.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:druid rebirth|rebirth] (21.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (71.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:druid regrowth on party|regrowth on party] (71.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (92.000)\r\nOn: [h:trigger:druid tree of life|tree of life] do [h:action:druid tree of life|tree of life] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)', '', '', '', '', '', '', '', '', '', 0), (503, 'strategy:druid melee', 1, 'melee [h:object|strategy] [c:co ~melee|toggle combat][c:nc ~melee|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (80.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (89.000)\r\nOn: [h:trigger:druid omen of clarity|omen of clarity] do [h:action:druid omen of clarity|omen of clarity] (66.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (88.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (50.000)\r\nDefault:[h:action:druid faerie fire|faerie fire] (11.000)[h:action:melee|melee] (10.000)', '', '', '', '', '', '', '', '', '', 0), (504, 'trigger:generic sub rpg', 1, 'sub rpg [h:object|trigger] [c:sub rpg|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg stay] (1.001)[h:action|rpg work] (1.001)[h:action|rpg emote] (1.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), - (505, 'trigger:shaman water walking', 1, 'water walking [h:object|trigger] [c:water walking|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (506, 'trigger:add all loot', 1, 'add all loot [h:object|trigger] [c:add all loot|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|add all loot] (100.000)[h:action|loot] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (507, 'strategy:druid pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)', '', '', '', '', '', '', '', '', '', 0), + (505, 'trigger:shaman water walking', 1, 'water walking [h:object|trigger] [c:water walking|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman water walking|water walking] (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]', '', '', '', '', '', '', '', '', '', 0), + (506, 'trigger:add all loot', 1, 'add all loot [h:object|trigger] [c:add all loot|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|add all loot] (103.000)[h:action|loot] (102.000)[h:action|move to loot] (101.000)[h:action|open loot] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (507, 'strategy:druid pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)', '', '', '', '', '', '', '', '', '', 0), (508, 'trigger:rpg buy petition', 1, 'rpg buy petition [h:object|trigger] [c:rpg buy petition|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg buy petition] (1.040) for [h:strategy|rpg guild]', '', '', '', '', '', '', '', '', '', 0), - (509, 'trigger:hunter aspect of the pack', 1, 'aspect of the pack [h:object|trigger] [c:aspect of the pack|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the pack|aspect of the pack] (10.000) for [h:strategy:hunter bspeed|bspeed]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the pack|aspect of the pack] (10.000) for [h:strategy:hunter bspeed|bspeed]', '', '', '', '', '', '', '', '', '', 0), + (509, 'trigger:hunter aspect of the pack', 1, 'aspect of the pack [h:object|trigger] [c:aspect of the pack|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the pack|aspect of the pack] (20.000) for [h:strategy:hunter aspect pack|aspect pack]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the pack|aspect of the pack] (20.000) for [h:strategy:hunter aspect pack|aspect pack]', '', '', '', '', '', '', '', '', '', 0), (510, 'trigger:hunter multi shot', 1, 'multi shot [h:object|trigger] [c:multi shot|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter multi-shot|multi-shot] (20.000) for [h:strategy:hunter aoe|aoe]', '', '', '', '', '', '', '', '', '', 0), - (511, 'trigger:mounted', 1, 'mounted [h:object|trigger] [c:mounted|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:check mount state|check mount state] (88.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:check mount state|check mount state] (88.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:check mount state|check mount state] (88.000) for [h:strategy:druid melee|melee]\r\nExecutes: [h:action:check mount state|check mount state] (88.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:check mount state|check mount state] (88.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:check mount state|check mount state] (88.000) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:check mount state|check mount state] (88.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (512, 'trigger:warrior thunder clap', 1, 'thunder clap [h:object|trigger] [c:thunder clap|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), - (513, 'trigger:priest hex of weakness', 1, 'hex of weakness [h:object|trigger] [c:hex of weakness|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest hex of weakness|hex of weakness] (10.000) for [h:strategy:priest shadow debuff|shadow debuff]\r\nExecutes: [h:action:priest hex of weakness|hex of weakness] (10.000) for [h:strategy:priest shadow debuff|shadow debuff]', '', '', '', '', '', '', '', '', '', 0), + (511, 'trigger:mounted', 1, 'mounted [h:object|trigger] [c:mounted|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:check mount state|check mount state] (90.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (512, 'trigger:warrior thunder clap', 1, 'thunder clap [h:object|trigger] [c:thunder clap|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nExecutes: [h:action:warrior thunder clap|thunder clap] (22.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), + (513, 'trigger:priest hex of weakness', 1, 'hex of weakness [h:object|trigger] [c:hex of weakness|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest hex of weakness|hex of weakness] (12.000) for [h:strategy:priest shadow pve|shadow pve]\r\nExecutes: [h:action:priest hex of weakness|hex of weakness] (12.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nExecutes: [h:action:priest hex of weakness|hex of weakness] (12.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), (514, 'trigger:accept quest', 1, 'accept quest [h:object|trigger] [c:accept quest|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|accept quest] (100.000) for [h:strategy|accept all quests]\r\nExecutes: [h:action|accept quest] (100.000) for [h:strategy|quest]', '', '', '', '', '', '', '', '', '', 0), (515, 'trigger:hunter intimidation on snare target', 1, 'intimidation on snare target [h:object|trigger] [c:intimidation on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter intimidation|intimidation] (25.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (516, 'trigger:no travel target', 1, 'no travel target [h:object|trigger] [c:no travel target|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|choose travel target] (6.000) for [h:strategy|travel]\r\nExecutes: [h:action|choose travel target] (6.000) for [h:strategy|travel once]', '', '', '', '', '', '', '', '', '', 0), - (517, 'action:paladin retribution aura', 1, 'retribution aura [h:object|action] [c:do retribution aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura protection raid|aura protection raid]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura protection pve|aura protection pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura protection pvp|aura protection pvp]\r\nTriggers from: [h:trigger:paladin retribution aura|retribution aura] with relevance (10.000) for [h:strategy:paladin aura retribution|aura retribution]', '', '', '', '', '', '', '', '', '', 0), - (518, 'trigger:gossip hello', 1, 'gossip hello [h:object|trigger] [c:gossip hello|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|trainer] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|talk to quest giver] (100.000)[h:action|accept all quests] (100.000) for [h:strategy|accept all quests]\r\nExecutes: [h:action|trainer] (100.000) for [h:strategy|default]\r\nExecutes: [h:action|talk to quest giver] (100.000) for [h:strategy|quest]\r\nDead state behavior:\r\nExecutes: [h:action|trainer] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (517, 'action:paladin retribution aura', 1, 'retribution aura [h:object|action] [c:do retribution aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura protection pve|aura protection pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura protection pvp|aura protection pvp]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura protection raid|aura protection raid]\r\nTriggers from: [h:trigger:paladin retribution aura|retribution aura] with relevance (10.000) for [h:strategy:paladin aura retribution|aura retribution]', '', '', '', '', '', '', '', '', '', 0), + (518, 'trigger:gossip hello', 1, 'gossip hello [h:object|trigger] [c:gossip hello|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|trainer] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|accept all quests] (100.000)[h:action|talk to quest giver] (100.000) for [h:strategy|accept all quests]\r\nExecutes: [h:action|talk to quest giver] (100.000) for [h:strategy|quest]\r\nExecutes: [h:action|trainer] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|trainer] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (519, 'action:mage spellsteal', 1, 'spellsteal [h:object|action] [c:do spellsteal|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage spellsteal|spellsteal] with relevance (40.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage spellsteal|spellsteal] with relevance (40.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage spellsteal|spellsteal] with relevance (40.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage spellsteal|spellsteal] with relevance (40.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage spellsteal|spellsteal] with relevance (40.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage spellsteal|spellsteal] with relevance (40.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage spellsteal|spellsteal] with relevance (40.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage spellsteal|spellsteal] with relevance (40.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage spellsteal|spellsteal] with relevance (40.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (520, 'trigger:enemy five yards', 1, 'enemy five yards [h:object|trigger] [c:enemy five yards|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid nature\'s grasp|nature\'s grasp] (90.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), + (520, 'trigger:enemy five yards', 1, 'enemy five yards [h:object|trigger] [c:enemy five yards|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid nature\'s grasp|nature\'s grasp] (20.000) for [h:strategy:druid cc restoration raid|cc restoration raid]\r\nExecutes: [h:action:druid nature\'s grasp|nature\'s grasp] (20.000) for [h:strategy:druid cc balance pve|cc balance pve]\r\nExecutes: [h:action:druid nature\'s grasp|nature\'s grasp] (20.000) for [h:strategy:druid cc balance pvp|cc balance pvp]\r\nExecutes: [h:action:druid nature\'s grasp|nature\'s grasp] (20.000) for [h:strategy:druid cc balance raid|cc balance raid]\r\nExecutes: [h:action:druid nature\'s grasp|nature\'s grasp] (20.000) for [h:strategy:druid cc restoration pve|cc restoration pve]\r\nExecutes: [h:action:druid nature\'s grasp|nature\'s grasp] (20.000) for [h:strategy:druid cc restoration pvp|cc restoration pvp]', '', '', '', '', '', '', '', '', '', 0), (521, 'trigger:rpg duel', 1, 'rpg duel [h:object|trigger] [c:rpg duel|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg duel] (1.010) for [h:strategy|rpg player]', '', '', '', '', '', '', '', '', '', 0), (522, 'trigger:has nearest adds', 1, 'has nearest adds [h:object|trigger] [c:has nearest adds|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|runaway] (50.000) for [h:strategy|flee from adds]', '', '', '', '', '', '', '', '', '', 0), (523, 'action:rpg use', 1, 'rpg use [h:object|action] [c:do rpg use|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg use] with relevance (1.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), (524, 'trigger:duel requested', 1, 'duel requested [h:object|trigger] [c:duel requested|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|accept duel] (100.000) for [h:strategy|duel]\r\nNon combat behavior:\r\nExecutes: [h:action|accept duel] (100.000) for [h:strategy|duel]', '', '', '', '', '', '', '', '', '', 0), (525, 'action:mail', 1, 'mail [h:object|action] [c:do mail|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|mail] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|mail] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|mail] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|mail] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (526, 'trigger:out of react range', 1, 'out of react range [h:object|trigger] [c:out of react range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|flee to master] (20.000)[h:action|check mount state] (20.000) for [h:strategy|follow]\r\nNon combat behavior:\r\nExecutes: [h:action|flee to master] (20.000)[h:action|check mount state] (20.000) for [h:strategy|follow]\r\nDead state behavior:\r\nExecutes: [h:action|flee to master] (20.000)[h:action|check mount state] (20.000) for [h:strategy|follow]', '', '', '', '', '', '', '', '', '', 0), + (526, 'trigger:out of react range', 1, 'out of react range [h:object|trigger] [c:out of react range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|check mount state] (20.000)[h:action|flee to master] (20.000) for [h:strategy|follow]\r\nNon combat behavior:\r\nExecutes: [h:action|check mount state] (20.000)[h:action|flee to master] (20.000) for [h:strategy|follow]\r\nDead state behavior:\r\nExecutes: [h:action|check mount state] (20.000)[h:action|flee to master] (20.000) for [h:strategy|follow]', '', '', '', '', '', '', '', '', '', 0), (527, 'trigger:no attackers', 1, 'no attackers [h:object|trigger] [c:no attackers|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|attack duel opponent] (70.000) for [h:strategy|duel]\r\nNon combat behavior:\r\nExecutes: [h:action|attack duel opponent] (70.000) for [h:strategy|duel]', '', '', '', '', '', '', '', '', '', 0), (528, 'trigger:not dps aoe target active', 1, 'not dps aoe target active [h:object|trigger] [c:not dps aoe target active|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|dps aoe] (60.000) for [h:strategy|dps aoe]', '', '', '', '', '', '', '', '', '', 0), (529, 'trigger:warrior sword and board', 1, 'sword and board [h:object|trigger] [c:sword and board|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior shield slam|shield slam] (20.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior shield slam|shield slam] (20.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior shield slam|shield slam] (20.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), @@ -551,59 +551,59 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (531, 'trigger:collision', 1, 'collision [h:object|trigger] [c:collision|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|move out of collision] (2.000) for [h:strategy|collision]', '', '', '', '', '', '', '', '', '', 0), (532, 'trigger:warlock my attacker count', 1, 'my attacker count [h:object|trigger] [c:my attacker count|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock soul shatter|soul shatter] (55.000) for [h:strategy:warlock dps|dps]\r\nExecutes: [h:action:warlock soul shatter|soul shatter] (55.000) for [h:strategy:warlock tank|tank]', '', '', '', '', '', '', '', '', '', 0), (533, 'trigger:bg active', 1, 'bg active [h:object|trigger] [c:bg active|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|check flag] (70.000) for [h:strategy|arathi]\r\nExecutes: [h:action|check flag] (70.000) for [h:strategy|eye]\r\nExecutes: [h:action|check flag] (70.000) for [h:strategy|isle]\r\nExecutes: [h:action|check flag] (70.000) for [h:strategy|warsong]\r\nNon combat behavior:\r\nExecutes: [h:action|check flag] (70.000) for [h:strategy|arathi]\r\nExecutes: [h:action|move to objective] (1.000)[h:action|check mount state] (2.000) for [h:strategy|battleground]\r\nExecutes: [h:action|check flag] (70.000) for [h:strategy|eye]\r\nExecutes: [h:action|check flag] (70.000) for [h:strategy|isle]\r\nExecutes: [h:action|check flag] (70.000) for [h:strategy|warsong]', '', '', '', '', '', '', '', '', '', 0), - (534, 'trigger:random', 1, 'random [h:object|trigger] [c:random|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|bg join] (100.000) for [h:strategy|bg]\r\nExecutes: [h:action|petition offer nearby] (4.000)[h:action|guild manage nearby] (4.000) for [h:strategy|guild]\r\nExecutes: [h:action|emote] (1.000)[h:action|mount anim] (1.000) for [h:strategy|emote]\r\nExecutes: [h:action|clean quest log] (6.000)[h:action|smart destroy] (1.000)[h:action|random recipe] (1.000)[h:action|disenchant random item] (1.000)[h:action|auto share quest] (0.900)[h:action|use random quest item] (0.900)[h:action|enchant random item] (1.000) for [h:strategy|maintenance]\r\nExecutes: [h:action|invite guild] (4.000) for [h:strategy|group]\r\nExecutes: [h:action|lfg join] (100.000) for [h:strategy|lfg]', '', '', '', '', '', '', '', '', '', 0), + (534, 'trigger:random', 1, 'random [h:object|trigger] [c:random|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:free action potion|free action potion] (20.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:free action potion|free action potion] (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:free action potion|free action potion] (20.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:free action potion|free action potion] (20.000) for [h:strategy:druid tank feral pvp|tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (535, 'action:help', 1, 'help [h:object|action] [c:do help|execute]\r\nThis chat command will make the bot give you help on various topics.\r\nEach help topic will provide various chat-links which can be linked in chat.\r\nLinks can be copied to chat with shift-click and when sent to a bot will provide feedback.\r\nIt is possible to search for help topics by adding part of the topic name after the command.\r\nExample commands: \'help\' and \'help rpg\'.\r\nCombat behavior:\r\nTriggers from: [h:trigger|help] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|help] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|help] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|help] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (536, 'action:warlock corruption', 1, 'corruption [h:object|action] [c:do corruption|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), - (537, 'action:mage fire blast', 1, 'fire blast [h:object|action] [c:do fire blast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (21.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (21.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (21.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (21.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (21.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (21.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (21.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (21.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (21.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), + (536, 'action:warlock corruption', 1, 'corruption [h:object|action] [c:do corruption|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (11.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (537, 'action:mage fire blast', 1, 'fire blast [h:object|action] [c:do fire blast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (22.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (22.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (22.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (22.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (22.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (22.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (22.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (22.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage target low health|target low health] with relevance (22.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), (538, 'trigger:unknown dungeon', 1, 'unknown dungeon [h:object|trigger] [c:unknown dungeon|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|give leader] (100.000) for [h:strategy|lfg]', '', '', '', '', '', '', '', '', '', 0), (539, 'action:rogue killing spree', 1, 'killing spree [h:object|action] [c:do killing spree|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue killing spree|killing spree] with relevance (24.000) for [h:strategy:rogue buff combat pvp|buff combat pvp]\r\nTriggers from: [h:trigger:rogue killing spree|killing spree] with relevance (24.000) for [h:strategy:rogue buff combat pve|buff combat pve]\r\nTriggers from: [h:trigger:rogue killing spree|killing spree] with relevance (24.000) for [h:strategy:rogue buff combat raid|buff combat raid]', '', '', '', '', '', '', '', '', '', 0), (540, 'trigger:rpg taxi', 1, 'rpg taxi [h:object|trigger] [c:rpg taxi|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg taxi] (1.005) for [h:strategy|rpg explore]', '', '', '', '', '', '', '', '', '', 0), - (541, 'action:paladin seal of command', 1, 'seal of command [h:object|action] [c:do seal of command|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin seal of justice|seal of justice] with relevance (13.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:paladin seal of justice|seal of justice] with relevance (13.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:paladin seal of justice|seal of justice] with relevance (13.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (541, 'action:paladin seal of command', 1, 'seal of command [h:object|action] [c:do seal of command|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin seal|seal] with relevance (13.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:paladin seal|seal] with relevance (13.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:paladin seal|seal] with relevance (13.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), (542, 'trigger:rpg discover', 1, 'rpg discover [h:object|trigger] [c:rpg discover|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg discover] (1.110) for [h:strategy|rpg explore]', '', '', '', '', '', '', '', '', '', 0), - (543, 'action:hunter deterrence', 1, 'deterrence [h:object|action] [c:do deterrence|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (60.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), + (543, 'action:hunter deterrence', 1, 'deterrence [h:object|action] [c:do deterrence|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (91.000) for [h:strategy:hunter buff marksmanship pve|buff marksmanship pve]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (91.000) for [h:strategy:hunter buff survival raid|buff survival raid]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (91.000) for [h:strategy:hunter buff beast mastery raid|buff beast mastery raid]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (91.000) for [h:strategy:hunter buff beast mastery pvp|buff beast mastery pvp]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (91.000) for [h:strategy:hunter buff beast mastery pve|buff beast mastery pve]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (91.000) for [h:strategy:hunter buff marksmanship pvp|buff marksmanship pvp]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (91.000) for [h:strategy:hunter buff marksmanship raid|buff marksmanship raid]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (91.000) for [h:strategy:hunter buff survival pve|buff survival pve]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (91.000) for [h:strategy:hunter buff survival pvp|buff survival pvp]', '', '', '', '', '', '', '', '', '', 0), (544, 'trigger:rpg home bind', 1, 'rpg home bind [h:object|trigger] [c:rpg home bind|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg home bind] (1.060) for [h:strategy|rpg explore]', '', '', '', '', '', '', '', '', '', 0), - (545, 'action:priest silence on enemy healer', 1, 'silence on enemy healer [h:object|action] [c:do silence on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest silence on enemy healer|silence on enemy healer] with relevance (40.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:priest silence on enemy healer|silence on enemy healer] with relevance (40.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (546, 'trigger:cannibalize', 1, 'cannibalize [h:object|trigger] [c:cannibalize|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|perception] (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nExecutes: [h:action|perception] (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), - (547, 'action:hunter counterattack', 1, 'counterattack [h:object|action] [c:do counterattack|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter counterattack|counterattack] with relevance (36.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), + (545, 'action:priest silence on enemy healer', 1, 'silence on enemy healer [h:object|action] [c:do silence on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest silence on enemy healer|silence on enemy healer] with relevance (40.000) for [h:strategy:priest cc shadow raid|cc shadow raid]\r\nTriggers from: [h:trigger:priest silence on enemy healer|silence on enemy healer] with relevance (40.000) for [h:strategy:priest cc shadow pve|cc shadow pve]\r\nTriggers from: [h:trigger:priest silence on enemy healer|silence on enemy healer] with relevance (40.000) for [h:strategy:priest cc shadow pvp|cc shadow pvp]', '', '', '', '', '', '', '', '', '', 0), + (546, 'trigger:cannibalize', 1, 'cannibalize [h:object|trigger] [c:cannibalize|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|cannibalize] (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nExecutes: [h:action|cannibalize] (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), + (547, 'action:hunter counterattack', 1, 'counterattack [h:object|action] [c:do counterattack|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter counterattack|counterattack] with relevance (22.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nTriggers from: [h:trigger:hunter counterattack|counterattack] with relevance (22.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nTriggers from: [h:trigger:hunter counterattack|counterattack] with relevance (22.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nTriggers from: [h:trigger:hunter counterattack|counterattack] with relevance (22.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nTriggers from: [h:trigger:hunter counterattack|counterattack] with relevance (22.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nTriggers from: [h:trigger:hunter counterattack|counterattack] with relevance (22.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nTriggers from: [h:trigger:hunter counterattack|counterattack] with relevance (22.000) for [h:strategy:hunter survival pve|survival pve]\r\nTriggers from: [h:trigger:hunter counterattack|counterattack] with relevance (22.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nTriggers from: [h:trigger:hunter counterattack|counterattack] with relevance (22.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), (548, 'trigger:enter molten core', 1, 'enter molten core [h:object|trigger] [c:enter molten core|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|enable molten core strategy] (100.000) for [h:strategy|dungeon]\r\nNon combat behavior:\r\nExecutes: [h:action|enable molten core strategy] (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), (549, 'trigger:leave onyxia\'s lair', 1, 'leave onyxia\'s lair [h:object|trigger] [c:leave onyxia\'s lair|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|disable onyxia\'s lair strategy] (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), (550, 'trigger:leave molten core', 1, 'leave molten core [h:object|trigger] [c:leave molten core|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|disable molten core strategy] (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), (551, 'trigger:bg waiting', 1, 'bg waiting [h:object|trigger] [c:bg waiting|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|move to start] (1.000) for [h:strategy|battleground]', '', '', '', '', '', '', '', '', '', 0), (552, 'trigger:druid my attacker count', 1, 'my attacker count [h:object|trigger] [c:my attacker count|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid cower|cower] (91.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid cower|cower] (91.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), - (553, 'action:warrior death wish', 1, 'death wish [h:object|action] [c:do death wish|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior death wish|death wish] with relevance (20.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:warrior death wish|death wish] with relevance (20.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:warrior death wish|death wish] with relevance (20.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]', '', '', '', '', '', '', '', '', '', 0), + (553, 'action:warrior death wish', 1, 'death wish [h:object|action] [c:do death wish|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior death wish|death wish] with relevance (20.000) for [h:strategy:warrior boost fury pve|boost fury pve]\r\nTriggers from: [h:trigger:warrior death wish|death wish] with relevance (20.000) for [h:strategy:warrior boost fury pvp|boost fury pvp]\r\nTriggers from: [h:trigger:warrior death wish|death wish] with relevance (20.000) for [h:strategy:warrior boost fury raid|boost fury raid]', '', '', '', '', '', '', '', '', '', 0), (554, 'trigger:rpg queue bg', 1, 'rpg queue bg [h:object|trigger] [c:rpg queue bg|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg queue bg] (1.085) for [h:strategy|rpg bg]', '', '', '', '', '', '', '', '', '', 0), - (555, 'trigger:warrior aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior demoralizing shout|demoralizing shout] (20.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nExecutes: [h:action:warrior demoralizing shout|demoralizing shout] (20.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (20.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (20.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (20.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nExecutes: [h:action:warrior demoralizing shout|demoralizing shout] (20.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), + (555, 'trigger:warrior aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (25.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (25.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (25.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), (556, 'action:flag', 1, 'flag [h:object|action] [c:do flag|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|craft] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|craft] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|craft] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|craft] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (557, 'action:shaman searing totem', 1, 'searing totem [h:object|action] [c:do searing totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totem fire searing|totem fire searing]', '', '', '', '', '', '', '', '', '', 0), (558, 'trigger:bg invite active', 1, 'bg invite active [h:object|trigger] [c:bg invite active|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|bg status check] (100.000) for [h:strategy|bg]', '', '', '', '', '', '', '', '', '', 0), - (559, 'trigger:party member almost full health', 1, 'party member almost full health [h:object|trigger] [c:party member almost full health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid rejuvenation on party|rejuvenation on party] (61.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:druid rejuvenation on party|rejuvenation on party] (61.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), - (560, 'trigger:generic trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|set behind] (59.000) for [h:strategy|behind]', '', '', '', '', '', '', '', '', '', 0), + (559, 'trigger:party member almost full health', 1, 'party member almost full health [h:object|trigger] [c:party member almost full health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid rejuvenation on party|rejuvenation on party] (60.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid rejuvenation on party|rejuvenation on party] (60.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid rejuvenation on party|rejuvenation on party] (60.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (560, 'trigger:generic trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|set behind] (35.000) for [h:strategy|behind]', '', '', '', '', '', '', '', '', '', 0), (561, 'action:outfit', 1, 'outfit [h:object|action] [c:do outfit|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|outfit] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|outfit] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|outfit] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|outfit] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (562, 'action:hunter viper sting', 1, 'viper sting [h:object|action] [c:do viper sting|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (24.000) for [h:strategy:hunter dps debuff|dps debuff]', '', '', '', '', '', '', '', '', '', 0), - (563, 'trigger:timer', 1, 'timer [h:object|trigger] [c:timer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest mind blast|mind blast] (10.000) for [h:strategy:priest shadow|shadow]\r\nExecutes: [h:action:priest mind blast|mind blast] (10.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (564, 'action:shaman cure poison on party', 1, 'cure poison on party [h:object|action] [c:do cure poison on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]', '', '', '', '', '', '', '', '', '', 0), - (565, 'action:goblin sapper', 1, 'goblin sapper [h:object|action] [c:do goblin sapper|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (21.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (21.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (21.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (21.000) for [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (21.000) for [h:strategy:warlock aoe demonology pvp|aoe demonology pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (21.000) for [h:strategy:warlock aoe demonology raid|aoe demonology raid]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (21.000) for [h:strategy:warlock aoe destruction pve|aoe destruction pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (21.000) for [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (21.000) for [h:strategy:warlock aoe destruction raid|aoe destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (562, 'action:hunter viper sting', 1, 'viper sting [h:object|action] [c:do viper sting|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (15.000) for [h:strategy:hunter sting beast mastery pve|sting beast mastery pve]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (15.000) for [h:strategy:hunter sting beast mastery pvp|sting beast mastery pvp]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (15.000) for [h:strategy:hunter sting beast mastery raid|sting beast mastery raid]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (15.000) for [h:strategy:hunter sting marksmanship pve|sting marksmanship pve]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (15.000) for [h:strategy:hunter sting marksmanship pvp|sting marksmanship pvp]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (15.000) for [h:strategy:hunter sting marksmanship raid|sting marksmanship raid]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (15.000) for [h:strategy:hunter sting survival pve|sting survival pve]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (15.000) for [h:strategy:hunter sting survival pvp|sting survival pvp]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (15.000) for [h:strategy:hunter sting survival raid|sting survival raid]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (20.000) for [h:strategy:hunter sting viper|sting viper]', '', '', '', '', '', '', '', '', '', 0), + (563, 'trigger:timer', 1, 'timer [h:object|trigger] [c:timer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|enter vehicle] (85.000) for [h:strategy|isle]\r\nExecutes: [h:action|ready check] (100.000) for [h:strategy|ready check]\r\nNon combat behavior:\r\nExecutes: [h:action|enter vehicle] (85.000) for [h:strategy|isle]\r\nExecutes: [h:action|add gathering loot] (2.000) for [h:strategy|gather]\r\nExecutes: [h:action|ready check] (100.000) for [h:strategy|ready check]\r\nDead state behavior:\r\nExecutes: [h:action|ready check] (100.000) for [h:strategy|ready check]', '', '', '', '', '', '', '', '', '', 0), + (564, 'action:shaman cure poison on party', 1, 'cure poison on party [h:object|action] [c:do cure poison on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]', '', '', '', '', '', '', '', '', '', 0), + (565, 'action:goblin sapper', 1, 'goblin sapper [h:object|action] [c:do goblin sapper|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe dps feral raid|aoe dps feral raid]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe restoration raid|aoe restoration raid]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe balance pvp|aoe balance pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe balance pve|aoe balance pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe dps feral pve|aoe dps feral pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe balance raid|aoe balance raid]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe restoration pve|aoe restoration pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe dps feral pvp|aoe dps feral pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe restoration pvp|aoe restoration pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe tank feral pve|aoe tank feral pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe tank feral pvp|aoe tank feral pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe tank feral raid|aoe tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (566, 'trigger:castnc', 1, 'castnc [h:object|trigger] [c:castnc|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|cast custom nc spell] (0.900) for [h:strategy|rpg craft]', '', '', '', '', '', '', '', '', '', 0), - (567, 'trigger:enemy flagcarrier near', 1, 'enemy flagcarrier near [h:object|trigger] [c:enemy flagcarrier near|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid dash|dash] (81.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid dash|dash] (81.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), + (567, 'trigger:enemy flagcarrier near', 1, 'enemy flagcarrier near [h:object|trigger] [c:enemy flagcarrier near|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid dash|dash] (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:druid dash|dash] (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:druid dash|dash] (20.000)[h:action:druid unstealth|unstealth] (20.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]', '', '', '', '', '', '', '', '', '', 0), (568, 'trigger:guild leave', 1, 'guild leave [h:object|trigger] [c:guild leave|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|guild leave] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|guild leave] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|guild leave] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|guild leave] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (569, 'trigger:hire', 1, 'hire [h:object|trigger] [c:hire|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|hire] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|hire] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|hire] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|hire] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (570, 'trigger:position', 1, 'position [h:object|trigger] [c:position|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|position] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|position] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|position] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|position] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (571, 'trigger:help', 1, 'help [h:object|trigger] [c:help|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|help] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|help] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|help] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|help] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (572, 'trigger:los', 1, 'los [h:object|trigger] [c:los|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|los] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|los] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|los] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|los] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (573, 'action:warrior defensive stance', 1, 'defensive stance [h:object|action] [c:do defensive stance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior defensive stance|defensive stance] with relevance (30.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:warrior defensive stance|defensive stance] with relevance (30.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:warrior defensive stance|defensive stance] with relevance (30.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (573, 'action:warrior defensive stance', 1, 'defensive stance [h:object|action] [c:do defensive stance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior defensive stance|defensive stance] with relevance (30.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:warrior defensive stance|defensive stance] with relevance (30.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:warrior defensive stance|defensive stance] with relevance (30.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), (574, 'action:napalm', 1, 'napalm [h:object|action] [c:do napalm|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|in vehicle] with relevance (70.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|in vehicle] with relevance (70.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), (575, 'action:choose rpg target', 1, 'choose rpg target [h:object|action] [c:do choose rpg target|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|no rpg target] with relevance (5.000) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), - (576, 'trigger:priest holy fire', 1, 'holy fire [h:object|trigger] [c:holy fire|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest holy fire|holy fire] (19.000) for [h:strategy:priest holy|holy]', '', '', '', '', '', '', '', '', '', 0), + (576, 'trigger:priest holy fire', 1, 'holy fire [h:object|trigger] [c:holy fire|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest holy fire|holy fire] (12.000) for [h:strategy:priest offdps pve|offdps pve]\r\nExecutes: [h:action:priest holy fire|holy fire] (12.000) for [h:strategy:priest offdps pvp|offdps pvp]\r\nExecutes: [h:action:priest holy fire|holy fire] (12.000) for [h:strategy:priest offdps raid|offdps raid]', '', '', '', '', '', '', '', '', '', 0), (577, 'trigger:buff', 1, 'buff [h:object|trigger] [c:buff|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|buff] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|buff] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|buff] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|buff] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (578, 'trigger:leave', 1, 'leave [h:object|trigger] [c:leave|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|leave] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|leave] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|leave] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|leave] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (579, 'trigger:reputation', 1, 'reputation [h:object|trigger] [c:reputation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|reputation] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|reputation] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|reputation] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|reputation] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (580, 'trigger:share', 1, 'share [h:object|trigger] [c:share|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|share quest] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|share quest] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|share quest] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|share quest] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (581, 'trigger:spell', 1, 'spell [h:object|trigger] [c:spell|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|spell] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|spell] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|spell] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|spell] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (582, 'trigger:rogue blade flurry', 1, 'blade flurry [h:object|trigger] [c:blade flurry|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue blade flurry|blade flurry] (25.000) for [h:strategy:rogue buff combat pvp|buff combat pvp]\r\nExecutes: [h:action:rogue blade flurry|blade flurry] (25.000) for [h:strategy:rogue buff combat pve|buff combat pve]\r\nExecutes: [h:action:rogue blade flurry|blade flurry] (25.000) for [h:strategy:rogue buff combat raid|buff combat raid]', '', '', '', '', '', '', '', '', '', 0), + (582, 'trigger:rogue blade flurry', 1, 'blade flurry [h:object|trigger] [c:blade flurry|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue blade flurry|blade flurry] (24.000) for [h:strategy:rogue boost combat pve|boost combat pve]\r\nExecutes: [h:action:rogue blade flurry|blade flurry] (24.000) for [h:strategy:rogue boost combat pvp|boost combat pvp]\r\nExecutes: [h:action:rogue blade flurry|blade flurry] (24.000) for [h:strategy:rogue boost combat raid|boost combat raid]', '', '', '', '', '', '', '', '', '', 0), (583, 'action:spirit healer', 1, 'spirit healer [h:object|action] [c:do spirit healer|execute]\r\n\r\nDead state behavior:\r\nTriggers from: [h:trigger|val] with relevance (102.000) for [h:strategy|dead]\r\nReaction behavior:\r\nTriggers from: [h:trigger|revive] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (584, 'trigger:log', 1, 'log [h:object|trigger] [c:log|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|log] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|log] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|log] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|log] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (585, 'trigger:mage my attacker count', 1, 'my attacker count [h:object|trigger] [c:my attacker count|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (586, 'trigger:priest cure disease', 1, 'cure disease [h:object|trigger] [c:cure disease|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure|cure]\r\nNon combat behavior:\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure|cure]', '', '', '', '', '', '', '', '', '', 0), + (585, 'trigger:mage my attacker count', 1, 'my attacker count [h:object|trigger] [c:my attacker count|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage frost raid|frost raid]\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), + (586, 'trigger:priest cure disease', 1, 'cure disease [h:object|trigger] [c:cure disease|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure shadow pve|cure shadow pve]\r\nNon combat behavior:\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nExecutes: [h:action:priest abolish disease|abolish disease] (51.000) for [h:strategy:priest cure shadow pve|cure shadow pve]', '', '', '', '', '', '', '', '', '', 0), (587, 'value:talk target', 1, 'talk target [h:object|value] [c:cdebug values talk target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (588, 'trigger:flee', 1, 'flee [h:object|trigger] [c:flee|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|flee chat shortcut] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (589, 'trigger:ll', 1, 'll [h:object|trigger] [c:ll|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|ll] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|ll] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|ll] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|ll] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), @@ -613,78 +613,78 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (593, 'action:arena team accept', 1, 'arena team accept [h:object|action] [c:do arena team accept|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|arena team invite] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|arena team invite] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|arena team invite] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (594, 'value:inside target', 1, 'inside target [h:object|value] [c:cdebug values inside target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (595, 'trigger:co', 1, 'co [h:object|trigger] [c:co|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|co] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|co] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|co] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|co] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (596, 'action:hunter volley', 1, 'volley [h:object|action] [c:do volley|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (10.000) for [h:strategy:hunter aoe|aoe]', '', '', '', '', '', '', '', '', '', 0), + (596, 'action:hunter volley', 1, 'volley [h:object|action] [c:do volley|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (23.000) for [h:strategy:hunter aoe marksmanship raid|aoe marksmanship raid]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (23.000) for [h:strategy:hunter aoe marksmanship pve|aoe marksmanship pve]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (23.000) for [h:strategy:hunter aoe beast mastery pve|aoe beast mastery pve]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (23.000) for [h:strategy:hunter aoe beast mastery pvp|aoe beast mastery pvp]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (23.000) for [h:strategy:hunter aoe beast mastery raid|aoe beast mastery raid]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (23.000) for [h:strategy:hunter aoe survival pve|aoe survival pve]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (23.000) for [h:strategy:hunter aoe marksmanship pvp|aoe marksmanship pvp]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (23.000) for [h:strategy:hunter aoe survival pvp|aoe survival pvp]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (23.000) for [h:strategy:hunter aoe survival raid|aoe survival raid]', '', '', '', '', '', '', '', '', '', 0), (597, 'trigger:guild remove', 1, 'guild remove [h:object|trigger] [c:guild remove|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|guild remove] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|guild remove] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|guild remove] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|guild remove] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (598, 'trigger:priest vampiric touch', 1, 'vampiric touch [h:object|trigger] [c:vampiric touch|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest vampiric touch|vampiric touch] (11.000) for [h:strategy:priest shadow debuff|shadow debuff]\r\nExecutes: [h:action:priest vampiric touch|vampiric touch] (11.000) for [h:strategy:priest shadow debuff|shadow debuff]', '', '', '', '', '', '', '', '', '', 0), (599, 'trigger:wait for attack time', 1, 'wait for attack time [h:object|trigger] [c:wait for attack time|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|wait for attack time] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (600, 'action:rogue stealth', 1, 'stealth [h:object|action] [c:do stealth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (601, 'trigger:enemy too close for melee', 1, 'enemy too close for melee [h:object|trigger] [c:enemy too close for melee|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:move out of enemy contact|move out of enemy contact] (18.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:move out of enemy contact|move out of enemy contact] (18.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:move out of enemy contact|move out of enemy contact] (18.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:move out of enemy contact|move out of enemy contact] (18.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (600, 'action:rogue stealth', 1, 'stealth [h:object|action] [c:do stealth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (601, 'trigger:enemy too close for melee', 1, 'enemy too close for melee [h:object|trigger] [c:enemy too close for melee|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:move out of enemy contact|move out of enemy contact] (10.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:move out of enemy contact|move out of enemy contact] (10.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:move out of enemy contact|move out of enemy contact] (10.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (602, 'trigger:spells', 1, 'spells [h:object|trigger] [c:spells|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|spells] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|spells] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|spells] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|spells] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (603, 'value:aoe position', 1, 'aoe position [h:object|value] [c:cdebug values aoe position|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (604, 'trigger:activate taxi', 1, 'activate taxi [h:object|trigger] [c:activate taxi|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|taxi] (100.000)[h:action|remember taxi] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|taxi] (100.000)[h:action|remember taxi] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|taxi] (100.000)[h:action|remember taxi] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (605, 'action:priest shadow word: pain', 1, 'shadow word: pain [h:object|action] [c:do shadow word: pain|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest shadow word: pain|shadow word: pain] with relevance (12.000) for [h:strategy:priest shadow debuff|shadow debuff]\r\nTriggers from: [h:trigger:priest shadow word: pain|shadow word: pain] with relevance (12.000) for [h:strategy:priest shadow debuff|shadow debuff]', '', '', '', '', '', '', '', '', '', 0), + (604, 'trigger:activate taxi', 1, 'activate taxi [h:object|trigger] [c:activate taxi|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|remember taxi] (100.000)[h:action|taxi] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|remember taxi] (100.000)[h:action|taxi] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|remember taxi] (100.000)[h:action|taxi] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (605, 'action:priest shadow word: pain', 1, 'shadow word: pain [h:object|action] [c:do shadow word: pain|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest shadow word: pain|shadow word: pain] with relevance (13.000) for [h:strategy:priest offdps pve|offdps pve]\r\nTriggers from: [h:trigger:priest shadow word: pain|shadow word: pain] with relevance (13.000) for [h:strategy:priest offdps pvp|offdps pvp]\r\nTriggers from: [h:trigger:priest shadow word: pain|shadow word: pain] with relevance (13.000) for [h:strategy:priest offdps raid|offdps raid]\r\nTriggers from: [h:trigger:priest shadow word: pain|shadow word: pain] with relevance (12.000) for [h:strategy:priest shadow pve|shadow pve]\r\nTriggers from: [h:trigger:priest shadow word: pain|shadow word: pain] with relevance (12.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nTriggers from: [h:trigger:priest shadow word: pain|shadow word: pain] with relevance (12.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), (606, 'trigger:ra', 1, 'ra [h:object|trigger] [c:ra|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|ra] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|ra] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|ra] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|ra] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (607, 'trigger:nc', 1, 'nc [h:object|trigger] [c:nc|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|nc] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|nc] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|nc] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|nc] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (608, 'action:paladin hammer of justice', 1, 'hammer of justice [h:object|action] [c:do hammer of justice|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), - (609, 'action:priest fear ward', 1, 'fear ward [h:object|action] [c:do fear ward|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (10.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), - (610, 'trigger:priest shadow protection on party', 1, 'shadow protection on party [h:object|trigger] [c:shadow protection on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest shadow protection on party|shadow protection on party] (12.000) for [h:strategy:priest rshadow|rshadow]', '', '', '', '', '', '', '', '', '', 0), - (611, 'action:accept duel', 1, 'accept duel [h:object|action] [c:do accept duel|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|duel requested] with relevance (100.000) for [h:strategy|duel]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|duel requested] with relevance (100.000) for [h:strategy|duel]', '', '', '', '', '', '', '', '', '', 0), + (608, 'action:paladin hammer of justice', 1, 'hammer of justice [h:object|action] [c:do hammer of justice|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nTriggers from: [h:trigger:paladin hammer of justice|hammer of justice] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (609, 'action:priest fear ward', 1, 'fear ward [h:object|action] [c:do fear ward|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (90.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (90.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (90.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (90.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (90.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (90.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (90.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (90.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (90.000) for [h:strategy:priest buff shadow raid|buff shadow raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest fear ward|fear ward] with relevance (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (610, 'trigger:priest shadow protection on party', 1, 'shadow protection on party [h:object|trigger] [c:shadow protection on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest shadow protection on party|shadow protection on party] (12.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest shadow protection on party|shadow protection on party] (12.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest shadow protection on party|shadow protection on party] (12.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest shadow protection on party|shadow protection on party] (12.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest shadow protection on party|shadow protection on party] (12.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest shadow protection on party|shadow protection on party] (12.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest shadow protection on party|shadow protection on party] (12.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest shadow protection on party|shadow protection on party] (12.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest shadow protection on party|shadow protection on party] (12.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (611, 'action:accept duel', 1, 'accept duel [h:object|action] [c:do accept duel|execute]\r\nThis action clicks the accept button when invited to join a bg.\r\nAfter joining the bg strategies are reset.\r\nThis action is currently disabled.\r\nCombat behavior:\r\nTriggers from: [h:trigger|duel requested] with relevance (100.000) for [h:strategy|duel]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|duel requested] with relevance (100.000) for [h:strategy|duel]', '', '', '', '', '', '', '', '', '', 0), (612, 'trigger:stance', 1, 'stance [h:object|trigger] [c:stance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|set Stance] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|set Stance] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|set Stance] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|set Stance] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (613, 'trigger:rogue aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:rogue aoe assassination raid|aoe assassination raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:rogue aoe assassination pve|aoe assassination pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:rogue aoe assassination pvp|aoe assassination pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:rogue aoe combat pve|aoe combat pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:rogue aoe combat pvp|aoe combat pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:rogue aoe subtlety pve|aoe subtlety pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:rogue aoe combat raid|aoe combat raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:rogue aoe subtlety pvp|aoe subtlety pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:rogue aoe subtlety raid|aoe subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (613, 'trigger:rogue aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue blade flurry|blade flurry] (24.000)[h:action:oil of immolation|oil of immolation] (23.000) for [h:strategy:rogue aoe combat raid|aoe combat raid]\r\nExecutes: [h:action:rogue blade flurry|blade flurry] (24.000)[h:action:oil of immolation|oil of immolation] (23.000) for [h:strategy:rogue aoe combat pve|aoe combat pve]\r\nExecutes: [h:action:rogue blade flurry|blade flurry] (24.000)[h:action:oil of immolation|oil of immolation] (23.000) for [h:strategy:rogue aoe combat pvp|aoe combat pvp]', '', '', '', '', '', '', '', '', '', 0), (614, 'trigger:de', 1, 'de [h:object|trigger] [c:de|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|de] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|de] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|de] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|de] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (615, 'trigger:all', 1, 'all [h:object|trigger] [c:all|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|change strategy from all] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|change strategy from all] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|change strategy from all] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|change strategy from all] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (616, 'trigger:deathknight enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), + (616, 'trigger:deathknight enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000) for [h:strategy:deathknight unholy|unholy]\r\nExecutes: [h:action:deathknight death grip|death grip] (19.000)[h:action:deathknight icy touch|icy touch] (19.000)[h:action:reach melee|reach melee] (18.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), (617, 'trigger:sendmail', 1, 'sendmail [h:object|trigger] [c:sendmail|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|sendmail] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|sendmail] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|sendmail] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|sendmail] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (618, 'action:war stomp', 1, 'war stomp [h:object|action] [c:do war stomp|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|aoe] with relevance (71.000) for [h:strategy|racials]\r\nTriggers from: [h:trigger|war stomp] with relevance (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|aoe] with relevance (71.000) for [h:strategy|racials]\r\nTriggers from: [h:trigger|war stomp] with relevance (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (619, 'trigger:guild promote', 1, 'guild promote [h:object|trigger] [c:guild promote|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|guild promote] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|guild promote] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|guild promote] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|guild promote] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (620, 'action:guild accept', 1, 'guild accept [h:object|action] [c:do guild accept|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|guild accept] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|guild accept] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|guild accept] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (621, 'trigger:rpg craft', 1, 'rpg craft [h:object|trigger] [c:rpg craft|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg craft] (1.001) for [h:strategy|rpg craft]', '', '', '', '', '', '', '', '', '', 0), + (621, 'trigger:rpg craft', 1, 'rpg craft [h:object|trigger] [c:rpg craft|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg craft] (1.010) for [h:strategy|rpg craft]', '', '', '', '', '', '', '', '', '', 0), (622, 'trigger:home', 1, 'home [h:object|trigger] [c:home|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|home] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|home] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|home] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|home] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (623, 'trigger:shaman water walking on party on party', 1, 'water walking on party on party [h:object|trigger] [c:water walking on party on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (624, 'action:mage conjure food', 1, 'conjure food [h:object|action] [c:do conjure food|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), + (623, 'trigger:shaman water walking on party on party', 1, 'water walking on party on party [h:object|trigger] [c:water walking on party on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman water walking on party|water walking on party] (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]', '', '', '', '', '', '', '', '', '', 0), + (624, 'action:mage conjure food', 1, 'conjure food [h:object|action] [c:do conjure food|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage no food trigger|no food trigger] with relevance (10.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), (625, 'trigger:craft', 1, 'craft [h:object|trigger] [c:craft|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|craft] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|craft] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|craft] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|craft] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (626, 'trigger:bank', 1, 'bank [h:object|trigger] [c:bank|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|bank] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|bank] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|bank] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|bank] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (627, 'trigger:mage icy veins', 1, 'icy veins [h:object|trigger] [c:icy veins|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage icy veins|icy veins] (21.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage icy veins|icy veins] (21.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage icy veins|icy veins] (21.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (628, 'trigger:emote', 1, 'emote [h:object|trigger] [c:emote|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|emote] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|emote] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|emote] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|emote] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (629, 'trigger:warrior shockwave on snare target', 1, 'shockwave on snare target [h:object|trigger] [c:shockwave on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior shockwave on snare target|shockwave on snare target] (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nExecutes: [h:action:warrior shockwave on snare target|shockwave on snare target] (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:warrior shockwave on snare target|shockwave on snare target] (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]', '', '', '', '', '', '', '', '', '', 0), (630, 'action:enable onyxia\'s lair strategy', 1, 'enable onyxia\'s lair strategy [h:object|action] [c:do enable onyxia\'s lair strategy|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|enter onyxia\'s lair] with relevance (100.000) for [h:strategy|dungeon]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|enter onyxia\'s lair] with relevance (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), - (631, 'trigger:paladin hammer of justice on snare target', 1, 'hammer of justice on snare target [h:object|trigger] [c:hammer of justice on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (631, 'trigger:paladin hammer of justice on snare target', 1, 'hammer of justice on snare target [h:object|trigger] [c:hammer of justice on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nExecutes: [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), (632, 'trigger:mage missile barrage', 1, 'missile barrage [h:object|trigger] [c:missile barrage|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage arcane missiles|arcane missiles] (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage arcane missiles|arcane missiles] (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage arcane missiles|arcane missiles] (10.000) for [h:strategy:mage arcane pvp|arcane pvp]', '', '', '', '', '', '', '', '', '', 0), (633, 'trigger:ginvite', 1, 'ginvite [h:object|trigger] [c:ginvite|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|guild invite] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|guild invite] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|guild invite] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|guild invite] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (634, 'trigger:rogue riposte', 1, 'riposte [h:object|trigger] [c:riposte|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue riposte|riposte] (23.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nExecutes: [h:action:rogue riposte|riposte] (23.000) for [h:strategy:rogue combat pve|combat pve]\r\nExecutes: [h:action:rogue riposte|riposte] (23.000) for [h:strategy:rogue combat raid|combat raid]', '', '', '', '', '', '', '', '', '', 0), + (634, 'trigger:rogue riposte', 1, 'riposte [h:object|trigger] [c:riposte|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue riposte|riposte] (23.000) for [h:strategy:rogue combat raid|combat raid]\r\nExecutes: [h:action:rogue riposte|riposte] (23.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nExecutes: [h:action:rogue riposte|riposte] (23.000) for [h:strategy:rogue combat pve|combat pve]', '', '', '', '', '', '', '', '', '', 0), (635, 'action:disable onyxia\'s lair strategy', 1, 'disable onyxia\'s lair strategy [h:object|action] [c:do disable onyxia\'s lair strategy|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|leave onyxia\'s lair] with relevance (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), (636, 'trigger:invite', 1, 'invite [h:object|trigger] [c:invite|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|invite] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|invite] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|invite] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|invite] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (637, 'trigger:mage combustion', 1, 'combustion [h:object|trigger] [c:combustion|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage combustion|combustion] (21.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage combustion|combustion] (21.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage combustion|combustion] (21.000) for [h:strategy:mage buff fire raid|buff fire raid]', '', '', '', '', '', '', '', '', '', 0), + (637, 'trigger:mage combustion', 1, 'combustion [h:object|trigger] [c:combustion|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage combustion|combustion] (21.000) for [h:strategy:mage boost fire pve|boost fire pve]\r\nExecutes: [h:action:mage combustion|combustion] (21.000) for [h:strategy:mage boost fire pvp|boost fire pvp]\r\nExecutes: [h:action:mage combustion|combustion] (21.000) for [h:strategy:mage boost fire raid|boost fire raid]', '', '', '', '', '', '', '', '', '', 0), (638, 'action:disable molten core strategy', 1, 'disable molten core strategy [h:object|action] [c:do disable molten core strategy|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|leave molten core] with relevance (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), (639, 'trigger:summon', 1, 'summon [h:object|trigger] [c:summon|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|summon] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|summon] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|summon] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|summon] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (640, 'action:mage arcane explosion', 1, 'arcane explosion [h:object|action] [c:do arcane explosion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy too close for spell|enemy too close for spell] with relevance (20.000) for [h:strategy:mage aoe arcane pve|aoe arcane pve]\r\nTriggers from: [h:trigger:enemy too close for spell|enemy too close for spell] with relevance (20.000) for [h:strategy:mage aoe arcane pvp|aoe arcane pvp]\r\nTriggers from: [h:trigger:enemy too close for spell|enemy too close for spell] with relevance (20.000) for [h:strategy:mage aoe arcane raid|aoe arcane raid]', '', '', '', '', '', '', '', '', '', 0), (641, 'trigger:formation', 1, 'formation [h:object|trigger] [c:formation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|set formation] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|set formation] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|set formation] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|set formation] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (642, 'action:rogue blind', 1, 'blind [h:object|action] [c:do blind|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (92.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (92.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (92.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (92.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (92.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (92.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (92.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (92.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (92.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (642, 'action:rogue blind', 1, 'blind [h:object|action] [c:do blind|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (643, 'trigger:outfit', 1, 'outfit [h:object|trigger] [c:outfit|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|outfit] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|outfit] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|outfit] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|outfit] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (644, 'trigger:go', 1, 'go [h:object|trigger] [c:go|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|go] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|go] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|go] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|go] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (645, 'trigger:stay', 1, 'stay [h:object|trigger] [c:stay|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|stay chat shortcut] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (646, 'trigger:debug', 1, 'debug [h:object|trigger] [c:debug|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|debug] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|debug] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|debug] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|debug] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (647, 'trigger:warrior disarm', 1, 'disarm [h:object|trigger] [c:disarm|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior disarm|disarm] (10.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior disarm|disarm] (10.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior disarm|disarm] (10.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (647, 'trigger:warrior disarm', 1, 'disarm [h:object|trigger] [c:disarm|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior disarm|disarm] (10.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior disarm|disarm] (10.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:warrior disarm|disarm] (10.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), (648, 'action:leave far away', 1, 'leave far away [h:object|action] [c:do leave far away|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|leader is afk] with relevance (4.000) for [h:strategy|group]\r\nTriggers from: [h:trigger|seldom] with relevance (4.000) for [h:strategy|group]\r\nDead state behavior:\r\nTriggers from: [h:trigger|leader is afk] with relevance (4.000) for [h:strategy|group]\r\nTriggers from: [h:trigger|seldom] with relevance (4.000) for [h:strategy|group]', '', '', '', '', '', '', '', '', '', 0), (649, 'trigger:cdebug', 1, 'cdebug [h:object|trigger] [c:cdebug|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|debug] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|debug] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|debug] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|debug] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (650, 'action:query item usage', 1, 'query item usage [h:object|action] [c:do query item usage|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|item push result] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|item push result] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|item push result] with relevance (100.000) for [h:strategy|default]\r\nReaction behavior:\r\nTriggers from: [h:trigger|q] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (651, 'trigger:cs', 1, 'cs [h:object|trigger] [c:cs|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|cs] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|cs] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|cs] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|cs] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (652, 'action:shaman water walking', 1, 'water walking [h:object|action] [c:do water walking|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (652, 'action:shaman water walking', 1, 'water walking [h:object|action] [c:do water walking|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nTriggers from: [h:trigger:shaman water walking|water walking] with relevance (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]', '', '', '', '', '', '', '', '', '', 0), (653, 'trigger:wts', 1, 'wts [h:object|trigger] [c:wts|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|wts] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|wts] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|wts] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|wts] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (654, 'trigger:priest touch of weakness', 1, 'touch of weakness [h:object|trigger] [c:touch of weakness|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest touch of weakness|touch of weakness] (10.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), + (654, 'trigger:priest touch of weakness', 1, 'touch of weakness [h:object|trigger] [c:touch of weakness|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest touch of weakness|touch of weakness] (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest touch of weakness|touch of weakness] (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest touch of weakness|touch of weakness] (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest touch of weakness|touch of weakness] (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest touch of weakness|touch of weakness] (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest touch of weakness|touch of weakness] (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest touch of weakness|touch of weakness] (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest touch of weakness|touch of weakness] (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest touch of weakness|touch of weakness] (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (655, 'value:nearest friendly players', 1, 'nearest friendly players [h:object|value] [c:cdebug values nearest friendly players|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (656, 'trigger:rtsc', 1, 'rtsc [h:object|trigger] [c:rtsc|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|rtsc] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|rtsc] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|rtsc] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|rtsc] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (657, 'action:spell', 1, 'spell [h:object|action] [c:do spell|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|spell] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|spell] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|spell] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|spell] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (658, 'trigger:range', 1, 'range [h:object|trigger] [c:range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|range] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|range] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|range] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|range] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (659, 'trigger:medium mana', 1, 'medium mana [h:object|trigger] [c:medium mana|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin judgement of wisdom|judgement of wisdom] (22.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin judgement of wisdom|judgement of wisdom] (22.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nExecutes: [h:action:paladin judgement of wisdom|judgement of wisdom] (22.000) for [h:strategy:paladin protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (659, 'trigger:medium mana', 1, 'medium mana [h:object|trigger] [c:medium mana|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin seal of wisdom|seal of wisdom] (21.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:paladin seal of wisdom|seal of wisdom] (21.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin seal of wisdom|seal of wisdom] (21.000) for [h:strategy:paladin protection pvp|protection pvp]', '', '', '', '', '', '', '', '', '', 0), (660, 'trigger:warrior trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:world buff|world buff] (1.000) for [h:strategy:warrior nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (661, 'action:rogue sap', 1, 'sap [h:object|action] [c:do sap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (662, 'trigger:rpg repeat quest', 1, 'rpg repeat quest [h:object|trigger] [c:rpg repeat quest|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg end quest] (1.030)[h:action|rpg start quest] (1.030) for [h:strategy|rpg quest]', '', '', '', '', '', '', '', '', '', 0), + (661, 'action:rogue sap', 1, 'sap [h:object|action] [c:do sap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nTriggers from: [h:trigger:rogue sap|sap] with relevance (41.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]', '', '', '', '', '', '', '', '', '', 0), + (662, 'trigger:rpg repeat quest', 1, 'rpg repeat quest [h:object|trigger] [c:rpg repeat quest|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg start quest] (1.030)[h:action|rpg end quest] (1.030) for [h:strategy|rpg quest]', '', '', '', '', '', '', '', '', '', 0), (663, 'trigger:give leader', 1, 'give leader [h:object|trigger] [c:give leader|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|give leader] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|give leader] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|give leader] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|give leader] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (664, 'trigger:cheat', 1, 'cheat [h:object|trigger] [c:cheat|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|cheat] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|cheat] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|cheat] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|cheat] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (665, 'trigger:warrior battle shout', 1, 'battle shout [h:object|trigger] [c:battle shout|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), - (666, 'trigger:warlock amplify curse', 1, 'amplify curse [h:object|trigger] [c:amplify curse|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock buff affliction pvp|buff affliction pvp]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock buff destruction raid|buff destruction raid]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock buff affliction pve|buff affliction pve]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock buff affliction raid|buff affliction raid]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock buff demonology pve|buff demonology pve]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock buff demonology pvp|buff demonology pvp]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock buff demonology raid|buff demonology raid]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock buff destruction pve|buff destruction pve]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock buff destruction pvp|buff destruction pvp]', '', '', '', '', '', '', '', '', '', 0), - (667, 'trigger:mage fire ward', 1, 'fire ward [h:object|trigger] [c:fire ward|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (665, 'trigger:warrior battle shout', 1, 'battle shout [h:object|trigger] [c:battle shout|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior battle shout|battle shout] (21.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (666, 'trigger:warlock amplify curse', 1, 'amplify curse [h:object|trigger] [c:amplify curse|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock boost affliction pve|boost affliction pve]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock boost affliction raid|boost affliction raid]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock boost affliction pvp|boost affliction pvp]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock boost demonology pve|boost demonology pve]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock boost demonology pvp|boost demonology pvp]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock boost demonology raid|boost demonology raid]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock boost destruction pve|boost destruction pve]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock boost destruction pvp|boost destruction pvp]\r\nExecutes: [h:action:warlock amplify curse|amplify curse] (20.000) for [h:strategy:warlock boost destruction raid|boost destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (667, 'trigger:mage fire ward', 1, 'fire ward [h:object|trigger] [c:fire ward|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage fire ward|fire ward] (20.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (668, 'value:free quest log slots', 1, 'free quest log slots [h:object|value] [c:cdebug values free quest log slots|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (669, 'action:warlock seed of corruption', 1, 'seed of corruption [h:object|action] [c:do seed of corruption|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock corruption|corruption] with relevance (21.000) for [h:strategy:warlock dps debuff|dps debuff]', '', '', '', '', '', '', '', '', '', 0), (670, 'trigger:guild leader', 1, 'guild leader [h:object|trigger] [c:guild leader|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|guild leader] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|guild leader] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|guild leader] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|guild leader] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), @@ -692,13 +692,13 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (672, 'trigger:ah', 1, 'ah [h:object|trigger] [c:ah|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|ah] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|ah] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|ah] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|ah] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (673, 'trigger:use', 1, 'use [h:object|trigger] [c:use|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|use] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (674, 'trigger:c', 1, 'c [h:object|trigger] [c:c|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|c] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (675, 'trigger:shaman cure disease', 1, 'cure disease [h:object|trigger] [c:cure disease|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nNon combat behavior:\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]', '', '', '', '', '', '', '', '', '', 0), + (675, 'trigger:shaman cure disease', 1, 'cure disease [h:object|trigger] [c:cure disease|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nExecutes: [h:action:shaman cure disease|cure disease] (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]', '', '', '', '', '', '', '', '', '', 0), (676, 'trigger:e', 1, 'e [h:object|trigger] [c:e|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|equip] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (677, 'trigger:ue', 1, 'ue [h:object|trigger] [c:ue|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|unequip] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (678, 'trigger:shaman searing totem', 1, 'searing totem [h:object|trigger] [c:searing totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman searing totem|searing totem] (22.000) for [h:strategy:shaman melee|melee]\r\nExecutes: [h:action:shaman searing totem|searing totem] (22.000) for [h:strategy:shaman melee|melee]\r\nExecutes: [h:action:shaman searing totem|searing totem] (17.000) for [h:strategy:shaman totems|totems]', '', '', '', '', '', '', '', '', '', 0), (679, 'trigger:r', 1, 'r [h:object|trigger] [c:r|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|reward] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (680, 'trigger:warrior commanding shout', 1, 'commanding shout [h:object|trigger] [c:commanding shout|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior commanding shout|commanding shout] (20.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior commanding shout|commanding shout] (20.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior commanding shout|commanding shout] (20.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), - (681, 'trigger:priest silence', 1, 'silence [h:object|trigger] [c:silence|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest silence|silence] (41.000) for [h:strategy:priest shadow|shadow]\r\nExecutes: [h:action:priest silence|silence] (41.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (681, 'trigger:priest silence', 1, 'silence [h:object|trigger] [c:silence|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest silence|silence] (41.000) for [h:strategy:priest cc shadow raid|cc shadow raid]\r\nExecutes: [h:action:priest silence|silence] (41.000) for [h:strategy:priest cc shadow pve|cc shadow pve]\r\nExecutes: [h:action:priest silence|silence] (41.000) for [h:strategy:priest cc shadow pvp|cc shadow pvp]', '', '', '', '', '', '', '', '', '', 0), (682, 'trigger:attack', 1, 'attack [h:object|trigger] [c:attack|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|attack my target] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (683, 'trigger:accept', 1, 'accept [h:object|trigger] [c:accept|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|accept quest] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (684, 'value:entry loot list', 1, 'entry loot list [h:object|value] [c:cdebug values entry loot list|current value]\r\nThis value returns all the items dropped by a specific creature or game object.', '', '', '', '', '', '', '', '', '', 0), @@ -707,59 +707,59 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (687, 'trigger:tank attack', 1, 'tank attack [h:object|trigger] [c:tank attack|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|tank attack chat shortcut] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (688, 'trigger:grind', 1, 'grind [h:object|trigger] [c:grind|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|grind chat shortcut] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (689, 'trigger:cast', 1, 'cast [h:object|trigger] [c:cast|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|cast] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|cast] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|cast] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|cast] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (690, 'trigger:priest power infusion', 1, 'power infusion [h:object|trigger] [c:power infusion|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest power infusion|power infusion] (41.000) for [h:strategy:priest boost|boost]', '', '', '', '', '', '', '', '', '', 0), + (690, 'trigger:priest power infusion', 1, 'power infusion [h:object|trigger] [c:power infusion|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest power infusion|power infusion] (20.000) for [h:strategy:priest boost discipline pve|boost discipline pve]\r\nExecutes: [h:action:priest power infusion|power infusion] (20.000) for [h:strategy:priest boost discipline pvp|boost discipline pvp]\r\nExecutes: [h:action:priest power infusion|power infusion] (20.000) for [h:strategy:priest boost discipline raid|boost discipline raid]\r\nExecutes: [h:action:priest power infusion|power infusion] (20.000) for [h:strategy:priest boost holy pve|boost holy pve]\r\nExecutes: [h:action:priest power infusion|power infusion] (20.000) for [h:strategy:priest boost holy pvp|boost holy pvp]\r\nExecutes: [h:action:priest power infusion|power infusion] (20.000) for [h:strategy:priest boost holy raid|boost holy raid]\r\nExecutes: [h:action:priest power infusion|power infusion] (20.000) for [h:strategy:priest boost shadow pve|boost shadow pve]\r\nExecutes: [h:action:priest power infusion|power infusion] (20.000) for [h:strategy:priest boost shadow pvp|boost shadow pvp]\r\nExecutes: [h:action:priest power infusion|power infusion] (20.000) for [h:strategy:priest boost shadow raid|boost shadow raid]', '', '', '', '', '', '', '', '', '', 0), (691, 'action:rpg sell', 1, 'rpg sell [h:object|action] [c:do rpg sell|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg sell] with relevance (1.100) for [h:strategy|rpg vendor]', '', '', '', '', '', '', '', '', '', 0), (692, 'action:stoneform', 1, 'stoneform [h:object|action] [c:do stoneform|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|stoneform] with relevance (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|stoneform] with relevance (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (693, 'trigger:revive', 1, 'revive [h:object|trigger] [c:revive|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|spirit healer] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (694, 'trigger:warning', 1, 'warning [h:object|trigger] [c:warning|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|runaway chat shortcut] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (695, 'action:paladin cleanse poison on party', 1, 'cleanse poison on party [h:object|action] [c:do cleanse poison on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (696, 'trigger:priest shadow word: pain', 1, 'shadow word: pain [h:object|trigger] [c:shadow word: pain|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest shadow word: pain|shadow word: pain] (12.000) for [h:strategy:priest shadow debuff|shadow debuff]\r\nExecutes: [h:action:priest shadow word: pain|shadow word: pain] (12.000) for [h:strategy:priest shadow debuff|shadow debuff]', '', '', '', '', '', '', '', '', '', 0), - (697, 'trigger:shaman purge', 1, 'purge [h:object|trigger] [c:purge|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (698, 'action:shaman chain heal', 1, 'chain heal [h:object|action] [c:do chain heal|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), + (695, 'action:paladin cleanse poison on party', 1, 'cleanse poison on party [h:object|action] [c:do cleanse poison on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (696, 'trigger:priest shadow word: pain', 1, 'shadow word: pain [h:object|trigger] [c:shadow word: pain|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest shadow word: pain|shadow word: pain] (13.000) for [h:strategy:priest offdps pve|offdps pve]\r\nExecutes: [h:action:priest shadow word: pain|shadow word: pain] (13.000) for [h:strategy:priest offdps pvp|offdps pvp]\r\nExecutes: [h:action:priest shadow word: pain|shadow word: pain] (13.000) for [h:strategy:priest offdps raid|offdps raid]\r\nExecutes: [h:action:priest shadow word: pain|shadow word: pain] (12.000) for [h:strategy:priest shadow pve|shadow pve]\r\nExecutes: [h:action:priest shadow word: pain|shadow word: pain] (12.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nExecutes: [h:action:priest shadow word: pain|shadow word: pain] (12.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (697, 'trigger:shaman purge', 1, 'purge [h:object|trigger] [c:purge|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nExecutes: [h:action:shaman purge|purge] (50.000) for [h:strategy:shaman restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (698, 'action:shaman chain heal', 1, 'chain heal [h:object|action] [c:do chain heal|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), (699, 'action:priest binding heal on party', 1, 'binding heal on party [h:object|action] [c:do binding heal on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest binding heal|binding heal] with relevance (52.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:priest binding heal|binding heal] with relevance (52.000) for [h:strategy:priest holy|holy]', '', '', '', '', '', '', '', '', '', 0), (700, 'action:ra', 1, 'ra [h:object|action] [c:do ra|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|ra] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|ra] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|ra] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|ra] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (701, 'trigger:max dps', 1, 'max dps [h:object|trigger] [c:max dps|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|max dps chat shortcut] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (702, 'trigger:loot roll', 1, 'loot roll [h:object|trigger] [c:loot roll|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|loot roll] (100.000) for [h:strategy|delayed roll]\r\nNon combat behavior:\r\nExecutes: [h:action|loot roll] (100.000) for [h:strategy|delayed roll]', '', '', '', '', '', '', '', '', '', 0), (703, 'trigger:uninvite guid', 1, 'uninvite guid [h:object|trigger] [c:uninvite guid|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|uninvite] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|uninvite] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|uninvite] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (704, 'trigger:not enough reputation', 1, 'not enough reputation [h:object|trigger] [c:not enough reputation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|tell master] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|tell master] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|tell master] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (705, 'action:priest devouring plague', 1, 'devouring plague [h:object|action] [c:do devouring plague|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest devouring plague|devouring plague] with relevance (13.000) for [h:strategy:priest shadow debuff|shadow debuff]\r\nTriggers from: [h:trigger:priest devouring plague|devouring plague] with relevance (13.000) for [h:strategy:priest shadow debuff|shadow debuff]', '', '', '', '', '', '', '', '', '', 0), - (706, 'trigger:warrior hamstring on snare target', 1, 'hamstring on snare target [h:object|trigger] [c:hamstring on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc fury raid|cc fury raid]\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc fury pve|cc fury pve]\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc arms pve|cc arms pve]\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc arms pvp|cc arms pvp]\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc arms raid|cc arms raid]', '', '', '', '', '', '', '', '', '', 0), + (705, 'action:priest devouring plague', 1, 'devouring plague [h:object|action] [c:do devouring plague|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest devouring plague|devouring plague] with relevance (12.000) for [h:strategy:priest shadow pve|shadow pve]\r\nTriggers from: [h:trigger:priest devouring plague|devouring plague] with relevance (12.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nTriggers from: [h:trigger:priest devouring plague|devouring plague] with relevance (12.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (706, 'trigger:warrior hamstring on snare target', 1, 'hamstring on snare target [h:object|trigger] [c:hamstring on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc arms pvp|cc arms pvp]\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc arms pve|cc arms pve]\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc arms raid|cc arms raid]\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc fury pve|cc fury pve]\r\nExecutes: [h:action:warrior piercing howl|piercing howl] (20.000) for [h:strategy:warrior cc fury raid|cc fury raid]', '', '', '', '', '', '', '', '', '', 0), (707, 'trigger:quest objective completed', 1, 'quest objective completed [h:object|trigger] [c:quest objective completed|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|quest objective completed] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|quest objective completed] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|quest objective completed] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (708, 'trigger:pull end', 1, 'pull end [h:object|trigger] [c:pull end|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:pull end|pull end] (60.000) for [h:strategy:druid pull|pull]\r\nNon combat behavior:\r\nExecutes: [h:action:pull end|pull end] (60.000) for [h:strategy:druid pull|pull]', '', '', '', '', '', '', '', '', '', 0), - (709, 'action:mage counterspell', 1, 'counterspell [h:object|action] [c:do counterspell|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc frost pvp|cc frost pvp]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc frost raid|cc frost raid]', '', '', '', '', '', '', '', '', '', 0), + (708, 'trigger:pull end', 1, 'pull end [h:object|trigger] [c:pull end|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:pull end|pull end] (30.000) for [h:strategy:druid pull|pull]\r\nNon combat behavior:\r\nExecutes: [h:action:pull end|pull end] (30.000) for [h:strategy:druid pull|pull]', '', '', '', '', '', '', '', '', '', 0), + (709, 'action:mage counterspell', 1, 'counterspell [h:object|action] [c:do counterspell|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc frost raid|cc frost raid]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nTriggers from: [h:trigger:mage counterspell|counterspell] with relevance (41.000) for [h:strategy:mage cc frost pvp|cc frost pvp]', '', '', '', '', '', '', '', '', '', 0), (710, 'action:warrior victory rush', 1, 'victory rush [h:object|action] [c:do victory rush|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior victory rush|victory rush] with relevance (20.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior victory rush|victory rush] with relevance (20.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior victory rush|victory rush] with relevance (20.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior victory rush|victory rush] with relevance (20.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:warrior victory rush|victory rush] with relevance (20.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior victory rush|victory rush] with relevance (20.000) for [h:strategy:warrior fury raid|fury raid]\r\nTriggers from: [h:trigger:warrior victory rush|victory rush] with relevance (20.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior victory rush|victory rush] with relevance (20.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior victory rush|victory rush] with relevance (20.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), (711, 'trigger:lfg teleport', 1, 'lfg teleport [h:object|trigger] [c:lfg teleport|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|lfg teleport] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|lfg teleport] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|lfg teleport] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (712, 'trigger:random bot update', 1, 'random bot update [h:object|trigger] [c:random bot update|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|random bot update] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|random bot update] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|random bot update] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (713, 'trigger:enemy too close for spell', 1, 'enemy too close for spell [h:object|trigger] [c:enemy too close for spell|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage arcane explosion|arcane explosion] (20.000) for [h:strategy:mage aoe arcane pve|aoe arcane pve]\r\nExecutes: [h:action:mage dragon\'s breath|dragon\'s breath] (90.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nExecutes: [h:action:mage arcane explosion|arcane explosion] (20.000) for [h:strategy:mage aoe arcane pvp|aoe arcane pvp]\r\nExecutes: [h:action:mage arcane explosion|arcane explosion] (20.000) for [h:strategy:mage aoe arcane raid|aoe arcane raid]\r\nExecutes: [h:action:mage dragon\'s breath|dragon\'s breath] (90.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nExecutes: [h:action:mage dragon\'s breath|dragon\'s breath] (90.000) for [h:strategy:mage cc fire raid|cc fire raid]', '', '', '', '', '', '', '', '', '', 0), + (713, 'trigger:enemy too close for spell', 1, 'enemy too close for spell [h:object|trigger] [c:enemy too close for spell|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage arcane explosion|arcane explosion] (20.000) for [h:strategy:mage aoe arcane pve|aoe arcane pve]\r\nExecutes: [h:action:mage arcane explosion|arcane explosion] (20.000) for [h:strategy:mage aoe arcane pvp|aoe arcane pvp]\r\nExecutes: [h:action:mage arcane explosion|arcane explosion] (20.000) for [h:strategy:mage aoe arcane raid|aoe arcane raid]', '', '', '', '', '', '', '', '', '', 0), (714, 'trigger:inventory change failure', 1, 'inventory change failure [h:object|trigger] [c:inventory change failure|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|inventory change failure] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|inventory change failure] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|inventory change failure] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (715, 'trigger:hunter trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter mend pet|mend pet] (20.000) for [h:strategy:hunter dps|dps]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter mend pet|mend pet] (2.000) for [h:strategy:hunter pet|pet]', '', '', '', '', '', '', '', '', '', 0), - (716, 'trigger:warlock corruption', 1, 'corruption [h:object|trigger] [c:corruption|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), - (717, 'action:warlock immolate', 1, 'immolate [h:object|action] [c:do immolate|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock immolate|immolate] with relevance (11.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:warlock immolate|immolate] with relevance (11.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock immolate|immolate] with relevance (11.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), + (715, 'trigger:hunter trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter mend pet|mend pet] (20.000) for [h:strategy:hunter pet|pet]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter mend pet|mend pet] (11.000) for [h:strategy:hunter pet|pet]', '', '', '', '', '', '', '', '', '', 0), + (716, 'trigger:warlock corruption', 1, 'corruption [h:object|trigger] [c:corruption|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock corruption|corruption] (11.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (717, 'action:warlock immolate', 1, 'immolate [h:object|action] [c:do immolate|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock immolate|immolate] with relevance (11.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:warlock immolate|immolate] with relevance (11.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock immolate|immolate] with relevance (11.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), (718, 'trigger:bg status', 1, 'bg status [h:object|trigger] [c:bg status|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|bg status] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|bg status] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|bg status] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (719, 'value:durability', 1, 'durability [h:object|value] [c:cdebug values durability|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (720, 'action:druid rebirth', 1, 'rebirth [h:object|action] [c:do rebirth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (21.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (21.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (21.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (21.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (21.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (21.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (721, 'trigger:trade status', 1, 'trade status [h:object|trigger] [c:trade status|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|accept trade] (100.000)[h:action|equip upgrades] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|accept trade] (100.000)[h:action|equip upgrades] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|accept trade] (100.000)[h:action|equip upgrades] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (722, 'action:move to loot', 1, 'move to loot [h:object|action] [c:do move to loot|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|far from current loot] with relevance (7.000) for [h:strategy|loot]', '', '', '', '', '', '', '', '', '', 0), + (720, 'action:druid rebirth', 1, 'rebirth [h:object|action] [c:do rebirth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid rebirth|rebirth] with relevance (90.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:druid rebirth|rebirth] with relevance (90.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:druid rebirth|rebirth] with relevance (90.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:druid rebirth|rebirth] with relevance (90.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:druid rebirth|rebirth] with relevance (90.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:druid rebirth|rebirth] with relevance (90.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:druid rebirth|rebirth] with relevance (90.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:druid rebirth|rebirth] with relevance (90.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:druid rebirth|rebirth] with relevance (90.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:druid rebirth|rebirth] with relevance (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:druid rebirth|rebirth] with relevance (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (721, 'trigger:trade status', 1, 'trade status [h:object|trigger] [c:trade status|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|equip upgrades] (100.000)[h:action|accept trade] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|equip upgrades] (100.000)[h:action|accept trade] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|equip upgrades] (100.000)[h:action|accept trade] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (722, 'action:move to loot', 1, 'move to loot [h:object|action] [c:do move to loot|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|far from current loot] with relevance (7.000) for [h:strategy|loot]\r\nReaction behavior:\r\nTriggers from: [h:trigger|add all loot] with relevance (101.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|add all loot] with relevance (101.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (723, 'value:generic balance percentage', 1, 'balance [h:object|value] [c:cdebug values balance|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (724, 'trigger:group invite', 1, 'group invite [h:object|trigger] [c:group invite|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|accept invitation] (100.000)[h:action|reset raids] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|accept invitation] (100.000)[h:action|reset raids] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|accept invitation] (100.000)[h:action|reset raids] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (724, 'trigger:group invite', 1, 'group invite [h:object|trigger] [c:group invite|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|accept invitation] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|accept invitation] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|accept invitation] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (725, 'trigger:group set leader', 1, 'group set leader [h:object|trigger] [c:group set leader|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|reset ai] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|reset ai] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|reset ai] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (726, 'trigger:rpg use', 1, 'rpg use [h:object|trigger] [c:rpg use|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg use] (1.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), (727, 'trigger:taxi done', 1, 'taxi done [h:object|trigger] [c:taxi done|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|taxi] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|taxi] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|taxi] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (728, 'action:co', 1, 'co [h:object|action] [c:do co|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|co] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|co] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|co] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|co] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (729, 'trigger:druid remove curse', 1, 'remove curse [h:object|trigger] [c:remove curse|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (73.000) for [h:strategy:druid cure|cure]\r\nNon combat behavior:\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (73.000) for [h:strategy:druid cure|cure]', '', '', '', '', '', '', '', '', '', 0), + (729, 'trigger:druid remove curse', 1, 'remove curse [h:object|trigger] [c:remove curse|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]\r\nNon combat behavior:\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nExecutes: [h:action:druid remove curse on party|remove curse on party] (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (730, 'trigger:petition offer', 1, 'petition offer [h:object|trigger] [c:petition offer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|petition sign] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|petition sign] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|petition sign] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (731, 'trigger:druid enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid dash|dash] (23.000)[h:action:druid prowl|prowl] (90.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid dash|dash] (23.000)[h:action:druid prowl|prowl] (90.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), + (731, 'trigger:druid enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid dash|dash] (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:druid feral charge|feral charge] (31.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:druid feral charge|feral charge] (31.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:druid feral charge|feral charge] (31.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (732, 'trigger:area trigger', 1, 'area trigger [h:object|trigger] [c:area trigger|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|reach area trigger] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|reach area trigger] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|reach area trigger] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (733, 'action:druid remove curse', 1, 'remove curse [h:object|action] [c:do remove curse|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (74.000) for [h:strategy:druid cure|cure]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (74.000) for [h:strategy:druid cure|cure]', '', '', '', '', '', '', '', '', '', 0), + (733, 'action:druid remove curse', 1, 'remove curse [h:object|action] [c:do remove curse|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (734, 'trigger:within area trigger', 1, 'within area trigger [h:object|trigger] [c:within area trigger|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|area trigger] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|area trigger] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|area trigger] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (735, 'value:party member to dispel', 1, 'party member to dispel [h:object|value] [c:cdebug values party member to dispel|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (736, 'trigger:loot response', 1, 'loot response [h:object|trigger] [c:loot response|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|store loot] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|store loot] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|store loot] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (737, 'trigger:item push result', 1, 'item push result [h:object|trigger] [c:item push result|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|equip upgrades] (100.000)[h:action|query item usage] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|equip upgrades] (100.000)[h:action|query item usage] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|equip upgrades] (100.000)[h:action|query item usage] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (738, 'trigger:shaman aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000) for [h:strategy:shaman aoe enhancement raid|aoe enhancement raid]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000) for [h:strategy:shaman aoe enhancement pve|aoe enhancement pve]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (20.000) for [h:strategy:shaman aoe enhancement pvp|aoe enhancement pvp]', '', '', '', '', '', '', '', '', '', 0), + (737, 'trigger:item push result', 1, 'item push result [h:object|trigger] [c:item push result|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|query item usage] (100.000)[h:action|equip upgrades] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|query item usage] (100.000)[h:action|equip upgrades] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|query item usage] (100.000)[h:action|equip upgrades] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (738, 'trigger:shaman aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:shaman aoe elemental pve|aoe elemental pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:shaman aoe restoration raid|aoe restoration raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:shaman aoe enhancement pvp|aoe enhancement pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:shaman aoe elemental pvp|aoe elemental pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:shaman aoe elemental raid|aoe elemental raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:shaman aoe enhancement raid|aoe enhancement raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:shaman aoe restoration pve|aoe restoration pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:shaman aoe enhancement pve|aoe enhancement pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:shaman aoe restoration pvp|aoe restoration pvp]', '', '', '', '', '', '', '', '', '', 0), (739, 'action:cheat', 1, 'cheat [h:object|action] [c:do cheat|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|cheat] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|cheat] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|cheat] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|cheat] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (740, 'trigger:lfg proposal active', 1, 'lfg proposal active [h:object|trigger] [c:lfg proposal active|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|lfg accept] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|lfg accept] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|lfg accept] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (741, 'trigger:guild invite', 1, 'guild invite [h:object|trigger] [c:guild invite|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|guild invite] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|guild invite] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|guild invite] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|guild invite] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (742, 'action:rogue check stealth', 1, 'check stealth [h:object|action] [c:do check stealth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (742, 'action:rogue check stealth', 1, 'check stealth [h:object|action] [c:do check stealth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (90.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (20.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (743, 'trigger:lfg proposal', 1, 'lfg proposal [h:object|trigger] [c:lfg proposal|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|lfg accept] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|lfg accept] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|lfg accept] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (744, 'trigger:arena team invite', 1, 'arena team invite [h:object|trigger] [c:arena team invite|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|arena team accept] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|arena team accept] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|arena team accept] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (745, 'trigger:rpg heal', 1, 'rpg heal [h:object|trigger] [c:rpg heal|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg heal] (1.025) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), @@ -768,9 +768,9 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (748, 'trigger:revive from corpse', 1, 'revive from corpse [h:object|trigger] [c:revive from corpse|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|revive from corpse] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|revive from corpse] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|revive from corpse] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (749, 'trigger:master loot roll', 1, 'master loot roll [h:object|trigger] [c:master loot roll|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|master loot roll] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|master loot roll] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|master loot roll] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (750, 'action:rti', 1, 'rti [h:object|action] [c:do rti|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|rti] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rti] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|rti] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|rti] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (751, 'action:warrior thunder clap on snare target', 1, 'thunder clap on snare target [h:object|action] [c:do thunder clap on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), - (752, 'trigger:generic enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|reach melee] (60.000) for [h:strategy|close]\r\nExecutes: [h:action|steam rush] (81.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nExecutes: [h:action|steam rush] (81.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), - (753, 'trigger:very often', 1, 'very often [h:object|trigger] [c:very often|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:lightwell|lightwell] (80.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:lightwell|lightwell] (80.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:lightwell|lightwell] (80.000) for [h:strategy:druid melee|melee]\r\nExecutes: [h:action:lightwell|lightwell] (80.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:lightwell|lightwell] (80.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:lightwell|lightwell] (80.000) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:lightwell|lightwell] (80.000) for [h:strategy:druid bear|bear]\r\nNon combat behavior:\r\nExecutes: [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000) for [h:strategy:druid buff|buff]\r\nExecutes: [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (751, 'action:warrior thunder clap on snare target', 1, 'thunder clap on snare target [h:object|action] [c:do thunder clap on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] with relevance (21.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), + (752, 'trigger:generic enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|reach melee] (30.000) for [h:strategy|close]\r\nExecutes: [h:action|steam rush] (81.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nExecutes: [h:action|steam rush] (81.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), + (753, 'trigger:very often', 1, 'very often [h:object|trigger] [c:very often|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:lightwell|lightwell] (60.000)[h:action:druid starfire|starfire] (10.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:lightwell|lightwell] (60.000)[h:action:druid starfire|starfire] (10.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:lightwell|lightwell] (60.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:lightwell|lightwell] (60.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:lightwell|lightwell] (60.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:lightwell|lightwell] (60.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:lightwell|lightwell] (60.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:lightwell|lightwell] (60.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:lightwell|lightwell] (60.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:lightwell|lightwell] (60.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:lightwell|lightwell] (60.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:lightwell|lightwell] (60.000) for [h:strategy:druid tank feral raid|tank feral raid]\r\nNon combat behavior:\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (754, 'value:all targets', 1, 'all targets [h:object|value] [c:cdebug values all targets|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (755, 'trigger:dead', 1, 'dead [h:object|trigger] [c:dead|trigger now]\r\n\r\nDead state behavior:\r\nExecutes: [h:action|find corpse] (100.000) for [h:strategy|dead]', '', '', '', '', '', '', '', '', '', 0), (756, 'action:attack enemy flag carrier', 1, 'attack enemy flag carrier [h:object|action] [c:do attack enemy flag carrier|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|enemy flagcarrier near] with relevance (80.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|enemy flagcarrier near] with relevance (80.000) for [h:strategy|warsong]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|enemy flagcarrier near] with relevance (80.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|enemy flagcarrier near] with relevance (80.000) for [h:strategy|warsong]', '', '', '', '', '', '', '', '', '', 0), @@ -778,7 +778,7 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (758, 'trigger:not dps target active', 1, 'not dps target active [h:object|trigger] [c:not dps target active|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|dps assist] (60.000) for [h:strategy|dps assist]', '', '', '', '', '', '', '', '', '', 0), (759, 'trigger:receive text emote', 1, 'receive text emote [h:object|trigger] [c:receive text emote|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|emote] (10.000) for [h:strategy|emote]', '', '', '', '', '', '', '', '', '', 0), (760, 'action:buy tabard', 1, 'buy tabard [h:object|action] [c:do buy tabard|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|buy tabard trigger] with relevance (10.000) for [h:strategy|guild]', '', '', '', '', '', '', '', '', '', 0), - (761, 'trigger:protect party member', 1, 'protect party member [h:object|trigger] [c:protect party member|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin holy pve|holy pve]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin holy raid|holy raid]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (761, 'trigger:protect party member', 1, 'protect party member [h:object|trigger] [c:protect party member|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin offheal pvp|offheal pvp]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin holy pve|holy pve]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin holy raid|holy raid]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin offheal pve|offheal pve]\r\nExecutes: [h:action:paladin blessing of protection|blessing of protection] (80.000) for [h:strategy:paladin offheal raid|offheal raid]', '', '', '', '', '', '', '', '', '', 0), (762, 'trigger:receive emote', 1, 'receive emote [h:object|trigger] [c:receive emote|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|emote] (10.000) for [h:strategy|emote]', '', '', '', '', '', '', '', '', '', 0), (763, 'value:enemy healer target', 1, 'enemy healer target [h:object|value] [c:cdebug values enemy healer target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (764, 'trigger:stoneform', 1, 'stoneform [h:object|trigger] [c:stoneform|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|stoneform] (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nExecutes: [h:action|stoneform] (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), @@ -788,17 +788,17 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (768, 'action:area trigger', 1, 'area trigger [h:object|action] [c:do area trigger|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|within area trigger] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|within area trigger] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|within area trigger] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (769, 'action:hunter wing clip', 1, 'wing clip [h:object|action] [c:do wing clip|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (61.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (770, 'trigger:panic', 1, 'panic [h:object|trigger] [c:panic|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|flee] (99.000) for [h:strategy|flee]', '', '', '', '', '', '', '', '', '', 0), - (771, 'action:priest flash heal on party', 1, 'flash heal on party [h:object|action] [c:do flash heal on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (60.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (60.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (60.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (60.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (771, 'action:priest flash heal on party', 1, 'flash heal on party [h:object|action] [c:do flash heal on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:priest discipline pvp|discipline pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:priest holy pve|holy pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:priest discipline pve|discipline pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:priest holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:priest offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:priest offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:priest offheal raid|offheal raid]', '', '', '', '', '', '', '', '', '', 0), (772, 'trigger:outnumbered', 1, 'outnumbered [h:object|trigger] [c:outnumbered|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|flee] (99.000) for [h:strategy|flee]', '', '', '', '', '', '', '', '', '', 0), (773, 'trigger:high mana', 1, 'high mana [h:object|trigger] [c:high mana|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|drink] (3.000) for [h:strategy|food]', '', '', '', '', '', '', '', '', '', 0), - (774, 'trigger:near dark portal', 1, 'near dark portal [h:object|trigger] [c:near dark portal|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid buff|buff]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (774, 'trigger:near dark portal', 1, 'near dark portal [h:object|trigger] [c:near dark portal|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:move to dark portal|move to dark portal] (1.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (775, 'value:party member without water', 1, 'party member without water [h:object|value] [c:cdebug values party member without water|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (776, 'trigger:at dark portal outland', 1, 'at dark portal outland [h:object|trigger] [c:at dark portal outland|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid buff|buff]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (776, 'trigger:at dark portal outland', 1, 'at dark portal outland [h:object|trigger] [c:at dark portal outland|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:move from dark portal|move from dark portal] (1.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (777, 'trigger:generic buy tabard trigger', 1, 'buy tabard trigger [h:object|trigger] [c:buy tabard trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|buy tabard] (10.000) for [h:strategy|guild]', '', '', '', '', '', '', '', '', '', 0), (778, 'trigger:generic leave large guild trigger', 1, 'leave large guild trigger [h:object|trigger] [c:leave large guild trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|guild leave] (4.000) for [h:strategy|guild]', '', '', '', '', '', '', '', '', '', 0), (779, 'trigger:rpg buy', 1, 'rpg buy [h:object|trigger] [c:rpg buy|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg buy] (1.030) for [h:strategy|rpg vendor]', '', '', '', '', '', '', '', '', '', 0), (780, 'value:range', 1, 'range [h:object|value] [c:cdebug values range|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (781, 'action:paladin flash of light', 1, 'flash of light [h:object|action] [c:do flash of light|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin the art of war|the art of war] with relevance (22.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:paladin the art of war|the art of war] with relevance (22.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:paladin the art of war|the art of war] with relevance (22.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (781, 'action:paladin flash of light', 1, 'flash of light [h:object|action] [c:do flash of light|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:paladin holy raid|holy raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:paladin holy raid|holy raid]', '', '', '', '', '', '', '', '', '', 0), (782, 'trigger:far from travel target', 1, 'far from travel target [h:object|trigger] [c:far from travel target|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|check mount state] (1.000)[h:action|move to travel target] (1.000) for [h:strategy|travel]\r\nExecutes: [h:action|check mount state] (1.000)[h:action|move to travel target] (1.000) for [h:strategy|travel once]', '', '', '', '', '', '', '', '', '', 0), (783, 'trigger:rpg ah sell', 1, 'rpg ah sell [h:object|trigger] [c:rpg ah sell|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg ah sell] (1.110) for [h:strategy|rpg vendor]', '', '', '', '', '', '', '', '', '', 0), (784, 'trigger:rpg ah buy', 1, 'rpg ah buy [h:object|trigger] [c:rpg ah buy|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg ah buy] (1.035) for [h:strategy|rpg vendor]', '', '', '', '', '', '', '', '', '', 0), @@ -806,133 +806,133 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (786, 'trigger:rpg get mail', 1, 'rpg get mail [h:object|trigger] [c:rpg get mail|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg get mail] (1.070) for [h:strategy|rpg vendor]', '', '', '', '', '', '', '', '', '', 0), (787, 'trigger:rpg sell', 1, 'rpg sell [h:object|trigger] [c:rpg sell|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg sell] (1.100) for [h:strategy|rpg vendor]', '', '', '', '', '', '', '', '', '', 0), (788, 'trigger:generic have aggro', 1, 'have aggro [h:object|trigger] [c:have aggro|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|runaway] (51.000) for [h:strategy|kite]', '', '', '', '', '', '', '', '', '', 0), - (789, 'action:rogue blade flurry', 1, 'blade flurry [h:object|action] [c:do blade flurry|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue aoe|aoe] with relevance (24.000) for [h:strategy:rogue aoe combat pve|aoe combat pve]\r\nTriggers from: [h:trigger:rogue aoe|aoe] with relevance (24.000) for [h:strategy:rogue aoe combat pvp|aoe combat pvp]\r\nTriggers from: [h:trigger:rogue aoe|aoe] with relevance (24.000) for [h:strategy:rogue aoe combat raid|aoe combat raid]\r\nTriggers from: [h:trigger:rogue blade flurry|blade flurry] with relevance (25.000) for [h:strategy:rogue buff combat pvp|buff combat pvp]\r\nTriggers from: [h:trigger:rogue blade flurry|blade flurry] with relevance (25.000) for [h:strategy:rogue buff combat pve|buff combat pve]\r\nTriggers from: [h:trigger:rogue blade flurry|blade flurry] with relevance (25.000) for [h:strategy:rogue buff combat raid|buff combat raid]', '', '', '', '', '', '', '', '', '', 0), + (789, 'action:rogue blade flurry', 1, 'blade flurry [h:object|action] [c:do blade flurry|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue aoe|aoe] with relevance (24.000) for [h:strategy:rogue aoe combat raid|aoe combat raid]\r\nTriggers from: [h:trigger:rogue aoe|aoe] with relevance (24.000) for [h:strategy:rogue aoe combat pve|aoe combat pve]\r\nTriggers from: [h:trigger:rogue aoe|aoe] with relevance (24.000) for [h:strategy:rogue aoe combat pvp|aoe combat pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue blade flurry|blade flurry] with relevance (24.000) for [h:strategy:rogue boost combat pve|boost combat pve]\r\nTriggers from: [h:trigger:rogue blade flurry|blade flurry] with relevance (24.000) for [h:strategy:rogue boost combat pvp|boost combat pvp]\r\nTriggers from: [h:trigger:rogue blade flurry|blade flurry] with relevance (24.000) for [h:strategy:rogue boost combat raid|boost combat raid]', '', '', '', '', '', '', '', '', '', 0), (790, 'trigger:start onyxia fight', 1, 'start onyxia fight [h:object|trigger] [c:start onyxia fight|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|enable onyxia fight strategy] (100.000) for [h:strategy|onyxia\'s lair]', '', '', '', '', '', '', '', '', '', 0), - (791, 'trigger:shaman earth shock', 1, 'earth shock [h:object|trigger] [c:earth shock|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman enhancement raid|enhancement raid]', '', '', '', '', '', '', '', '', '', 0), + (791, 'trigger:shaman earth shock', 1, 'earth shock [h:object|trigger] [c:earth shock|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nExecutes: [h:action:shaman earth shock|earth shock] (10.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]', '', '', '', '', '', '', '', '', '', 0), (792, 'trigger:can loot', 1, 'can loot [h:object|trigger] [c:can loot|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|open loot] (8.000) for [h:strategy|loot]', '', '', '', '', '', '', '', '', '', 0), (793, 'trigger:end magmadar fight', 1, 'end magmadar fight [h:object|trigger] [c:end magmadar fight|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|disable magmadar fight strategy] (100.000) for [h:strategy|magmadar]\r\nDead state behavior:\r\nExecutes: [h:action|disable magmadar fight strategy] (100.000) for [h:strategy|magmadar]', '', '', '', '', '', '', '', '', '', 0), (794, 'trigger:move long stuck', 1, 'move long stuck [h:object|trigger] [c:move long stuck|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|hearthstone] (0.900)[h:action|repop] (0.800) for [h:strategy|maintenance]\r\nDead state behavior:\r\nExecutes: [h:action|repop] (101.000) for [h:strategy|dead]', '', '', '', '', '', '', '', '', '', 0), (795, 'trigger:enemy player near', 1, 'enemy player near [h:object|trigger] [c:enemy player near|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|attack enemy player] (90.000) for [h:strategy|pvp]', '', '', '', '', '', '', '', '', '', 0), - (796, 'action:move from dark portal', 1, 'move from dark portal [h:object|action] [c:do move from dark portal|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid buff|buff]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (796, 'action:move from dark portal', 1, 'move from dark portal [h:object|action] [c:do move from dark portal|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:at dark portal outland|at dark portal outland] with relevance (1.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (797, 'trigger:generic aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|war stomp] (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nExecutes: [h:action|war stomp] (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), - (798, 'trigger:rooted', 1, 'rooted [h:object|trigger] [c:rooted|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (798, 'trigger:rooted', 1, 'rooted [h:object|trigger] [c:rooted|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nExecutes: [h:action:druid caster form|caster form] (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (799, 'trigger:paladin judgement of light', 1, 'judgement of light [h:object|trigger] [c:judgement of light|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin judgement of light|judgement of light] (11.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nExecutes: [h:action:paladin judgement of light|judgement of light] (10.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin judgement of light|judgement of light] (10.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nExecutes: [h:action:paladin judgement of light|judgement of light] (10.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:paladin judgement of light|judgement of light] (11.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nExecutes: [h:action:paladin judgement of light|judgement of light] (11.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (800, 'trigger:party member medium health', 1, 'party member medium health [h:object|trigger] [c:party member medium health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (71.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (71.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), + (800, 'trigger:party member medium health', 1, 'party member medium health [h:object|trigger] [c:party member medium health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid regrowth on party|regrowth on party] (70.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), (801, 'trigger:return', 1, 'return [h:object|trigger] [c:return|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|return] (1.000)[h:action|set return position] (1.500) for [h:strategy|return]', '', '', '', '', '', '', '', '', '', 0), (802, 'trigger:rpg repair', 1, 'rpg repair [h:object|trigger] [c:rpg repair|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg repair] (1.095) for [h:strategy|rpg maintenance]', '', '', '', '', '', '', '', '', '', 0), (803, 'action:rpg ah buy', 1, 'rpg ah buy [h:object|action] [c:do rpg ah buy|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg ah buy] with relevance (1.035) for [h:strategy|rpg vendor]', '', '', '', '', '', '', '', '', '', 0), (804, 'trigger:has rpg target', 1, 'has rpg target [h:object|trigger] [c:has rpg target|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg cancel] (1.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), (805, 'trigger:far from rpg target', 1, 'far from rpg target [h:object|trigger] [c:far from rpg target|trigger now]\r\nThis trigger activates [h:strategy|no rpg target] is not active and is 5y away from it\'s current [h:value|rpg target].\r\nUsed triggers:\r\n[h:trigger|no rpg target] \r\nUsed values:\r\n[h:value|distance] [h:value|rpg target] \r\nNon combat behavior:\r\nExecutes: [h:action|move to rpg target] (5.000) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), - (806, 'trigger:mage presence of mind', 1, 'presence of mind [h:object|trigger] [c:presence of mind|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage presence of mind|presence of mind] (21.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage presence of mind|presence of mind] (21.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage presence of mind|presence of mind] (21.000) for [h:strategy:mage buff arcane raid|buff arcane raid]', '', '', '', '', '', '', '', '', '', 0), - (807, 'trigger:warlock death coil', 1, 'death coil [h:object|trigger] [c:death coil|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), + (806, 'trigger:mage presence of mind', 1, 'presence of mind [h:object|trigger] [c:presence of mind|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage presence of mind|presence of mind] (21.000) for [h:strategy:mage boost arcane pve|boost arcane pve]\r\nExecutes: [h:action:mage presence of mind|presence of mind] (21.000) for [h:strategy:mage boost arcane raid|boost arcane raid]\r\nExecutes: [h:action:mage presence of mind|presence of mind] (21.000) for [h:strategy:mage boost arcane pvp|boost arcane pvp]', '', '', '', '', '', '', '', '', '', 0), + (807, 'trigger:warlock death coil', 1, 'death coil [h:object|trigger] [c:death coil|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock death coil|death coil] (45.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), (808, 'action:mage ice lance', 1, 'ice lance [h:object|action] [c:do ice lance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage ice lance|ice lance] with relevance (10.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage ice lance|ice lance] with relevance (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage ice lance|ice lance] with relevance (10.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (809, 'trigger:sit', 1, 'sit [h:object|trigger] [c:sit|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|sit] (1.500) for [h:strategy|sit]', '', '', '', '', '', '', '', '', '', 0), - (810, 'action:accept quest share', 1, 'accept quest share [h:object|action] [c:do accept quest share|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|quest share] with relevance (100.000) for [h:strategy|accept all quests]\r\nTriggers from: [h:trigger|quest share] with relevance (100.000) for [h:strategy|quest]', '', '', '', '', '', '', '', '', '', 0), - (811, 'trigger:priest inner focus', 1, 'inner focus [h:object|trigger] [c:inner focus|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest inner focus|inner focus] (42.000) for [h:strategy:priest boost|boost]', '', '', '', '', '', '', '', '', '', 0), - (812, 'trigger:priest prayer of shadow protection on party', 1, 'prayer of shadow protection on party [h:object|trigger] [c:prayer of shadow protection on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000) for [h:strategy:priest rshadow|rshadow]', '', '', '', '', '', '', '', '', '', 0), - (813, 'trigger:priest feedback', 1, 'feedback [h:object|trigger] [c:feedback|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest feedback|feedback] (80.000) for [h:strategy:priest shadow debuff|shadow debuff]\r\nExecutes: [h:action:priest feedback|feedback] (80.000) for [h:strategy:priest shadow debuff|shadow debuff]', '', '', '', '', '', '', '', '', '', 0), + (810, 'action:accept quest share', 1, 'accept quest share [h:object|action] [c:do accept quest share|execute]\r\nThis action will make a bot click accept when shared a quest.\r\nNon combat behavior:\r\nTriggers from: [h:trigger|quest share] with relevance (100.000) for [h:strategy|accept all quests]\r\nTriggers from: [h:trigger|quest share] with relevance (100.000) for [h:strategy|quest]', '', '', '', '', '', '', '', '', '', 0), + (811, 'trigger:priest inner focus', 1, 'inner focus [h:object|trigger] [c:inner focus|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest inner focus|inner focus] (20.000) for [h:strategy:priest boost discipline pve|boost discipline pve]\r\nExecutes: [h:action:priest inner focus|inner focus] (20.000) for [h:strategy:priest boost discipline pvp|boost discipline pvp]\r\nExecutes: [h:action:priest inner focus|inner focus] (20.000) for [h:strategy:priest boost discipline raid|boost discipline raid]\r\nExecutes: [h:action:priest inner focus|inner focus] (20.000) for [h:strategy:priest boost holy pve|boost holy pve]\r\nExecutes: [h:action:priest inner focus|inner focus] (20.000) for [h:strategy:priest boost holy pvp|boost holy pvp]\r\nExecutes: [h:action:priest inner focus|inner focus] (20.000) for [h:strategy:priest boost holy raid|boost holy raid]\r\nExecutes: [h:action:priest inner focus|inner focus] (20.000) for [h:strategy:priest boost shadow pve|boost shadow pve]\r\nExecutes: [h:action:priest inner focus|inner focus] (20.000) for [h:strategy:priest boost shadow pvp|boost shadow pvp]\r\nExecutes: [h:action:priest inner focus|inner focus] (20.000) for [h:strategy:priest boost shadow raid|boost shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (812, 'trigger:priest prayer of shadow protection on party', 1, 'prayer of shadow protection on party [h:object|trigger] [c:prayer of shadow protection on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (813, 'trigger:priest feedback', 1, 'feedback [h:object|trigger] [c:feedback|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest feedback|feedback] (20.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest feedback|feedback] (20.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest feedback|feedback] (20.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (814, 'trigger:deathknight raise dead', 1, 'raise dead [h:object|trigger] [c:raise dead|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:deathknight raise dead|raise dead] (11.000) for [h:strategy:deathknight nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (815, 'action:paladin repentance on snare target', 1, 'repentance on snare target [h:object|action] [c:do repentance on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nTriggers from: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (815, 'action:paladin repentance on snare target', 1, 'repentance on snare target [h:object|action] [c:do repentance on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nTriggers from: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), (816, 'trigger:priest trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:world buff|world buff] (1.000) for [h:strategy:priest buff|buff]\r\nExecutes: [h:action:world buff|world buff] (1.000) for [h:strategy:priest nc|nc]\r\nExecutes: [h:action:world buff|world buff] (1.000) for [h:strategy:priest rshadow|rshadow]', '', '', '', '', '', '', '', '', '', 0), - (817, 'trigger:priest prayer of fortitude on party', 1, 'prayer of fortitude on party [h:object|trigger] [c:prayer of fortitude on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (12.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), + (817, 'trigger:priest prayer of fortitude on party', 1, 'prayer of fortitude on party [h:object|trigger] [c:prayer of fortitude on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (818, 'trigger:priest binding heal', 1, 'binding heal [h:object|trigger] [c:binding heal|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest binding heal on party|binding heal on party] (52.000) for [h:strategy:priest heal|heal]\r\nExecutes: [h:action:priest binding heal on party|binding heal on party] (52.000) for [h:strategy:priest holy|holy]', '', '', '', '', '', '', '', '', '', 0), - (819, 'trigger:priest power word: fortitude on party', 1, 'power word: fortitude on party [h:object|trigger] [c:power word: fortitude on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest power word: fortitude on party|power word: fortitude on party] (11.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), + (819, 'trigger:priest power word: fortitude on party', 1, 'power word: fortitude on party [h:object|trigger] [c:power word: fortitude on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (820, 'action:home', 1, 'home [h:object|action] [c:do home|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|home] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|home] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|home] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|home] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (821, 'trigger:priest prayer of spirit on party', 1, 'prayer of spirit on party [h:object|trigger] [c:prayer of spirit on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest prayer of spirit on party|prayer of spirit on party] (14.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), - (822, 'trigger:priest divine spirit on party', 1, 'divine spirit on party [h:object|trigger] [c:divine spirit on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest divine spirit on party|divine spirit on party] (13.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), - (823, 'trigger:priest shadowguard', 1, 'shadowguard [h:object|trigger] [c:shadowguard|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest shadowguard|shadowguard] (10.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), + (821, 'trigger:priest prayer of spirit on party', 1, 'prayer of spirit on party [h:object|trigger] [c:prayer of spirit on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (822, 'trigger:priest divine spirit on party', 1, 'divine spirit on party [h:object|trigger] [c:divine spirit on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest divine spirit on party|divine spirit on party] (12.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest divine spirit on party|divine spirit on party] (12.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest divine spirit on party|divine spirit on party] (12.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest divine spirit on party|divine spirit on party] (12.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest divine spirit on party|divine spirit on party] (12.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest divine spirit on party|divine spirit on party] (12.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest divine spirit on party|divine spirit on party] (12.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest divine spirit on party|divine spirit on party] (12.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest divine spirit on party|divine spirit on party] (12.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (823, 'trigger:priest shadowguard', 1, 'shadowguard [h:object|trigger] [c:shadowguard|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest shadowguard|shadowguard] (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest shadowguard|shadowguard] (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest shadowguard|shadowguard] (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest shadowguard|shadowguard] (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest shadowguard|shadowguard] (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest shadowguard|shadowguard] (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest shadowguard|shadowguard] (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest shadowguard|shadowguard] (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest shadowguard|shadowguard] (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (824, 'action:quest objective completed', 1, 'quest objective completed [h:object|action] [c:do quest objective completed|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|quest objective completed] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|quest objective completed] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|quest objective completed] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (825, 'trigger:mage ice lance', 1, 'ice lance [h:object|trigger] [c:ice lance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage ice lance|ice lance] (10.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage ice lance|ice lance] (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage ice lance|ice lance] (10.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (826, 'action:reward', 1, 'reward [h:object|action] [c:do reward|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|r] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (827, 'value:generic ignore rpg targets', 1, 'ignore rpg target [h:object|value] [c:cdebug values ignore rpg target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (828, 'trigger:priest shackle undead', 1, 'shackle undead [h:object|trigger] [c:shackle undead|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest shackle undead|shackle undead] (31.000) for [h:strategy:priest cc|cc]', '', '', '', '', '', '', '', '', '', 0), + (828, 'trigger:priest shackle undead', 1, 'shackle undead [h:object|trigger] [c:shackle undead|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest shackle undead|shackle undead] (40.000) for [h:strategy:priest cc discipline pvp|cc discipline pvp]\r\nExecutes: [h:action:priest shackle undead|shackle undead] (40.000) for [h:strategy:priest cc shadow raid|cc shadow raid]\r\nExecutes: [h:action:priest shackle undead|shackle undead] (40.000) for [h:strategy:priest cc discipline raid|cc discipline raid]\r\nExecutes: [h:action:priest shackle undead|shackle undead] (40.000) for [h:strategy:priest cc discipline pve|cc discipline pve]\r\nExecutes: [h:action:priest shackle undead|shackle undead] (40.000) for [h:strategy:priest cc holy pve|cc holy pve]\r\nExecutes: [h:action:priest shackle undead|shackle undead] (40.000) for [h:strategy:priest cc holy pvp|cc holy pvp]\r\nExecutes: [h:action:priest shackle undead|shackle undead] (40.000) for [h:strategy:priest cc holy raid|cc holy raid]\r\nExecutes: [h:action:priest shackle undead|shackle undead] (40.000) for [h:strategy:priest cc shadow pve|cc shadow pve]\r\nExecutes: [h:action:priest shackle undead|shackle undead] (40.000) for [h:strategy:priest cc shadow pvp|cc shadow pvp]', '', '', '', '', '', '', '', '', '', 0), (829, 'action:teleport', 1, 'teleport [h:object|action] [c:do teleport|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|teleport] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|teleport] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|teleport] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|teleport] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (830, 'trigger:medium health', 1, 'medium health [h:object|trigger] [c:medium health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid regrowth|regrowth] (72.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:druid regrowth|regrowth] (72.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), + (830, 'trigger:medium health', 1, 'medium health [h:object|trigger] [c:medium health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid regrowth|regrowth] (71.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid regrowth|regrowth] (71.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid regrowth|regrowth] (71.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), (831, 'trigger:priest enemy out of spell range', 1, 'enemy out of spell range [h:object|trigger] [c:enemy out of spell range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:reach spell|reach spell] (39.000) for [h:strategy:priest shadow|shadow]\r\nExecutes: [h:action:reach spell|reach spell] (60.000) for [h:strategy:priest holy|holy]\r\nExecutes: [h:action:reach spell|reach spell] (39.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), (832, 'action:buff', 1, 'buff [h:object|action] [c:do buff|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|buff] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|buff] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|buff] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|buff] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (833, 'trigger:priest shadowform', 1, 'shadowform [h:object|trigger] [c:shadowform|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest shadowform|shadowform] (30.000) for [h:strategy:priest shadow|shadow]\r\nExecutes: [h:action:priest shadowform|shadowform] (30.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (834, 'trigger:priest vampiric embrace', 1, 'vampiric embrace [h:object|trigger] [c:vampiric embrace|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest vampiric embrace|vampiric embrace] (16.000) for [h:strategy:priest shadow|shadow]\r\nExecutes: [h:action:priest vampiric embrace|vampiric embrace] (16.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (835, 'trigger:combat end', 1, 'combat end [h:object|trigger] [c:combat end|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid react|react]', '', '', '', '', '', '', '', '', '', 0), - (836, 'action:druid thorns on party', 1, 'thorns on party [h:object|action] [c:do thorns on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (11.000) for [h:strategy:druid buff|buff]', '', '', '', '', '', '', '', '', '', 0), + (833, 'trigger:priest shadowform', 1, 'shadowform [h:object|trigger] [c:shadowform|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest shadowform|shadowform] (30.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest shadowform|shadowform] (30.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest shadowform|shadowform] (30.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (834, 'trigger:priest vampiric embrace', 1, 'vampiric embrace [h:object|trigger] [c:vampiric embrace|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest vampiric embrace|vampiric embrace] (13.000) for [h:strategy:priest shadow pve|shadow pve]\r\nExecutes: [h:action:priest vampiric embrace|vampiric embrace] (13.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nExecutes: [h:action:priest vampiric embrace|vampiric embrace] (13.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (835, 'trigger:combat end', 1, 'combat end [h:object|trigger] [c:combat end|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (836, 'action:druid thorns on party', 1, 'thorns on party [h:object|action] [c:do thorns on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nTriggers from: [h:trigger:druid thorns on party|thorns on party] with relevance (12.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (837, 'trigger:party member to heal out of spell range', 1, 'party member to heal out of spell range [h:object|trigger] [c:party member to heal out of spell range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:reach party member to heal|reach party member to heal] (91.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), (838, 'action:xp gain', 1, 'xp gain [h:object|action] [c:do xp gain|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|xpgain] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|xpgain] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|xpgain] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (839, 'trigger:mage living bomb', 1, 'living bomb [h:object|trigger] [c:living bomb|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage living bomb|living bomb] (22.000) for [h:strategy:mage aoe fire pve|aoe fire pve]\r\nExecutes: [h:action:mage living bomb|living bomb] (22.000) for [h:strategy:mage aoe fire raid|aoe fire raid]\r\nExecutes: [h:action:mage living bomb|living bomb] (22.000) for [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\nExecutes: [h:action:mage living bomb|living bomb] (13.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage living bomb|living bomb] (13.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage living bomb|living bomb] (13.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), (840, 'trigger:warlock shadowfury on snare target', 1, 'shadowfury on snare target [h:object|trigger] [c:shadowfury on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock shadowfury on snare target|shadowfury on snare target] (40.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock shadowfury on snare target|shadowfury on snare target] (40.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock shadowfury on snare target|shadowfury on snare target] (40.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), (841, 'action:steam rush', 1, 'steam rush [h:object|action] [c:do steam rush|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|enemy out of melee range] with relevance (81.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|enemy out of melee range] with relevance (81.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), - (842, 'action:hunter aspect of the wild', 1, 'aspect of the wild [h:object|action] [c:do aspect of the wild|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the wild|aspect of the wild] with relevance (10.000) for [h:strategy:hunter rnature|rnature]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the wild|aspect of the wild] with relevance (10.000) for [h:strategy:hunter rnature|rnature]', '', '', '', '', '', '', '', '', '', 0), - (843, 'trigger:priest silence on enemy healer', 1, 'silence on enemy healer [h:object|trigger] [c:silence on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest silence on enemy healer|silence on enemy healer] (40.000) for [h:strategy:priest shadow|shadow]\r\nExecutes: [h:action:priest silence on enemy healer|silence on enemy healer] (40.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (842, 'action:hunter aspect of the wild', 1, 'aspect of the wild [h:object|action] [c:do aspect of the wild|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the wild|aspect of the wild] with relevance (20.000) for [h:strategy:hunter aspect wild|aspect wild]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the wild|aspect of the wild] with relevance (20.000) for [h:strategy:hunter aspect wild|aspect wild]', '', '', '', '', '', '', '', '', '', 0), + (843, 'trigger:priest silence on enemy healer', 1, 'silence on enemy healer [h:object|trigger] [c:silence on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest silence on enemy healer|silence on enemy healer] (40.000) for [h:strategy:priest cc shadow raid|cc shadow raid]\r\nExecutes: [h:action:priest silence on enemy healer|silence on enemy healer] (40.000) for [h:strategy:priest cc shadow pve|cc shadow pve]\r\nExecutes: [h:action:priest silence on enemy healer|silence on enemy healer] (40.000) for [h:strategy:priest cc shadow pvp|cc shadow pvp]', '', '', '', '', '', '', '', '', '', 0), (844, 'action:ready check', 1, 'ready check [h:object|action] [c:do ready check|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|ready check] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|timer] with relevance (100.000) for [h:strategy|ready check]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|ready check] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|timer] with relevance (100.000) for [h:strategy|ready check]\r\nDead state behavior:\r\nTriggers from: [h:trigger|ready check] with relevance (100.000) for [h:strategy|default]\r\nTriggers from: [h:trigger|timer] with relevance (100.000) for [h:strategy|ready check]\r\nReaction behavior:\r\nTriggers from: [h:trigger|ready check] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (845, 'trigger:priest dispel magic', 1, 'dispel magic [h:object|trigger] [c:dispel magic|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure|cure]\r\nNon combat behavior:\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure|cure]', '', '', '', '', '', '', '', '', '', 0), + (845, 'trigger:priest dispel magic', 1, 'dispel magic [h:object|trigger] [c:dispel magic|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure shadow pve|cure shadow pve]\r\nNon combat behavior:\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nExecutes: [h:action:priest dispel magic|dispel magic] (53.000) for [h:strategy:priest cure shadow pve|cure shadow pve]', '', '', '', '', '', '', '', '', '', 0), (846, 'trigger:mage summon water elemental', 1, 'summon water elemental [h:object|trigger] [c:summon water elemental|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage summon water elemental|summon water elemental] (10.000) for [h:strategy:mage frost|frost]', '', '', '', '', '', '', '', '', '', 0), (847, 'chatfilter:group', 1, 'group [h:object|chatfilter]\r\nThis filter selects bots based on their group.\r\nExamples:\r\n@group: All bots in a group.\r\n@noraid: All bots that are not in a raid group.\r\n@group2: All bots in group 2.\r\n@group4-6: All bots in group 4 to 6.\r\n@raid: All bots that are in a raid group.\r\n@nogroup: All bots that are not grouped.\r\n@rleader: All bots that are leader of a raid group.\r\n@leader: All bots that are leader of their group.', '', '', '', '', '', '', '', '', '', 0), - (848, 'trigger:almost full health', 1, 'almost full health [h:object|trigger] [c:almost full health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid rejuvenation|rejuvenation] (62.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:druid rejuvenation|rejuvenation] (62.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), - (849, 'trigger:priest power word: fortitude', 1, 'power word: fortitude [h:object|trigger] [c:power word: fortitude|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest power word: fortitude|power word: fortitude] (12.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (848, 'trigger:almost full health', 1, 'almost full health [h:object|trigger] [c:almost full health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid rejuvenation|rejuvenation] (61.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid rejuvenation|rejuvenation] (61.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid rejuvenation|rejuvenation] (61.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (849, 'trigger:priest power word: fortitude', 1, 'power word: fortitude [h:object|trigger] [c:power word: fortitude|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest power word: fortitude|power word: fortitude] (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest power word: fortitude|power word: fortitude] (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest power word: fortitude|power word: fortitude] (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest power word: fortitude|power word: fortitude] (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest power word: fortitude|power word: fortitude] (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest power word: fortitude|power word: fortitude] (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest power word: fortitude|power word: fortitude] (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest power word: fortitude|power word: fortitude] (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest power word: fortitude|power word: fortitude] (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (850, 'action:flee chat shortcut', 1, 'flee chat shortcut [h:object|action] [c:do flee chat shortcut|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|flee] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (851, 'trigger:priest divine spirit', 1, 'divine spirit [h:object|trigger] [c:divine spirit|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest divine spirit|divine spirit] (14.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (852, 'trigger:medium aoe heal', 1, 'medium aoe heal [h:object|trigger] [c:medium aoe heal|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid tranquility|tranquility] (73.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), - (853, 'action:shaman riptide', 1, 'riptide [h:object|action] [c:do riptide|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (80.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (80.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (80.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (854, 'trigger:resurrect', 1, 'resurrect [h:object|trigger] [c:resurrect|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid rebirth|rebirth] (21.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid rebirth|rebirth] (21.000) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:druid rebirth|rebirth] (21.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid rebirth|rebirth] (21.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid rebirth|rebirth] (21.000) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:druid rebirth|rebirth] (21.000) for [h:strategy:druid bear|bear]\r\nNon combat behavior:\r\nExecutes: [h:action:druid revive|revive] (22.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (855, 'action:deathknight death and decay', 1, 'death and decay [h:object|action] [c:do death and decay|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight unholy aoe|unholy aoe]', '', '', '', '', '', '', '', '', '', 0), - (856, 'trigger:combat start', 1, 'combat start [h:object|trigger] [c:combat start|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid react|react]', '', '', '', '', '', '', '', '', '', 0), - (857, 'trigger:mage blink', 1, 'blink [h:object|trigger] [c:blink|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (858, 'action:rogue slice and dice', 1, 'slice and dice [h:object|action] [c:do slice and dice|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (22.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (22.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (22.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (859, 'trigger:death', 1, 'death [h:object|trigger] [c:death|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid react|react]', '', '', '', '', '', '', '', '', '', 0), + (851, 'trigger:priest divine spirit', 1, 'divine spirit [h:object|trigger] [c:divine spirit|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:priest divine spirit|divine spirit] (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:priest divine spirit|divine spirit] (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nExecutes: [h:action:priest divine spirit|divine spirit] (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nExecutes: [h:action:priest divine spirit|divine spirit] (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nExecutes: [h:action:priest divine spirit|divine spirit] (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nExecutes: [h:action:priest divine spirit|divine spirit] (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nExecutes: [h:action:priest divine spirit|divine spirit] (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nExecutes: [h:action:priest divine spirit|divine spirit] (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nExecutes: [h:action:priest divine spirit|divine spirit] (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (852, 'trigger:medium aoe heal', 1, 'medium aoe heal [h:object|trigger] [c:medium aoe heal|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid tranquility|tranquility] (72.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid tranquility|tranquility] (72.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid tranquility|tranquility] (72.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (853, 'action:shaman riptide', 1, 'riptide [h:object|action] [c:do riptide|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (80.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (80.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (80.000) for [h:strategy:shaman restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (854, 'trigger:resurrect', 1, 'resurrect [h:object|trigger] [c:resurrect|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:set non combat state|set non combat state] (110.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (855, 'action:deathknight death and decay', 1, 'death and decay [h:object|action] [c:do death and decay|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight unholy aoe|unholy aoe]', '', '', '', '', '', '', '', '', '', 0), + (856, 'trigger:combat start', 1, 'combat start [h:object|trigger] [c:combat start|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:set combat state|set combat state] (110.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (857, 'trigger:mage blink', 1, 'blink [h:object|trigger] [c:blink|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage frost raid|frost raid]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage blink|blink] (90.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), + (858, 'action:rogue slice and dice', 1, 'slice and dice [h:object|action] [c:do slice and dice|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (22.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (22.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (22.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:rogue slice and dice|slice and dice] with relevance (21.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (859, 'trigger:death', 1, 'death [h:object|trigger] [c:death|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:set dead state|set dead state] (110.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (860, 'trigger:warrior shockwave', 1, 'shockwave [h:object|trigger] [c:shockwave|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior shockwave|shockwave] (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nExecutes: [h:action:warrior shockwave|shockwave] (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:warrior shockwave|shockwave] (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]', '', '', '', '', '', '', '', '', '', 0), (861, 'action:rpg train', 1, 'rpg train [h:object|action] [c:do rpg train|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg train] with relevance (1.080) for [h:strategy|rpg maintenance]', '', '', '', '', '', '', '', '', '', 0), - (862, 'trigger:warrior enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior arms raid|arms raid]\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:warrior cc arms pvp|cc arms pvp]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior fury raid|fury raid]\r\nExecutes: [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (862, 'trigger:warrior enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior arms raid|arms raid]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:warrior cc arms pvp|cc arms pvp]\r\nExecutes: [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior charge|charge] (30.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), (863, 'trigger:warrior rend', 1, 'rend [h:object|trigger] [c:rend|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior rend|rend] (10.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:warrior rend|rend] (10.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior rend|rend] (10.000) for [h:strategy:warrior arms raid|arms raid]', '', '', '', '', '', '', '', '', '', 0), (864, 'action:rpg emote', 1, 'rpg emote [h:object|action] [c:do rpg emote|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg] with relevance (1.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), - (865, 'trigger:warrior target low health', 1, 'target low health [h:object|trigger] [c:target low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior execute|execute] (14.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior execute|execute] (22.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:warrior execute|execute] (22.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior execute|execute] (22.000) for [h:strategy:warrior arms raid|arms raid]\r\nExecutes: [h:action:warrior execute|execute] (14.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior execute|execute] (14.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), + (865, 'trigger:warrior target low health', 1, 'target low health [h:object|trigger] [c:target low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior execute|execute] (22.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:warrior execute|execute] (22.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior execute|execute] (22.000) for [h:strategy:warrior arms raid|arms raid]\r\nExecutes: [h:action:warrior execute|execute] (14.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior execute|execute] (14.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior execute|execute] (14.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), (866, 'action:druid swipe (bear)', 1, 'swipe (bear) [h:object|action] [c:do swipe (bear)|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (25.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (26.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (25.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (26.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (867, 'trigger:warrior death wish', 1, 'death wish [h:object|trigger] [c:death wish|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior death wish|death wish] (20.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior death wish|death wish] (20.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nExecutes: [h:action:warrior death wish|death wish] (20.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]', '', '', '', '', '', '', '', '', '', 0), - (868, 'trigger:warrior berserker stance', 1, 'berserker stance [h:object|trigger] [c:berserker stance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (30.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (30.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (30.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]', '', '', '', '', '', '', '', '', '', 0), + (867, 'trigger:warrior death wish', 1, 'death wish [h:object|trigger] [c:death wish|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior death wish|death wish] (20.000) for [h:strategy:warrior boost fury pve|boost fury pve]\r\nExecutes: [h:action:warrior death wish|death wish] (20.000) for [h:strategy:warrior boost fury pvp|boost fury pvp]\r\nExecutes: [h:action:warrior death wish|death wish] (20.000) for [h:strategy:warrior boost fury raid|boost fury raid]', '', '', '', '', '', '', '', '', '', 0), + (868, 'trigger:warrior berserker stance', 1, 'berserker stance [h:object|trigger] [c:berserker stance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (30.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (30.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (30.000) for [h:strategy:warrior buff fury raid|buff fury raid]', '', '', '', '', '', '', '', '', '', 0), (869, 'trigger:hunter black arrow on snare target', 1, 'black arrow on snare target [h:object|trigger] [c:black arrow on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter black arrow|black arrow] (59.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), - (870, 'action:mage evocation', 1, 'evocation [h:object|action] [c:do evocation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (871, 'trigger:warrior pummel on enemy healer', 1, 'pummel on enemy healer [h:object|trigger] [c:pummel on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000) for [h:strategy:warrior cc fury raid|cc fury raid]\r\nExecutes: [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nExecutes: [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000) for [h:strategy:warrior cc fury pve|cc fury pve]', '', '', '', '', '', '', '', '', '', 0), + (870, 'action:mage evocation', 1, 'evocation [h:object|action] [c:do evocation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (23.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (23.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (23.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (23.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (23.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (23.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (23.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (23.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (23.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), + (871, 'trigger:warrior pummel on enemy healer', 1, 'pummel on enemy healer [h:object|trigger] [c:pummel on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nExecutes: [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000) for [h:strategy:warrior cc fury pve|cc fury pve]\r\nExecutes: [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000) for [h:strategy:warrior cc fury raid|cc fury raid]', '', '', '', '', '', '', '', '', '', 0), (872, 'action:rpg work', 1, 'rpg work [h:object|action] [c:do rpg work|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg] with relevance (1.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), - (873, 'trigger:warrior intercept on snare target', 1, 'intercept on snare target [h:object|trigger] [c:intercept on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior intercept on snare target|intercept on snare target] (10.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior intercept on snare target|intercept on snare target] (10.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior intercept on snare target|intercept on snare target] (10.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), - (874, 'trigger:shaman water breathing', 1, 'water breathing [h:object|trigger] [c:water breathing|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (873, 'trigger:warrior intercept on snare target', 1, 'intercept on snare target [h:object|trigger] [c:intercept on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior intercept on snare target|intercept on snare target] (10.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior intercept on snare target|intercept on snare target] (10.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior intercept on snare target|intercept on snare target] (10.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), + (874, 'trigger:shaman water breathing', 1, 'water breathing [h:object|trigger] [c:water breathing|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman water breathing|water breathing] (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]', '', '', '', '', '', '', '', '', '', 0), (875, 'action:rpg heal', 1, 'rpg heal [h:object|action] [c:do rpg heal|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg heal] with relevance (1.025) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), - (876, 'action:druid dash', 1, 'dash [h:object|action] [c:do dash|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid enemy out of melee range|enemy out of melee range] with relevance (23.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (81.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (91.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid enemy out of melee range|enemy out of melee range] with relevance (23.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (81.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (91.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), + (876, 'action:druid dash', 1, 'dash [h:object|action] [c:do dash|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid enemy out of melee range|enemy out of melee range] with relevance (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]', '', '', '', '', '', '', '', '', '', 0), (877, 'trigger:warrior slam!', 1, 'slam! [h:object|trigger] [c:slam!|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior slam|slam] (21.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior slam|slam] (21.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior slam|slam] (21.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), (878, 'trigger:warrior rampage', 1, 'rampage [h:object|trigger] [c:rampage|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior rampage|rampage] (41.000) for [h:strategy:warrior fury|fury]', '', '', '', '', '', '', '', '', '', 0), - (879, 'action:rogue rupture', 1, 'rupture [h:object|action] [c:do rupture|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:rogue rupture|rupture] with relevance (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue rupture|rupture] with relevance (20.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:rogue rupture|rupture] with relevance (20.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (880, 'trigger:warrior intercept and far enemy and light rage available', 1, 'intercept and far enemy and light rage available [h:object|trigger] [c:intercept and far enemy and light rage available|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (879, 'action:rogue rupture', 1, 'rupture [h:object|action] [c:do rupture|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue rupture|rupture] with relevance (20.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:rogue rupture|rupture] with relevance (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue rupture|rupture] with relevance (20.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (20.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (880, 'trigger:warrior intercept and far enemy and light rage available', 1, 'intercept and far enemy and light rage available [h:object|trigger] [c:intercept and far enemy and light rage available|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), (881, 'action:move away from magmadar lava bomb', 1, 'move away from magmadar lava bomb [h:object|action] [c:do move away from magmadar lava bomb|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|magmadar lava bomb] with relevance (100.000) for [h:strategy|magmadar]', '', '', '', '', '', '', '', '', '', 0), - (882, 'trigger:warrior defensive stance', 1, 'defensive stance [h:object|trigger] [c:defensive stance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior defensive stance|defensive stance] (30.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior defensive stance|defensive stance] (30.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior defensive stance|defensive stance] (30.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), - (883, 'trigger:warrior shield block', 1, 'shield block [h:object|trigger] [c:shield block|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior shield block|shield block] (32.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior shield block|shield block] (32.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior shield block|shield block] (32.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (884, 'trigger:warrior revenge', 1, 'revenge [h:object|trigger] [c:revenge|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior revenge|revenge] (11.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior revenge|revenge] (11.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior revenge|revenge] (11.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (882, 'trigger:warrior defensive stance', 1, 'defensive stance [h:object|trigger] [c:defensive stance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior defensive stance|defensive stance] (30.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior defensive stance|defensive stance] (30.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior defensive stance|defensive stance] (30.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (883, 'trigger:warrior shield block', 1, 'shield block [h:object|trigger] [c:shield block|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior shield block|shield block] (23.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior shield block|shield block] (23.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:warrior shield block|shield block] (23.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (884, 'trigger:warrior revenge', 1, 'revenge [h:object|trigger] [c:revenge|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior revenge|revenge] (21.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior revenge|revenge] (21.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:warrior revenge|revenge] (21.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), (885, 'trigger:warrior spell reflection', 1, 'spell reflection [h:object|trigger] [c:spell reflection|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior spell reflection|spell reflection] (31.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior spell reflection|spell reflection] (31.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior spell reflection|spell reflection] (31.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), (886, 'action:bg status check', 1, 'bg status check [h:object|action] [c:do bg status check|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|bg invite active] with relevance (100.000) for [h:strategy|bg]', '', '', '', '', '', '', '', '', '', 0), (887, 'value:skip spells list', 1, 'skip spells list [h:object|value] [c:cdebug values skip spells list|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (888, 'action:warrior sweeping strikes', 1, 'sweeping strikes [h:object|action] [c:do sweeping strikes|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]', '', '', '', '', '', '', '', '', '', 0), - (889, 'trigger:warrior shield bash', 1, 'shield bash [h:object|trigger] [c:shield bash|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior shield bash|shield bash] (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:warrior cc arms pvp|cc arms pvp]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000)[h:action:warrior shield bash|shield bash] (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:warrior shield bash|shield bash] (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]', '', '', '', '', '', '', '', '', '', 0), - (890, 'trigger:warrior taunt on snare target', 1, 'taunt on snare target [h:object|trigger] [c:taunt on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (891, 'trigger:warrior concussion blow on snare target', 1, 'concussion blow on snare target [h:object|trigger] [c:concussion blow on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior concussion blow|concussion blow] (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nExecutes: [h:action:warrior concussion blow|concussion blow] (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:warrior concussion blow|concussion blow] (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]', '', '', '', '', '', '', '', '', '', 0), - (892, 'trigger:warrior shield bash on enemy healer', 1, 'shield bash on enemy healer [h:object|trigger] [c:shield bash on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nExecutes: [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]', '', '', '', '', '', '', '', '', '', 0), - (893, 'action:warrior thunder clap', 1, 'thunder clap [h:object|action] [c:do thunder clap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), + (888, 'action:warrior sweeping strikes', 1, 'sweeping strikes [h:object|action] [c:do sweeping strikes|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (25.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (25.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (25.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]', '', '', '', '', '', '', '', '', '', 0), + (889, 'trigger:warrior shield bash', 1, 'shield bash [h:object|trigger] [c:shield bash|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nExecutes: [h:action:warrior shield bash|shield bash] (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:warrior cc arms pvp|cc arms pvp]\r\nExecutes: [h:action:warrior shield bash|shield bash] (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nExecutes: [h:action:warrior shield bash|shield bash] (40.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]', '', '', '', '', '', '', '', '', '', 0), + (890, 'trigger:warrior taunt on snare target', 1, 'taunt on snare target [h:object|trigger] [c:taunt on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (891, 'trigger:warrior concussion blow on snare target', 1, 'concussion blow on snare target [h:object|trigger] [c:concussion blow on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior concussion blow|concussion blow] (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]\r\nExecutes: [h:action:warrior concussion blow|concussion blow] (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nExecutes: [h:action:warrior concussion blow|concussion blow] (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]', '', '', '', '', '', '', '', '', '', 0), + (892, 'trigger:warrior shield bash on enemy healer', 1, 'shield bash on enemy healer [h:object|trigger] [c:shield bash on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]\r\nExecutes: [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nExecutes: [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]', '', '', '', '', '', '', '', '', '', 0), + (893, 'action:warrior thunder clap', 1, 'thunder clap [h:object|action] [c:do thunder clap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:warrior thunder clap|thunder clap] with relevance (22.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), (894, 'trigger:paladin paladin aura', 1, 'paladin aura [h:object|trigger] [c:paladin aura|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin retribution aura|retribution aura] (12.000) for [h:strategy:paladin baoe|baoe]\r\nExecutes: [h:action:paladin frost resistance aura|frost resistance aura] (12.000) for [h:strategy:paladin rfrost|rfrost]\r\nExecutes: [h:action:paladin devotion aura|devotion aura] (12.000) for [h:strategy:paladin barmor|barmor]\r\nExecutes: [h:action:paladin concentration aura|concentration aura] (12.000) for [h:strategy:paladin bconcentration|bconcentration]\r\nExecutes: [h:action:paladin sanctity aura|sanctity aura] (12.000) for [h:strategy:paladin bsanctity|bsanctity]\r\nExecutes: [h:action:paladin sanctity aura|sanctity aura] (40.000) for [h:strategy:paladin dps|dps]\r\nExecutes: [h:action:paladin concentration aura|concentration aura] (20.000) for [h:strategy:paladin heal|heal]\r\nExecutes: [h:action:paladin fire resistance aura|fire resistance aura] (12.000) for [h:strategy:paladin rfire|rfire]\r\nExecutes: [h:action:paladin shadow resistance aura|shadow resistance aura] (12.000) for [h:strategy:paladin rshadow|rshadow]\r\nExecutes: [h:action:paladin retribution aura|retribution aura] (40.000) for [h:strategy:paladin tank|tank]\r\nNon combat behavior:\r\nExecutes: [h:action:paladin retribution aura|retribution aura] (12.000) for [h:strategy:paladin baoe|baoe]\r\nExecutes: [h:action:paladin frost resistance aura|frost resistance aura] (12.000) for [h:strategy:paladin rfrost|rfrost]\r\nExecutes: [h:action:paladin devotion aura|devotion aura] (12.000) for [h:strategy:paladin barmor|barmor]\r\nExecutes: [h:action:paladin concentration aura|concentration aura] (12.000) for [h:strategy:paladin bconcentration|bconcentration]\r\nExecutes: [h:action:paladin sanctity aura|sanctity aura] (12.000) for [h:strategy:paladin bsanctity|bsanctity]\r\nExecutes: [h:action:paladin fire resistance aura|fire resistance aura] (12.000) for [h:strategy:paladin rfire|rfire]\r\nExecutes: [h:action:paladin shadow resistance aura|shadow resistance aura] (12.000) for [h:strategy:paladin rshadow|rshadow]', '', '', '', '', '', '', '', '', '', 0), (895, 'value:can ah sell', 1, 'can ah sell [h:object|value] [c:cdebug values can ah sell|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (896, 'trigger:paladin divine favor', 1, 'divine favor [h:object|trigger] [c:divine favor|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin divine favor|divine favor] (20.000) for [h:strategy:paladin buff holy pvp|buff holy pvp]\r\nExecutes: [h:action:paladin divine favor|divine favor] (20.000) for [h:strategy:paladin buff holy pve|buff holy pve]\r\nExecutes: [h:action:paladin divine favor|divine favor] (20.000) for [h:strategy:paladin buff holy raid|buff holy raid]', '', '', '', '', '', '', '', '', '', 0), - (897, 'trigger:paladin righteous fury', 1, 'righteous fury [h:object|trigger] [c:righteous fury|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin righteous fury|righteous fury] (11.000) for [h:strategy:paladin buff protection raid|buff protection raid]\r\nExecutes: [h:action:paladin righteous fury|righteous fury] (11.000) for [h:strategy:paladin buff protection pve|buff protection pve]\r\nExecutes: [h:action:paladin righteous fury|righteous fury] (11.000) for [h:strategy:paladin buff protection pvp|buff protection pvp]', '', '', '', '', '', '', '', '', '', 0), - (898, 'trigger:paladin blessing on party', 1, 'blessing on party [h:object|trigger] [c:blessing on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin pve blessing on party|pve blessing on party] (12.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]\r\nExecutes: [h:action:paladin pve blessing on party|pve blessing on party] (12.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nExecutes: [h:action:paladin pvp blessing on party|pvp blessing on party] (12.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nExecutes: [h:action:paladin pve blessing on party|pve blessing on party] (12.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nExecutes: [h:action:paladin raid blessing on party|raid blessing on party] (12.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nExecutes: [h:action:paladin pvp blessing on party|pvp blessing on party] (12.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nExecutes: [h:action:paladin raid blessing on party|raid blessing on party] (12.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]\r\nExecutes: [h:action:paladin pvp blessing on party|pvp blessing on party] (12.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nExecutes: [h:action:paladin raid blessing on party|raid blessing on party] (12.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (896, 'trigger:paladin divine favor', 1, 'divine favor [h:object|trigger] [c:divine favor|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin divine favor|divine favor] (20.000) for [h:strategy:paladin boost holy pvp|boost holy pvp]\r\nExecutes: [h:action:paladin divine favor|divine favor] (20.000) for [h:strategy:paladin boost holy raid|boost holy raid]\r\nExecutes: [h:action:paladin divine favor|divine favor] (20.000) for [h:strategy:paladin boost holy pve|boost holy pve]', '', '', '', '', '', '', '', '', '', 0), + (897, 'trigger:paladin righteous fury', 1, 'righteous fury [h:object|trigger] [c:righteous fury|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin righteous fury|righteous fury] (11.000) for [h:strategy:paladin buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:paladin righteous fury|righteous fury] (11.000) for [h:strategy:paladin buff protection pve|buff protection pve]\r\nExecutes: [h:action:paladin righteous fury|righteous fury] (11.000) for [h:strategy:paladin buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (898, 'trigger:paladin blessing on party', 1, 'blessing on party [h:object|trigger] [c:blessing on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin raid blessing on party|raid blessing on party] (12.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]\r\nExecutes: [h:action:paladin raid blessing on party|raid blessing on party] (12.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nExecutes: [h:action:paladin pvp blessing on party|pvp blessing on party] (12.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nExecutes: [h:action:paladin pvp blessing on party|pvp blessing on party] (12.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nExecutes: [h:action:paladin pve blessing on party|pve blessing on party] (12.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nExecutes: [h:action:paladin pvp blessing on party|pvp blessing on party] (12.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nExecutes: [h:action:paladin pve blessing on party|pve blessing on party] (12.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nExecutes: [h:action:paladin raid blessing on party|raid blessing on party] (12.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]\r\nExecutes: [h:action:paladin pve blessing on party|pve blessing on party] (12.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]', '', '', '', '', '', '', '', '', '', 0), (899, 'trigger:paladin crusader aura', 1, 'crusader aura [h:object|trigger] [c:crusader aura|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin crusader aura|crusader aura] (10.000) for [h:strategy:paladin aura crusader|aura crusader]', '', '', '', '', '', '', '', '', '', 0), (900, 'value:pull target', 1, 'pull target [h:object|value] [c:cdebug values pull target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (901, 'action:paladin blessing of wisdom on party', 1, 'blessing of wisdom on party [h:object|action] [c:do blessing of wisdom on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of wisdom on party|blessing of wisdom on party] with relevance (12.000) for [h:strategy:paladin blessing wisdom|blessing wisdom]', '', '', '', '', '', '', '', '', '', 0), - (902, 'trigger:paladin hammer of justice', 1, 'hammer of justice [h:object|trigger] [c:hammer of justice|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), - (903, 'trigger:paladin hammer of justice on enemy healer', 1, 'hammer of justice on enemy healer [h:object|trigger] [c:hammer of justice on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (902, 'trigger:paladin hammer of justice', 1, 'hammer of justice [h:object|trigger] [c:hammer of justice|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nExecutes: [h:action:paladin hammer of justice|hammer of justice] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (903, 'trigger:paladin hammer of justice on enemy healer', 1, 'hammer of justice on enemy healer [h:object|trigger] [c:hammer of justice on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nExecutes: [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), (904, 'action:leave', 1, 'leave [h:object|action] [c:do leave|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|leave] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|leave] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|leave] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|leave] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (905, 'trigger:paladin seal of justice', 1, 'seal of justice [h:object|trigger] [c:seal of justice|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin seal of command|seal of command] (13.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nExecutes: [h:action:paladin seal of light|seal of light] (12.000) for [h:strategy:paladin holy pve|holy pve]\r\nExecutes: [h:action:paladin seal of light|seal of light] (12.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nExecutes: [h:action:paladin seal of light|seal of light] (12.000) for [h:strategy:paladin holy raid|holy raid]\r\nExecutes: [h:action:paladin seal of vengeance|seal of vengeance] (12.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin seal of vengeance|seal of vengeance] (12.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nExecutes: [h:action:paladin seal of vengeance|seal of vengeance] (12.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:paladin seal of command|seal of command] (13.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nExecutes: [h:action:paladin seal of command|seal of command] (13.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), (906, 'action:rpg ah sell', 1, 'rpg ah sell [h:object|action] [c:do rpg ah sell|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg ah sell] with relevance (1.110) for [h:strategy|rpg vendor]', '', '', '', '', '', '', '', '', '', 0), (907, 'trigger:hunter silencing shot on enemy healer', 1, 'silencing shot on enemy healer [h:object|trigger] [c:silencing shot on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter silencing shot on enemy healer|silencing shot on enemy healer] (40.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (908, 'trigger:paladin divine illumination', 1, 'divine illumination [h:object|trigger] [c:divine illumination|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin divine illumination|divine illumination] (25.000) for [h:strategy:paladin heal|heal]', '', '', '', '', '', '', '', '', '', 0), - (909, 'action:warlock death coil on enemy healer', 1, 'death coil on enemy healer [h:object|action] [c:do death coil on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), - (910, 'trigger:enemy ten yards', 1, 'enemy ten yards [h:object|trigger] [c:enemy ten yards|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000)[h:action:warlock curse of exhaustion|curse of exhaustion] (40.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), - (911, 'trigger:paladin blessing', 1, 'blessing [h:object|trigger] [c:blessing|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin pve blessing|pve blessing] (10.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]\r\nExecutes: [h:action:paladin pve blessing|pve blessing] (10.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nExecutes: [h:action:paladin pvp blessing|pvp blessing] (10.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nExecutes: [h:action:paladin pve blessing|pve blessing] (10.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nExecutes: [h:action:paladin raid blessing|raid blessing] (10.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nExecutes: [h:action:paladin pvp blessing|pvp blessing] (10.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nExecutes: [h:action:paladin raid blessing|raid blessing] (10.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]\r\nExecutes: [h:action:paladin pvp blessing|pvp blessing] (10.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nExecutes: [h:action:paladin raid blessing|raid blessing] (10.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (912, 'trigger:paladin cleanse', 1, 'cleanse [h:object|trigger] [c:cleanse|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (913, 'trigger:mage pyroblast', 1, 'pyroblast [h:object|trigger] [c:pyroblast|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage pyroblast|pyroblast] (10.000) for [h:strategy:mage fire|fire]', '', '', '', '', '', '', '', '', '', 0), - (914, 'trigger:paladin judgement', 1, 'judgement [h:object|trigger] [c:judgement|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin judgement|judgement] (30.000) for [h:strategy:paladin dps|dps]\r\nExecutes: [h:action:paladin judgement|judgement] (30.000)[h:action:paladin exorcism|exorcism] (29.000) for [h:strategy:paladin tank|tank]', '', '', '', '', '', '', '', '', '', 0), - (915, 'trigger:paladin aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:paladin aoe holy raid|aoe holy raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:paladin aoe protection pvp|aoe protection pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:paladin aoe holy pvp|aoe holy pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:paladin aoe holy pve|aoe holy pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:paladin aoe protection pve|aoe protection pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:paladin aoe retribution pve|aoe retribution pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:paladin aoe protection raid|aoe protection raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:paladin aoe retribution pvp|aoe retribution pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:paladin aoe retribution raid|aoe retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (909, 'action:warlock death coil on enemy healer', 1, 'death coil on enemy healer [h:object|action] [c:do death coil on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] with relevance (44.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), + (910, 'trigger:enemy ten yards', 1, 'enemy ten yards [h:object|trigger] [c:enemy ten yards|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000)[h:action:warlock curse of exhaustion|curse of exhaustion] (40.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock howl of terror|howl of terror] (40.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), + (911, 'trigger:paladin blessing', 1, 'blessing [h:object|trigger] [c:blessing|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin raid blessing|raid blessing] (10.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]\r\nExecutes: [h:action:paladin raid blessing|raid blessing] (10.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nExecutes: [h:action:paladin pvp blessing|pvp blessing] (10.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nExecutes: [h:action:paladin pvp blessing|pvp blessing] (10.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nExecutes: [h:action:paladin pve blessing|pve blessing] (10.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nExecutes: [h:action:paladin pvp blessing|pvp blessing] (10.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nExecutes: [h:action:paladin pve blessing|pve blessing] (10.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nExecutes: [h:action:paladin raid blessing|raid blessing] (10.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]\r\nExecutes: [h:action:paladin pve blessing|pve blessing] (10.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (912, 'trigger:paladin cleanse', 1, 'cleanse [h:object|trigger] [c:cleanse|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nExecutes: [h:action:paladin cleanse|cleanse] (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (913, 'trigger:mage pyroblast', 1, 'pyroblast [h:object|trigger] [c:pyroblast|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage pyroblast|pyroblast] (11.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage pyroblast|pyroblast] (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage pyroblast|pyroblast] (11.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), + (914, 'trigger:paladin judgement', 1, 'judgement [h:object|trigger] [c:judgement|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin judgement|judgement] (11.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:paladin judgement|judgement] (12.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nExecutes: [h:action:paladin judgement|judgement] (12.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nExecutes: [h:action:paladin judgement|judgement] (11.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin judgement|judgement] (11.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nExecutes: [h:action:paladin judgement|judgement] (12.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (915, 'trigger:paladin aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000) for [h:strategy:paladin aoe protection raid|aoe protection raid]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000) for [h:strategy:paladin aoe retribution pve|aoe retribution pve]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000) for [h:strategy:paladin aoe protection pve|aoe protection pve]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000) for [h:strategy:paladin aoe protection pvp|aoe protection pvp]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000) for [h:strategy:paladin aoe retribution pvp|aoe retribution pvp]\r\nExecutes: [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000) for [h:strategy:paladin aoe retribution raid|aoe retribution raid]', '', '', '', '', '', '', '', '', '', 0), (916, 'trigger:druid enemy out of spell range', 1, 'enemy out of spell range [h:object|trigger] [c:enemy out of spell range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:reach spell|reach spell] (30.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), (917, 'trigger:paladin the art of war', 1, 'the art of war [h:object|trigger] [c:the art of war|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin exorcism|exorcism] (23.000)[h:action:paladin flash of light|flash of light] (22.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nExecutes: [h:action:paladin exorcism|exorcism] (23.000)[h:action:paladin flash of light|flash of light] (22.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nExecutes: [h:action:paladin exorcism|exorcism] (23.000)[h:action:paladin flash of light|flash of light] (22.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), (918, 'action:max dps chat shortcut', 1, 'max dps chat shortcut [h:object|action] [c:do max dps chat shortcut|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|max dps] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), @@ -940,178 +940,178 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (920, 'trigger:paladin enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]', '', '', '', '', '', '', '', '', '', 0), (921, 'trigger:paladin avenger\'s shield', 1, 'avenger\'s shield [h:object|trigger] [c:avenger\'s shield|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin avenger\'s shield|avenger\'s shield] (20.000) for [h:strategy:paladin aoe protection pvp|aoe protection pvp]\r\nExecutes: [h:action:paladin avenger\'s shield|avenger\'s shield] (20.000) for [h:strategy:paladin aoe protection pve|aoe protection pve]\r\nExecutes: [h:action:paladin avenger\'s shield|avenger\'s shield] (20.000) for [h:strategy:paladin aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), (922, 'action:berserking', 1, 'berserking [h:object|action] [c:do berserking|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|berserking] with relevance (58.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|berserking] with relevance (58.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), - (923, 'trigger:paladin holy shield', 1, 'holy shield [h:object|trigger] [c:holy shield|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin holy shield|holy shield] (23.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin holy shield|holy shield] (23.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nExecutes: [h:action:paladin holy shield|holy shield] (23.000) for [h:strategy:paladin protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (923, 'trigger:paladin holy shield', 1, 'holy shield [h:object|trigger] [c:holy shield|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin holy shield|holy shield] (23.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:paladin holy shield|holy shield] (23.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin holy shield|holy shield] (23.000) for [h:strategy:paladin protection pvp|protection pvp]', '', '', '', '', '', '', '', '', '', 0), (924, 'trigger:shaman enemy out of spell range', 1, 'enemy out of spell range [h:object|trigger] [c:enemy out of spell range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:reach spell|reach spell] (19.000) for [h:strategy:shaman caster|caster]', '', '', '', '', '', '', '', '', '', 0), (925, 'trigger:deathknight improved icy talons', 1, 'improved icy talons [h:object|trigger] [c:improved icy talons|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight improved icy talons|improved icy talons] (19.000) for [h:strategy:deathknight bdps|bdps]\r\nNon combat behavior:\r\nExecutes: [h:action:deathknight improved icy talons|improved icy talons] (19.000) for [h:strategy:deathknight bdps|bdps]', '', '', '', '', '', '', '', '', '', 0), - (926, 'trigger:deathknight death coil', 1, 'death coil [h:object|trigger] [c:death coil|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight death coill|death coill] (13.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight death coill|death coill] (13.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight death coill|death coill] (13.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight death coill|death coill] (13.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (927, 'trigger:critical aoe heal', 1, 'critical aoe heal [h:object|trigger] [c:critical aoe heal|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight anti magic zone|anti magic zone] (91.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight anti magic zone|anti magic zone] (91.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight anti magic zone|anti magic zone] (91.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight anti magic zone|anti magic zone] (91.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (928, 'trigger:deathknight mind freeze', 1, 'mind freeze [h:object|trigger] [c:mind freeze|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight mind freeze|mind freeze] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight mind freeze|mind freeze] (21.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight mind freeze|mind freeze] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight mind freeze|mind freeze] (21.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (929, 'action:paladin holy shield', 1, 'holy shield [h:object|action] [c:do holy shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin holy shield|holy shield] with relevance (23.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:paladin holy shield|holy shield] with relevance (23.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:paladin holy shield|holy shield] with relevance (23.000) for [h:strategy:paladin protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (930, 'trigger:deathknight horn of winter', 1, 'horn of winter [h:object|trigger] [c:horn of winter|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight horn of winter|horn of winter] (11.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight horn of winter|horn of winter] (11.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight horn of winter|horn of winter] (11.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight horn of winter|horn of winter] (11.000) for [h:strategy:deathknight unholy|unholy]\r\nNon combat behavior:\r\nExecutes: [h:action:deathknight horn of winter|horn of winter] (21.000) for [h:strategy:deathknight nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (926, 'trigger:deathknight death coil', 1, 'death coil [h:object|trigger] [c:death coil|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight death coill|death coill] (13.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight death coill|death coill] (13.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight death coill|death coill] (13.000) for [h:strategy:deathknight unholy|unholy]\r\nExecutes: [h:action:deathknight death coill|death coill] (13.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (927, 'trigger:critical aoe heal', 1, 'critical aoe heal [h:object|trigger] [c:critical aoe heal|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight anti magic zone|anti magic zone] (91.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight anti magic zone|anti magic zone] (91.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight anti magic zone|anti magic zone] (91.000) for [h:strategy:deathknight unholy|unholy]\r\nExecutes: [h:action:deathknight anti magic zone|anti magic zone] (91.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (928, 'trigger:deathknight mind freeze', 1, 'mind freeze [h:object|trigger] [c:mind freeze|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight mind freeze|mind freeze] (21.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight mind freeze|mind freeze] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight mind freeze|mind freeze] (21.000) for [h:strategy:deathknight unholy|unholy]\r\nExecutes: [h:action:deathknight mind freeze|mind freeze] (21.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (929, 'action:paladin holy shield', 1, 'holy shield [h:object|action] [c:do holy shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin holy shield|holy shield] with relevance (23.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:paladin holy shield|holy shield] with relevance (23.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:paladin holy shield|holy shield] with relevance (23.000) for [h:strategy:paladin protection pvp|protection pvp]', '', '', '', '', '', '', '', '', '', 0), + (930, 'trigger:deathknight horn of winter', 1, 'horn of winter [h:object|trigger] [c:horn of winter|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight horn of winter|horn of winter] (11.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight horn of winter|horn of winter] (11.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight horn of winter|horn of winter] (11.000) for [h:strategy:deathknight unholy|unholy]\r\nExecutes: [h:action:deathknight horn of winter|horn of winter] (11.000) for [h:strategy:deathknight blood|blood]\r\nNon combat behavior:\r\nExecutes: [h:action:deathknight horn of winter|horn of winter] (21.000) for [h:strategy:deathknight nc|nc]', '', '', '', '', '', '', '', '', '', 0), (931, 'action:hunter say::low ammo', 1, 'say::low ammo [h:object|action] [c:do say::low ammo|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter item count|item count] with relevance (10.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), (932, 'action:react', 1, 'react [h:object|action] [c:do react|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|react] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|react] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|react] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|react] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (933, 'trigger:deathknight icy touch', 1, 'icy touch [h:object|trigger] [c:icy touch|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), + (933, 'trigger:deathknight icy touch', 1, 'icy touch [h:object|trigger] [c:icy touch|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight unholy|unholy]\r\nExecutes: [h:action:deathknight icy touch|icy touch] (21.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), (934, 'trigger:deathknight blood tap', 1, 'blood tap [h:object|trigger] [c:blood tap|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight blood tap|blood tap] (25.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight blood tap|blood tap] (25.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), - (935, 'trigger:rogue kick', 1, 'kick [h:object|trigger] [c:kick|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nExecutes: [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nExecutes: [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nExecutes: [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (936, 'trigger:deathknight plague strike', 1, 'plague strike [h:object|trigger] [c:plague strike|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (937, 'action:shaman water walking on party', 1, 'water walking on party [h:object|action] [c:do water walking on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (938, 'trigger:deathknight plague strike on attacker', 1, 'plague strike on attacker [h:object|trigger] [c:plague strike on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (939, 'trigger:hunter serpent sting on attacker', 1, 'serpent sting on attacker [h:object|trigger] [c:serpent sting on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter serpent sting on attacker|serpent sting on attacker] (17.000) for [h:strategy:hunter aoe|aoe]', '', '', '', '', '', '', '', '', '', 0), - (940, 'trigger:hunter aspect of the wild', 1, 'aspect of the wild [h:object|trigger] [c:aspect of the wild|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the wild|aspect of the wild] (10.000) for [h:strategy:hunter rnature|rnature]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the wild|aspect of the wild] (10.000) for [h:strategy:hunter rnature|rnature]', '', '', '', '', '', '', '', '', '', 0), + (935, 'trigger:rogue kick', 1, 'kick [h:object|trigger] [c:kick|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nExecutes: [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nExecutes: [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]\r\nExecutes: [h:action:rogue kick|kick] (41.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nExecutes: [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (11.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (936, 'trigger:deathknight plague strike', 1, 'plague strike [h:object|trigger] [c:plague strike|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight unholy|unholy]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (937, 'action:shaman water walking on party', 1, 'water walking on party [h:object|action] [c:do water walking on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nTriggers from: [h:trigger:shaman water walking on party on party|water walking on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]', '', '', '', '', '', '', '', '', '', 0), + (938, 'trigger:deathknight plague strike on attacker', 1, 'plague strike on attacker [h:object|trigger] [c:plague strike on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight frost|frost]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight unholy|unholy]\r\nExecutes: [h:action:deathknight plague strike|plague strike] (21.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (939, 'trigger:hunter serpent sting on attacker', 1, 'serpent sting on attacker [h:object|trigger] [c:serpent sting on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000) for [h:strategy:hunter sting beast mastery pve|sting beast mastery pve]\r\nExecutes: [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000) for [h:strategy:hunter sting beast mastery pvp|sting beast mastery pvp]\r\nExecutes: [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000) for [h:strategy:hunter sting beast mastery raid|sting beast mastery raid]\r\nExecutes: [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000) for [h:strategy:hunter sting marksmanship pve|sting marksmanship pve]\r\nExecutes: [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000) for [h:strategy:hunter sting marksmanship pvp|sting marksmanship pvp]\r\nExecutes: [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000) for [h:strategy:hunter sting marksmanship raid|sting marksmanship raid]\r\nExecutes: [h:action:hunter serpent sting on attacker|serpent sting on attacker] (21.000) for [h:strategy:hunter sting serpent|sting serpent]\r\nExecutes: [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000) for [h:strategy:hunter sting survival pve|sting survival pve]\r\nExecutes: [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000) for [h:strategy:hunter sting survival pvp|sting survival pvp]\r\nExecutes: [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000) for [h:strategy:hunter sting survival raid|sting survival raid]', '', '', '', '', '', '', '', '', '', 0), + (940, 'trigger:hunter aspect of the wild', 1, 'aspect of the wild [h:object|trigger] [c:aspect of the wild|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the wild|aspect of the wild] (20.000) for [h:strategy:hunter aspect wild|aspect wild]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the wild|aspect of the wild] (20.000) for [h:strategy:hunter aspect wild|aspect wild]', '', '', '', '', '', '', '', '', '', 0), (941, 'action:lfg leave', 1, 'lfg leave [h:object|action] [c:do lfg leave|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|seldom] with relevance (100.000) for [h:strategy|lfg]', '', '', '', '', '', '', '', '', '', 0), (942, 'action:invite guild', 1, 'invite guild [h:object|action] [c:do invite guild|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (4.000) for [h:strategy|group]', '', '', '', '', '', '', '', '', '', 0), - (943, 'trigger:hunter aspect of the viper', 1, 'aspect of the viper [h:object|trigger] [c:aspect of the viper|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the viper|aspect of the viper] (10.000) for [h:strategy:hunter bmana|bmana]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the viper|aspect of the viper] (10.000) for [h:strategy:hunter bmana|bmana]', '', '', '', '', '', '', '', '', '', 0), - (944, 'trigger:druid bash on enemy healer', 1, 'bash on enemy healer [h:object|trigger] [c:bash on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid bash on enemy healer|bash on enemy healer] (41.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid bash on enemy healer|bash on enemy healer] (41.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (943, 'trigger:hunter aspect of the viper', 1, 'aspect of the viper [h:object|trigger] [c:aspect of the viper|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the viper|aspect of the viper] (20.000) for [h:strategy:hunter aspect viper|aspect viper]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the viper|aspect of the viper] (20.000) for [h:strategy:hunter aspect viper|aspect viper]', '', '', '', '', '', '', '', '', '', 0), + (944, 'trigger:druid bash on enemy healer', 1, 'bash on enemy healer [h:object|trigger] [c:bash on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid bash on enemy healer|bash on enemy healer] (40.000) for [h:strategy:druid cc tank feral pvp|cc tank feral pvp]\r\nExecutes: [h:action:druid bash on enemy healer|bash on enemy healer] (40.000) for [h:strategy:druid cc tank feral pve|cc tank feral pve]\r\nExecutes: [h:action:druid bash on enemy healer|bash on enemy healer] (40.000) for [h:strategy:druid cc tank feral raid|cc tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (945, 'trigger:hunter enemy out of spell range', 1, 'enemy out of spell range [h:object|trigger] [c:enemy out of spell range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:reach spell|reach spell] (60.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (946, 'action:cs', 1, 'cs [h:object|action] [c:do cs|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|cs] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|cs] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|cs] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|cs] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (947, 'trigger:hunter counterattack', 1, 'counterattack [h:object|trigger] [c:counterattack|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter counterattack|counterattack] (36.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), + (947, 'trigger:hunter counterattack', 1, 'counterattack [h:object|trigger] [c:counterattack|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter counterattack|counterattack] (22.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nExecutes: [h:action:hunter counterattack|counterattack] (22.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nExecutes: [h:action:hunter counterattack|counterattack] (22.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nExecutes: [h:action:hunter counterattack|counterattack] (22.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nExecutes: [h:action:hunter counterattack|counterattack] (22.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nExecutes: [h:action:hunter counterattack|counterattack] (22.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nExecutes: [h:action:hunter counterattack|counterattack] (22.000) for [h:strategy:hunter survival pve|survival pve]\r\nExecutes: [h:action:hunter counterattack|counterattack] (22.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nExecutes: [h:action:hunter counterattack|counterattack] (22.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), (948, 'trigger:hunter concussive shot on snare target', 1, 'concussive shot on snare target [h:object|trigger] [c:concussive shot on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter concussive shot on snare target|concussive shot on snare target] (62.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (949, 'trigger:hunter my attacker count', 1, 'my attacker count [h:object|trigger] [c:my attacker count|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter feign death|feign death] (41.000)[h:action:shadowmeld|shadowmeld] (40.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), - (950, 'action:use buff', 1, 'use buff [h:object|action] [c:do use buff|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|warsong]\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|warsong]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|warsong]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|warsong]\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|warsong]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|warsong]', '', '', '', '', '', '', '', '', '', 0), + (950, 'action:use buff', 1, 'use buff [h:object|action] [c:do use buff|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|warsong]\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|warsong]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|warsong]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|low health] with relevance (30.000) for [h:strategy|warsong]\r\nTriggers from: [h:trigger|low mana] with relevance (30.000) for [h:strategy|warsong]\r\nTriggers from: [h:trigger|often] with relevance (30.000) for [h:strategy|warsong]', '', '', '', '', '', '', '', '', '', 0), (951, 'value:last said', 1, 'last said [h:object|value] [c:cdebug values last said|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (952, 'trigger:hunter bestial wrath', 1, 'bestial wrath [h:object|trigger] [c:bestial wrath|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter bestial wrath|bestial wrath] (16.000) for [h:strategy:hunter boost|boost]', '', '', '', '', '', '', '', '', '', 0), - (953, 'trigger:hunter aimed shot', 1, 'aimed shot [h:object|trigger] [c:aimed shot|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aimed shot|aimed shot] (19.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), + (952, 'trigger:hunter bestial wrath', 1, 'bestial wrath [h:object|trigger] [c:bestial wrath|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter bestial wrath|bestial wrath] (26.000) for [h:strategy:hunter boost beast mastery raid|boost beast mastery raid]\r\nExecutes: [h:action:hunter bestial wrath|bestial wrath] (26.000) for [h:strategy:hunter boost beast mastery pve|boost beast mastery pve]\r\nExecutes: [h:action:hunter bestial wrath|bestial wrath] (26.000) for [h:strategy:hunter boost beast mastery pvp|boost beast mastery pvp]', '', '', '', '', '', '', '', '', '', 0), + (953, 'trigger:hunter aimed shot', 1, 'aimed shot [h:object|trigger] [c:aimed shot|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aimed shot|aimed shot] (12.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nExecutes: [h:action:hunter aimed shot|aimed shot] (12.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nExecutes: [h:action:hunter aimed shot|aimed shot] (12.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nExecutes: [h:action:hunter aimed shot|aimed shot] (12.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nExecutes: [h:action:hunter aimed shot|aimed shot] (12.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nExecutes: [h:action:hunter aimed shot|aimed shot] (12.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nExecutes: [h:action:hunter aimed shot|aimed shot] (12.000) for [h:strategy:hunter survival pve|survival pve]\r\nExecutes: [h:action:hunter aimed shot|aimed shot] (12.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nExecutes: [h:action:hunter aimed shot|aimed shot] (12.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), (954, 'action:turn in petition', 1, 'turn in petition [h:object|action] [c:do turn in petition|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|petition turn in trigger] with relevance (10.000) for [h:strategy|guild]', '', '', '', '', '', '', '', '', '', 0), - (955, 'trigger:hunter hunter\'s mark', 1, 'hunter\'s mark [h:object|trigger] [c:hunter\'s mark|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter hunter\'s mark|hunter\'s mark] (13.000) for [h:strategy:hunter dps debuff|dps debuff]', '', '', '', '', '', '', '', '', '', 0), + (955, 'trigger:hunter hunter\'s mark', 1, 'hunter\'s mark [h:object|trigger] [c:hunter\'s mark|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nExecutes: [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nExecutes: [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nExecutes: [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nExecutes: [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nExecutes: [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nExecutes: [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000) for [h:strategy:hunter survival pve|survival pve]\r\nExecutes: [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nExecutes: [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), (956, 'trigger:hunter silencing shot', 1, 'silencing shot [h:object|trigger] [c:silencing shot|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter silencing shot|silencing shot] (40.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (957, 'value:new player nearby', 1, 'new player nearby [h:object|value] [c:cdebug values new player nearby|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (958, 'action:hunter feign death', 1, 'feign death [h:object|action] [c:do feign death|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (62.000) for [h:strategy:hunter dps|dps]\r\nTriggers from: [h:trigger:high threat|high threat] with relevance (41.000) for [h:strategy:hunter dps|dps]\r\nTriggers from: [h:trigger:hunter my attacker count|my attacker count] with relevance (41.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), - (959, 'trigger:hunter trueshot aura', 1, 'trueshot aura [h:object|trigger] [c:trueshot aura|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:hunter trueshot aura|trueshot aura] (2.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (960, 'action:mage remove curse on party', 1, 'remove curse on party [h:object|action] [c:do remove curse on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure frost pvp|cure frost pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure frost raid|cure frost raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost pvp|cure frost pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost raid|cure frost raid]', '', '', '', '', '', '', '', '', '', 0), + (958, 'action:hunter feign death', 1, 'feign death [h:object|action] [c:do feign death|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (40.000) for [h:strategy:hunter aoe marksmanship raid|aoe marksmanship raid]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (40.000) for [h:strategy:hunter aoe marksmanship pve|aoe marksmanship pve]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (40.000) for [h:strategy:hunter aoe beast mastery pve|aoe beast mastery pve]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (40.000) for [h:strategy:hunter aoe beast mastery pvp|aoe beast mastery pvp]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (40.000) for [h:strategy:hunter aoe beast mastery raid|aoe beast mastery raid]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (40.000) for [h:strategy:hunter aoe survival pve|aoe survival pve]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (40.000) for [h:strategy:hunter aoe marksmanship pvp|aoe marksmanship pvp]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (40.000) for [h:strategy:hunter aoe survival pvp|aoe survival pvp]\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (40.000) for [h:strategy:hunter aoe survival raid|aoe survival raid]', '', '', '', '', '', '', '', '', '', 0), + (959, 'trigger:hunter trueshot aura', 1, 'trueshot aura [h:object|trigger] [c:trueshot aura|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:hunter trueshot aura|trueshot aura] (11.000) for [h:strategy:hunter buff marksmanship pve|buff marksmanship pve]\r\nExecutes: [h:action:hunter trueshot aura|trueshot aura] (11.000) for [h:strategy:hunter buff marksmanship pvp|buff marksmanship pvp]\r\nExecutes: [h:action:hunter trueshot aura|trueshot aura] (11.000) for [h:strategy:hunter buff marksmanship raid|buff marksmanship raid]', '', '', '', '', '', '', '', '', '', 0), + (960, 'action:mage remove curse on party', 1, 'remove curse on party [h:object|action] [c:do remove curse on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure frost raid|cure frost raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (50.000) for [h:strategy:mage cure frost pvp|cure frost pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost raid|cure frost raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost pvp|cure frost pvp]', '', '', '', '', '', '', '', '', '', 0), (961, 'trigger:hunter attackers count', 1, 'attackers count [h:object|trigger] [c:attackers count|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (91.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (962, 'action:druid healing touch on party', 1, 'healing touch on party [h:object|action] [c:do healing touch on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (963, 'trigger:rogue kick on enemy healer', 1, 'kick on enemy healer [h:object|trigger] [c:kick on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (964, 'trigger:rogue stealth', 1, 'stealth [h:object|trigger] [c:stealth|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]\r\nNon combat behavior:\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (962, 'action:druid healing touch on party', 1, 'healing touch on party [h:object|action] [c:do healing touch on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:druid offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:druid offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:druid offheal raid|offheal raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (963, 'trigger:rogue kick on enemy healer', 1, 'kick on enemy healer [h:object|trigger] [c:kick on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nExecutes: [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]', '', '', '', '', '', '', '', '', '', 0), + (964, 'trigger:rogue stealth', 1, 'stealth [h:object|trigger] [c:stealth|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (90.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]\r\nNon combat behavior:\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nExecutes: [h:action:rogue check stealth|check stealth] (20.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (965, 'trigger:rogue my attacker count', 1, 'my attacker count [h:object|trigger] [c:my attacker count|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue feint|feint] (20.000) for [h:strategy:rogue assassin|assassin]\r\nExecutes: [h:action:rogue feint|feint] (20.000) for [h:strategy:rogue combat|combat]\r\nExecutes: [h:action:rogue feint|feint] (20.000) for [h:strategy:rogue dps|dps]\r\nExecutes: [h:action:rogue feint|feint] (20.000) for [h:strategy:rogue subtlety|subtlety]', '', '', '', '', '', '', '', '', '', 0), - (966, 'trigger:rogue enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nExecutes: [h:action:rogue shadowstep|shadowstep] (23.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nExecutes: [h:action:rogue shadowstep|shadowstep] (22.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nExecutes: [h:action:rogue shadowstep|shadowstep] (22.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nExecutes: [h:action:rogue shadowstep|shadowstep] (22.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]\r\nExecutes: [h:action:rogue shadowstep|shadowstep] (23.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nExecutes: [h:action:rogue shadowstep|shadowstep] (23.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (966, 'trigger:rogue enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]', '', '', '', '', '', '', '', '', '', 0), (967, 'trigger:rogue cloak of shadows', 1, 'cloak of shadows [h:object|trigger] [c:cloak of shadows|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue cloak of shadows|cloak of shadows] (42.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nExecutes: [h:action:rogue cloak of shadows|cloak of shadows] (42.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nExecutes: [h:action:rogue cloak of shadows|cloak of shadows] (42.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nExecutes: [h:action:rogue cloak of shadows|cloak of shadows] (42.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nExecutes: [h:action:rogue cloak of shadows|cloak of shadows] (42.000) for [h:strategy:rogue combat pve|combat pve]\r\nExecutes: [h:action:rogue cloak of shadows|cloak of shadows] (42.000) for [h:strategy:rogue combat raid|combat raid]\r\nExecutes: [h:action:rogue cloak of shadows|cloak of shadows] (42.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nExecutes: [h:action:rogue cloak of shadows|cloak of shadows] (42.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nExecutes: [h:action:rogue cloak of shadows|cloak of shadows] (42.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (968, 'trigger:combo points available', 1, 'combo points available [h:object|trigger] [c:combo points available|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid ferocious bite|ferocious bite] (24.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid ferocious bite|ferocious bite] (24.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), + (968, 'trigger:combo points available', 1, 'combo points available [h:object|trigger] [c:combo points available|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid ferocious bite|ferocious bite] (13.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:druid ferocious bite|ferocious bite] (13.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:druid ferocious bite|ferocious bite] (13.000) for [h:strategy:druid dps feral raid|dps feral raid]', '', '', '', '', '', '', '', '', '', 0), (969, 'action:ah bid', 1, 'ah bid [h:object|action] [c:do ah bid|execute]\r\nThis command will make bots bid on a specific item with a specific budget on a nearby auctionhouse.\r\nThe highest item/gold auction will be used that falls below the given budget.\r\nUsage: ah bid [itemlink] \r\nExample: ah bid vendor (bid on items based on item use)\r\nExample: ah bid [itemlink] 5g\r\n\r\nUsed values:\r\n[h:value|nearest npcs] [h:value|item usage] [h:value|free money for] \r\nCombat behavior:\r\nTriggers from: [h:trigger|ah bid] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|ah bid] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|ah bid] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|ah bid] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (970, 'value:generic enemy players', 1, 'enemy player targets [h:object|value] [c:cdebug values enemy player targets|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (971, 'action:choose travel target', 1, 'choose travel target [h:object|action] [c:do choose travel target|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|no travel target] with relevance (6.000) for [h:strategy|travel]\r\nTriggers from: [h:trigger|no travel target] with relevance (6.000) for [h:strategy|travel once]', '', '', '', '', '', '', '', '', '', 0), (972, 'value:loot strategy', 1, 'loot strategy [h:object|value] [c:cdebug values loot strategy|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (973, 'trigger:rogue trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue ambush|ambush] (13.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nExecutes: [h:action:rogue ambush|ambush] (13.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nExecutes: [h:action:rogue ambush|ambush] (13.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nExecutes: [h:action:rogue ambush|ambush] (13.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nExecutes: [h:action:rogue ambush|ambush] (13.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nExecutes: [h:action:rogue ambush|ambush] (13.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nExecutes: [h:action:rogue ambush|ambush] (13.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nExecutes: [h:action:rogue ambush|ambush] (13.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nExecutes: [h:action:rogue ambush|ambush] (13.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (973, 'trigger:rogue trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue ghostly strike|ghostly strike] (12.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (12.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (12.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (12.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (12.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (12.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (12.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (12.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (12.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nExecutes: [h:action:rogue cheap shot|cheap shot] (12.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]\r\nExecutes: [h:action:rogue ghostly strike|ghostly strike] (12.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nExecutes: [h:action:rogue ghostly strike|ghostly strike] (12.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (974, 'action:incendiary rocket', 1, 'incendiary rocket [h:object|action] [c:do incendiary rocket|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|in vehicle] with relevance (70.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|in vehicle] with relevance (70.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), - (975, 'trigger:rogue sap', 1, 'sap [h:object|trigger] [c:sap|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (975, 'trigger:rogue sap', 1, 'sap [h:object|trigger] [c:sap|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nExecutes: [h:action:rogue sap|sap] (41.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]', '', '', '', '', '', '', '', '', '', 0), (976, 'trigger:shaman heroism', 1, 'heroism [h:object|trigger] [c:heroism|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman heroism|heroism] (20.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman heroism|heroism] (20.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman heroism|heroism] (20.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman heroism|heroism] (20.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman heroism|heroism] (20.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman heroism|heroism] (20.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman heroism|heroism] (20.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:shaman heroism|heroism] (20.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman heroism|heroism] (20.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), (977, 'trigger:rogue killing spree', 1, 'killing spree [h:object|trigger] [c:killing spree|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue killing spree|killing spree] (24.000) for [h:strategy:rogue buff combat pvp|buff combat pvp]\r\nExecutes: [h:action:rogue killing spree|killing spree] (24.000) for [h:strategy:rogue buff combat pve|buff combat pve]\r\nExecutes: [h:action:rogue killing spree|killing spree] (24.000) for [h:strategy:rogue buff combat raid|buff combat raid]', '', '', '', '', '', '', '', '', '', 0), (978, 'value:dead', 1, 'dead [h:object|value] [c:cdebug values dead|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (979, 'trigger:rogue sinister strike', 1, 'sinister strike [h:object|trigger] [c:sinister strike|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue sinister strike|sinister strike] (10.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nExecutes: [h:action:rogue sinister strike|sinister strike] (10.000) for [h:strategy:rogue combat pve|combat pve]\r\nExecutes: [h:action:rogue sinister strike|sinister strike] (10.000) for [h:strategy:rogue combat raid|combat raid]', '', '', '', '', '', '', '', '', '', 0), + (979, 'trigger:rogue sinister strike', 1, 'sinister strike [h:object|trigger] [c:sinister strike|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:rogue sinister strike|sinister strike] (10.000) for [h:strategy:rogue combat raid|combat raid]\r\nExecutes: [h:action:rogue sinister strike|sinister strike] (10.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nExecutes: [h:action:rogue sinister strike|sinister strike] (10.000) for [h:strategy:rogue combat pve|combat pve]', '', '', '', '', '', '', '', '', '', 0), (980, 'trigger:shaman water shield', 1, 'water shield [h:object|trigger] [c:water shield|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman water shield|water shield] (20.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman water shield|water shield] (20.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman water shield|water shield] (20.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman water shield|water shield] (20.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:shaman water shield|water shield] (20.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman water shield|water shield] (20.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nNon combat behavior:\r\nExecutes: [h:action:shaman water shield|water shield] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman water shield|water shield] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman water shield|water shield] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman water shield|water shield] (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:shaman water shield|water shield] (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman water shield|water shield] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), (981, 'value:petition signs', 1, 'petition signs [h:object|value] [c:cdebug values petition signs|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (982, 'action:nc', 1, 'nc [h:object|action] [c:do nc|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|nc] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|nc] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|nc] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|nc] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (983, 'action:shaman frost shock on snare target', 1, 'frost shock on snare target [h:object|action] [c:do frost shock on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman enhancement raid|enhancement raid]', '', '', '', '', '', '', '', '', '', 0), - (984, 'trigger:shaman wind shear', 1, 'wind shear [h:object|trigger] [c:wind shear|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (985, 'trigger:shaman wind shear on enemy healer', 1, 'wind shear on enemy healer [h:object|trigger] [c:wind shear on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (986, 'trigger:shaman frost shock on snare target', 1, 'frost shock on snare target [h:object|trigger] [c:frost shock on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman enhancement raid|enhancement raid]', '', '', '', '', '', '', '', '', '', 0), - (987, 'trigger:shaman rockbiter weapon', 1, 'rockbiter weapon [h:object|trigger] [c:rockbiter weapon|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (20.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman flametongue weapon|flametongue weapon] (20.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman flametongue weapon|flametongue weapon] (20.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman flametongue weapon|flametongue weapon] (20.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (20.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (20.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (20.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (20.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (20.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nNon combat behavior:\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman flametongue weapon|flametongue weapon] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman flametongue weapon|flametongue weapon] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman flametongue weapon|flametongue weapon] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (983, 'action:shaman frost shock on snare target', 1, 'frost shock on snare target [h:object|action] [c:do frost shock on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman cc enhancement pve|cc enhancement pve]\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman cc elemental raid|cc elemental raid]\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman cc elemental pve|cc elemental pve]\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman cc elemental pvp|cc elemental pvp]\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman cc enhancement pvp|cc enhancement pvp]\r\nTriggers from: [h:trigger:shaman frost shock on snare target|frost shock on snare target] with relevance (20.000) for [h:strategy:shaman cc enhancement raid|cc enhancement raid]', '', '', '', '', '', '', '', '', '', 0), + (984, 'trigger:shaman wind shear', 1, 'wind shear [h:object|trigger] [c:wind shear|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman cc enhancement pve|cc enhancement pve]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman cc elemental raid|cc elemental raid]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman cc elemental pve|cc elemental pve]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman cc elemental pvp|cc elemental pvp]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman cc enhancement pvp|cc enhancement pvp]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman cc enhancement raid|cc enhancement raid]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman cc restoration pve|cc restoration pve]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman cc restoration pvp|cc restoration pvp]\r\nExecutes: [h:action:shaman wind shear|wind shear] (40.000) for [h:strategy:shaman cc restoration raid|cc restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (985, 'trigger:shaman wind shear on enemy healer', 1, 'wind shear on enemy healer [h:object|trigger] [c:wind shear on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman cc enhancement pve|cc enhancement pve]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman cc elemental raid|cc elemental raid]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman cc elemental pve|cc elemental pve]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman cc elemental pvp|cc elemental pvp]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman cc enhancement pvp|cc enhancement pvp]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman cc enhancement raid|cc enhancement raid]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman cc restoration pve|cc restoration pve]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman cc restoration pvp|cc restoration pvp]\r\nExecutes: [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000) for [h:strategy:shaman cc restoration raid|cc restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (986, 'trigger:shaman frost shock on snare target', 1, 'frost shock on snare target [h:object|trigger] [c:frost shock on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman cc enhancement pve|cc enhancement pve]\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman cc elemental raid|cc elemental raid]\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman cc elemental pve|cc elemental pve]\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman cc elemental pvp|cc elemental pvp]\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman cc enhancement pvp|cc enhancement pvp]\r\nExecutes: [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000) for [h:strategy:shaman cc enhancement raid|cc enhancement raid]', '', '', '', '', '', '', '', '', '', 0), + (987, 'trigger:shaman rockbiter weapon', 1, 'rockbiter weapon [h:object|trigger] [c:rockbiter weapon|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (20.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (20.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (20.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (20.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (20.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (20.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nNon combat behavior:\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman flametongue weapon|flametongue weapon] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman flametongue weapon|flametongue weapon] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman flametongue weapon|flametongue weapon] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman windfury weapon|windfury weapon] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman earthliving weapon|earthliving weapon] (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]', '', '', '', '', '', '', '', '', '', 0), (988, 'trigger:shaman cleanse spirit', 1, 'cleanse spirit [h:object|trigger] [c:cleanse spirit|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nNon combat behavior:\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nExecutes: [h:action:shaman cleanse spirit|cleanse spirit] (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]', '', '', '', '', '', '', '', '', '', 0), - (989, 'action:shaman purge', 1, 'purge [h:object|action] [c:do purge|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (990, 'trigger:shaman cure poison', 1, 'cure poison [h:object|trigger] [c:cure poison|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nNon combat behavior:\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]', '', '', '', '', '', '', '', '', '', 0), - (991, 'trigger:shaman water breathing on party on party', 1, 'water breathing on party on party [h:object|trigger] [c:water breathing on party on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (989, 'action:shaman purge', 1, 'purge [h:object|action] [c:do purge|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:shaman purge|purge] with relevance (50.000) for [h:strategy:shaman restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (990, 'trigger:shaman cure poison', 1, 'cure poison [h:object|trigger] [c:cure poison|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nExecutes: [h:action:shaman cure poison|cure poison] (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]', '', '', '', '', '', '', '', '', '', 0), + (991, 'trigger:shaman water breathing on party on party', 1, 'water breathing on party on party [h:object|trigger] [c:water breathing on party on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nExecutes: [h:action:shaman water breathing on party|water breathing on party] (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]', '', '', '', '', '', '', '', '', '', 0), (992, 'trigger:shaman windfury totem', 1, 'windfury totem [h:object|trigger] [c:windfury totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman windfury totem|windfury totem] (16.000) for [h:strategy:shaman totems|totems]', '', '', '', '', '', '', '', '', '', 0), (993, 'trigger:shaman mana spring totem', 1, 'mana spring totem [h:object|trigger] [c:mana spring totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (19.000) for [h:strategy:shaman totems|totems]', '', '', '', '', '', '', '', '', '', 0), (994, 'trigger:shaman strength of earth totem', 1, 'strength of earth totem [h:object|trigger] [c:strength of earth totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (18.000) for [h:strategy:shaman totems|totems]', '', '', '', '', '', '', '', '', '', 0), - (995, 'trigger:mage arcane power', 1, 'arcane power [h:object|trigger] [c:arcane power|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage arcane power|arcane power] (22.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage arcane power|arcane power] (22.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage arcane power|arcane power] (22.000) for [h:strategy:mage buff arcane raid|buff arcane raid]', '', '', '', '', '', '', '', '', '', 0), + (995, 'trigger:mage arcane power', 1, 'arcane power [h:object|trigger] [c:arcane power|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage arcane power|arcane power] (22.000) for [h:strategy:mage boost arcane pve|boost arcane pve]\r\nExecutes: [h:action:mage arcane power|arcane power] (22.000) for [h:strategy:mage boost arcane raid|boost arcane raid]\r\nExecutes: [h:action:mage arcane power|arcane power] (22.000) for [h:strategy:mage boost arcane pvp|boost arcane pvp]', '', '', '', '', '', '', '', '', '', 0), (996, 'action:guild bank', 1, 'guild bank [h:object|action] [c:do guild bank|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|gb] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|gb] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|gb] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|gb] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (997, 'trigger:mage target low health', 1, 'target low health [h:object|trigger] [c:target low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage fire blast|fire blast] (21.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage fire blast|fire blast] (21.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage fire blast|fire blast] (21.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage fire blast|fire blast] (21.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage fire blast|fire blast] (21.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage fire blast|fire blast] (21.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage fire blast|fire blast] (21.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage fire blast|fire blast] (21.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage fire blast|fire blast] (21.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (998, 'action:deathknight rune tap', 1, 'rune tap [h:object|action] [c:do rune tap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (14.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (14.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), + (997, 'trigger:mage target low health', 1, 'target low health [h:object|trigger] [c:target low health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage fire blast|fire blast] (22.000) for [h:strategy:mage frost raid|frost raid]\r\nExecutes: [h:action:mage fire blast|fire blast] (22.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage fire blast|fire blast] (22.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage fire blast|fire blast] (22.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage fire blast|fire blast] (22.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage fire blast|fire blast] (22.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage fire blast|fire blast] (22.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage fire blast|fire blast] (22.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage fire blast|fire blast] (22.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), + (998, 'action:deathknight rune tap', 1, 'rune tap [h:object|action] [c:do rune tap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (14.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (14.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (14.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), (999, 'trigger:mage arcane blast', 1, 'arcane blast [h:object|trigger] [c:arcane blast|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage arcane blast|arcane blast] (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage arcane blast|arcane blast] (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage arcane blast|arcane blast] (11.000) for [h:strategy:mage arcane pvp|arcane pvp]', '', '', '', '', '', '', '', '', '', 0), (1000, 'trigger:mage mana shield', 1, 'mana shield [h:object|trigger] [c:mana shield|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage mana shield|mana shield] (20.000) for [h:strategy:mage arcane|arcane]\r\nExecutes: [h:action:mage mana shield|mana shield] (15.000) for [h:strategy:mage fire|fire]', '', '', '', '', '', '', '', '', '', 0), (1001, 'action:dark rune', 1, 'dark rune [h:object|action] [c:do dark rune|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|low mana] with relevance (20.000) for [h:strategy|potions]\r\nReaction behavior:\r\nTriggers from: [h:trigger|low mana] with relevance (20.000) for [h:strategy|potions]', '', '', '', '', '', '', '', '', '', 0), - (1002, 'trigger:mage polymorph', 1, 'polymorph [h:object|trigger] [c:polymorph|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc frost pvp|cc frost pvp]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc frost raid|cc frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1003, 'trigger:druid thorns', 1, 'thorns [h:object|trigger] [c:thorns|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid thorns|thorns] (66.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid thorns|thorns] (66.000) for [h:strategy:druid bear|bear]\r\nNon combat behavior:\r\nExecutes: [h:action:druid thorns|thorns] (12.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1004, 'trigger:mage mage armor', 1, 'mage armor [h:object|trigger] [c:mage armor|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage mage armor|mage armor] (19.000) for [h:strategy:mage bmana|bmana]\r\nExecutes: [h:action:mage molten armor|molten armor] (19.000) for [h:strategy:mage bdps|bdps]\r\nNon combat behavior:\r\nExecutes: [h:action:mage mage armor|mage armor] (19.000) for [h:strategy:mage bmana|bmana]\r\nExecutes: [h:action:mage molten armor|molten armor] (19.000) for [h:strategy:mage bdps|bdps]', '', '', '', '', '', '', '', '', '', 0), - (1005, 'trigger:mage remove curse', 1, 'remove curse [h:object|trigger] [c:remove curse|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure frost pvp|cure frost pvp]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure frost raid|cure frost raid]\r\nNon combat behavior:\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure frost pvp|cure frost pvp]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure frost raid|cure frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1006, 'trigger:mage arcane intellect on party', 1, 'arcane intellect on party [h:object|trigger] [c:arcane intellect on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1002, 'trigger:mage polymorph', 1, 'polymorph [h:object|trigger] [c:polymorph|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc frost raid|cc frost raid]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nExecutes: [h:action:mage polymorph|polymorph] (40.000) for [h:strategy:mage cc frost pvp|cc frost pvp]', '', '', '', '', '', '', '', '', '', 0), + (1003, 'trigger:druid thorns', 1, 'thorns [h:object|trigger] [c:thorns|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nExecutes: [h:action:druid thorns|thorns] (11.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1004, 'trigger:mage mage armor', 1, 'mage armor [h:object|trigger] [c:mage armor|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage mage armor|mage armor] (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage mage armor|mage armor] (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage mage armor|mage armor] (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nNon combat behavior:\r\nExecutes: [h:action:mage mage armor|mage armor] (10.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage mage armor|mage armor] (10.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage mage armor|mage armor] (10.000) for [h:strategy:mage buff fire pve|buff fire pve]', '', '', '', '', '', '', '', '', '', 0), + (1005, 'trigger:mage remove curse', 1, 'remove curse [h:object|trigger] [c:remove curse|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure frost raid|cure frost raid]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nExecutes: [h:action:mage remove curse|remove curse] (51.000) for [h:strategy:mage cure frost pvp|cure frost pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure frost raid|cure frost raid]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nExecutes: [h:action:mage remove curse|remove curse] (10.000) for [h:strategy:mage cure frost pvp|cure frost pvp]', '', '', '', '', '', '', '', '', '', 0), + (1006, 'trigger:mage arcane intellect on party', 1, 'arcane intellect on party [h:object|trigger] [c:arcane intellect on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage arcane intellect on party|arcane intellect on party] (13.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (1007, 'action:repair', 1, 'repair [h:object|action] [c:do repair|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|repair] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|repair] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|repair] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|repair] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1008, 'action:healthstone', 1, 'healthstone [h:object|action] [c:do healthstone|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|critical health] with relevance (90.000) for [h:strategy|potions]\r\nReaction behavior:\r\nTriggers from: [h:trigger|critical health] with relevance (90.000) for [h:strategy|potions]', '', '', '', '', '', '', '', '', '', 0), + (1008, 'action:healthstone', 1, 'healthstone [h:object|action] [c:do healthstone|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|critical health] with relevance (81.000) for [h:strategy|potions]\r\nReaction behavior:\r\nTriggers from: [h:trigger|critical health] with relevance (81.000) for [h:strategy|potions]', '', '', '', '', '', '', '', '', '', 0), (1009, 'trigger:mage fireball', 1, 'fireball [h:object|trigger] [c:fireball|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage fireball|fireball] (10.000) for [h:strategy:mage fire|fire]', '', '', '', '', '', '', '', '', '', 0), (1010, 'value:collision', 1, 'collision [h:object|value] [c:cdebug values collision|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1011, 'trigger:mage hot streak', 1, 'hot streak [h:object|trigger] [c:hot streak|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage pyroblast|pyroblast] (12.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage pyroblast|pyroblast] (12.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage pyroblast|pyroblast] (12.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), (1012, 'action:paladin avenger\'s shield', 1, 'avenger\'s shield [h:object|action] [c:do avenger\'s shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin avenger\'s shield|avenger\'s shield] with relevance (20.000) for [h:strategy:paladin aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (22.000) for [h:strategy:paladin aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:paladin avenger\'s shield|avenger\'s shield] with relevance (20.000) for [h:strategy:paladin aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (22.000) for [h:strategy:paladin aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:paladin avenger\'s shield|avenger\'s shield] with relevance (20.000) for [h:strategy:paladin aoe protection raid|aoe protection raid]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (22.000) for [h:strategy:paladin aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1013, 'trigger:mage have aggro', 1, 'have aggro [h:object|trigger] [c:have aggro|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shoot|shoot] (20.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:shoot|shoot] (20.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:shoot|shoot] (20.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1014, 'trigger:mage arcane intellect', 1, 'arcane intellect [h:object|trigger] [c:arcane intellect|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (11.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (11.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (11.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (11.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (11.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (11.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (11.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (11.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (11.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1015, 'trigger:mage no drink trigger', 1, 'no drink trigger [h:object|trigger] [c:no drink trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1016, 'trigger:warlock curse of agony on attacker', 1, 'curse of agony on attacker [h:object|trigger] [c:curse of agony on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (28.000) for [h:strategy:warlock aoe|aoe]', '', '', '', '', '', '', '', '', '', 0), - (1017, 'action:paladin cleanse', 1, 'cleanse [h:object|action] [c:do cleanse|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (1018, 'trigger:warlock aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe demonology pvp|aoe demonology pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe demonology raid|aoe demonology raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe destruction pve|aoe destruction pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe destruction raid|aoe destruction raid]', '', '', '', '', '', '', '', '', '', 0), - (1019, 'trigger:warlock siphon life on attacker', 1, 'siphon life on attacker [h:object|trigger] [c:siphon life on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nExecutes: [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nExecutes: [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]', '', '', '', '', '', '', '', '', '', 0), + (1013, 'trigger:mage have aggro', 1, 'have aggro [h:object|trigger] [c:have aggro|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shoot|shoot] (29.000) for [h:strategy:mage frost raid|frost raid]\r\nExecutes: [h:action:shoot|shoot] (29.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:shoot|shoot] (29.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), + (1014, 'trigger:mage arcane intellect', 1, 'arcane intellect [h:object|trigger] [c:arcane intellect|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (12.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (12.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (12.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (12.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (12.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (12.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (12.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (12.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage arcane intellect|arcane intellect] (12.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1015, 'trigger:mage no drink trigger', 1, 'no drink trigger [h:object|trigger] [c:no drink trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage frost raid|frost raid]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage conjure water|conjure water] (10.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), + (1016, 'trigger:warlock curse of agony on attacker', 1, 'curse of agony on attacker [h:object|trigger] [c:curse of agony on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse agony|curse agony]', '', '', '', '', '', '', '', '', '', 0), + (1017, 'action:paladin cleanse', 1, 'cleanse [h:object|action] [c:do cleanse|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1018, 'trigger:warlock aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe demonology pvp|aoe demonology pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe demonology raid|aoe demonology raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe destruction pve|aoe destruction pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:warlock aoe destruction raid|aoe destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1019, 'trigger:warlock siphon life on attacker', 1, 'siphon life on attacker [h:object|trigger] [c:siphon life on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nExecutes: [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nExecutes: [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]', '', '', '', '', '', '', '', '', '', 0), (1020, 'action:rocket blast', 1, 'rocket blast [h:object|action] [c:do rocket blast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|in vehicle] with relevance (70.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|in vehicle] with relevance (70.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), (1021, 'action:inventory change failure', 1, 'inventory change failure [h:object|action] [c:do inventory change failure|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|cannot equip] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|cannot equip] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|cannot equip] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (1022, 'action:warrior shockwave', 1, 'shockwave [h:object|action] [c:do shockwave|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior shockwave|shockwave] with relevance (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:warrior shockwave|shockwave] with relevance (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:warrior shockwave|shockwave] with relevance (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1023, 'action:rpg craft', 1, 'rpg craft [h:object|action] [c:do rpg craft|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg craft] with relevance (1.001) for [h:strategy|rpg craft]', '', '', '', '', '', '', '', '', '', 0), + (1023, 'action:rpg craft', 1, 'rpg craft [h:object|action] [c:do rpg craft|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg craft] with relevance (1.010) for [h:strategy|rpg craft]', '', '', '', '', '', '', '', '', '', 0), (1024, 'trigger:warlock trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:world buff|world buff] (1.000) for [h:strategy:warlock nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1025, 'action:druid tiger\'s fury', 1, 'tiger\'s fury [h:object|action] [c:do tiger\'s fury|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid tiger\'s fury|tiger\'s fury] with relevance (22.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid tiger\'s fury|tiger\'s fury] with relevance (22.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), - (1026, 'trigger:warlock demon armor', 1, 'demon armor [h:object|trigger] [c:demon armor|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock fel armor|fel armor] (11.000) for [h:strategy:warlock buff affliction pvp|buff affliction pvp]\r\nExecutes: [h:action:warlock fel armor|fel armor] (11.000) for [h:strategy:warlock buff destruction raid|buff destruction raid]\r\nExecutes: [h:action:warlock fel armor|fel armor] (11.000) for [h:strategy:warlock buff affliction pve|buff affliction pve]\r\nExecutes: [h:action:warlock fel armor|fel armor] (11.000) for [h:strategy:warlock buff affliction raid|buff affliction raid]\r\nExecutes: [h:action:warlock fel armor|fel armor] (11.000) for [h:strategy:warlock buff demonology pve|buff demonology pve]\r\nExecutes: [h:action:warlock fel armor|fel armor] (11.000) for [h:strategy:warlock buff demonology pvp|buff demonology pvp]\r\nExecutes: [h:action:warlock fel armor|fel armor] (11.000) for [h:strategy:warlock buff demonology raid|buff demonology raid]\r\nExecutes: [h:action:warlock fel armor|fel armor] (11.000) for [h:strategy:warlock buff destruction pve|buff destruction pve]\r\nExecutes: [h:action:warlock fel armor|fel armor] (11.000) for [h:strategy:warlock buff destruction pvp|buff destruction pvp]', '', '', '', '', '', '', '', '', '', 0), - (1027, 'trigger:warlock shadow trance', 1, 'shadow trance [h:object|trigger] [c:shadow trance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), + (1025, 'action:druid tiger\'s fury', 1, 'tiger\'s fury [h:object|action] [c:do tiger\'s fury|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid tiger\'s fury|tiger\'s fury] with relevance (20.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nTriggers from: [h:trigger:druid tiger\'s fury|tiger\'s fury] with relevance (20.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nTriggers from: [h:trigger:druid tiger\'s fury|tiger\'s fury] with relevance (20.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1026, 'trigger:warlock demon armor', 1, 'demon armor [h:object|trigger] [c:demon armor|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock fel armor|fel armor] (12.000) for [h:strategy:warlock buff affliction pvp|buff affliction pvp]\r\nExecutes: [h:action:warlock fel armor|fel armor] (12.000) for [h:strategy:warlock buff demonology pve|buff demonology pve]\r\nExecutes: [h:action:warlock fel armor|fel armor] (12.000) for [h:strategy:warlock buff affliction pve|buff affliction pve]\r\nExecutes: [h:action:warlock fel armor|fel armor] (12.000) for [h:strategy:warlock buff affliction raid|buff affliction raid]\r\nExecutes: [h:action:warlock fel armor|fel armor] (12.000) for [h:strategy:warlock buff demonology pvp|buff demonology pvp]\r\nExecutes: [h:action:warlock fel armor|fel armor] (12.000) for [h:strategy:warlock buff demonology raid|buff demonology raid]\r\nExecutes: [h:action:warlock fel armor|fel armor] (12.000) for [h:strategy:warlock buff destruction pve|buff destruction pve]\r\nExecutes: [h:action:warlock fel armor|fel armor] (12.000) for [h:strategy:warlock buff destruction pvp|buff destruction pvp]\r\nExecutes: [h:action:warlock fel armor|fel armor] (12.000) for [h:strategy:warlock buff destruction raid|buff destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1027, 'trigger:warlock shadow trance', 1, 'shadow trance [h:object|trigger] [c:shadow trance|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), (1028, 'trigger:warlock enemy out of spell range', 1, 'enemy out of spell range [h:object|trigger] [c:enemy out of spell range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:reach spell|reach spell] (60.000) for [h:strategy:warlock dps|dps]\r\nExecutes: [h:action:reach spell|reach spell] (60.000) for [h:strategy:warlock tank|tank]', '', '', '', '', '', '', '', '', '', 0), (1029, 'value:bg master', 1, 'bg master [h:object|value] [c:cdebug values bg master|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1030, 'action:deathknight blood tap', 1, 'blood tap [h:object|action] [c:do blood tap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight blood tap|blood tap] with relevance (25.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:low health|low health] with relevance (25.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight blood tap|blood tap] with relevance (25.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:low health|low health] with relevance (25.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), - (1031, 'trigger:warlock death coil on enemy healer', 1, 'death coil on enemy healer [h:object|trigger] [c:death coil on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), - (1032, 'trigger:warlock death coil on snare target', 1, 'death coil on snare target [h:object|trigger] [c:death coil on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), + (1031, 'trigger:warlock death coil on enemy healer', 1, 'death coil on enemy healer [h:object|trigger] [c:death coil on enemy healer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), + (1032, 'trigger:warlock death coil on snare target', 1, 'death coil on snare target [h:object|trigger] [c:death coil on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock death coil on snare target|death coil on snare target] (43.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), (1033, 'action:attack enemy player', 1, 'attack enemy player [h:object|action] [c:do attack enemy player|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|enemy player near] with relevance (90.000) for [h:strategy|pvp]', '', '', '', '', '', '', '', '', '', 0), - (1034, 'action:warrior intercept on snare target', 1, 'intercept on snare target [h:object|action] [c:do intercept on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior intercept on snare target|intercept on snare target] with relevance (10.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior intercept on snare target|intercept on snare target] with relevance (10.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior intercept on snare target|intercept on snare target] with relevance (10.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), - (1035, 'action:priest inner fire', 1, 'inner fire [h:object|action] [c:do inner fire|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest inner fire|inner fire] with relevance (10.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (1034, 'action:warrior intercept on snare target', 1, 'intercept on snare target [h:object|action] [c:do intercept on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior intercept on snare target|intercept on snare target] with relevance (10.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior intercept on snare target|intercept on snare target] with relevance (10.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior intercept on snare target|intercept on snare target] with relevance (10.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), + (1035, 'action:priest inner fire', 1, 'inner fire [h:object|action] [c:do inner fire|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest inner fire|inner fire] with relevance (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest inner fire|inner fire] with relevance (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest inner fire|inner fire] with relevance (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest inner fire|inner fire] with relevance (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest inner fire|inner fire] with relevance (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest inner fire|inner fire] with relevance (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest inner fire|inner fire] with relevance (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest inner fire|inner fire] with relevance (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest inner fire|inner fire] with relevance (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (1036, 'trigger:warlock shadowfury', 1, 'shadowfury [h:object|trigger] [c:shadowfury|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock shadowfury|shadowfury] (41.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock shadowfury|shadowfury] (41.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock shadowfury|shadowfury] (41.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), (1037, 'trigger:druid entangling roots on snare target', 1, 'entangling roots on snare target [h:object|trigger] [c:entangling roots on snare target|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid entangling roots on snare target|entangling roots on snare target] (25.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), (1038, 'action:druid tree of life', 1, 'tree of life [h:object|action] [c:do tree of life|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid tree of life|tree of life] with relevance (21.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), - (1039, 'trigger:warlock immolate', 1, 'immolate [h:object|trigger] [c:immolate|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock immolate|immolate] (11.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nExecutes: [h:action:warlock immolate|immolate] (11.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock immolate|immolate] (11.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), + (1039, 'trigger:warlock immolate', 1, 'immolate [h:object|trigger] [c:immolate|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock immolate|immolate] (11.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nExecutes: [h:action:warlock immolate|immolate] (11.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock immolate|immolate] (11.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), (1040, 'action:tell master', 1, 'tell master [h:object|action] [c:do tell master|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|not enough money] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|not enough money] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|not enough money] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (1041, 'trigger:druid moonfire', 1, 'moonfire [h:object|trigger] [c:moonfire|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid moonfire|moonfire] (14.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), - (1042, 'action:priest abolish disease on party', 1, 'abolish disease on party [h:object|action] [c:do abolish disease on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure|cure]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure|cure]', '', '', '', '', '', '', '', '', '', 0), + (1041, 'trigger:druid moonfire', 1, 'moonfire [h:object|trigger] [c:moonfire|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid moonfire|moonfire] (11.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:druid moonfire|moonfire] (11.000) for [h:strategy:druid balance pvp|balance pvp]', '', '', '', '', '', '', '', '', '', 0), + (1042, 'action:priest abolish disease on party', 1, 'abolish disease on party [h:object|action] [c:do abolish disease on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure shadow pve|cure shadow pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nTriggers from: [h:trigger:priest cure disease|cure disease] with relevance (50.000) for [h:strategy:priest cure shadow pve|cure shadow pve]', '', '', '', '', '', '', '', '', '', 0), (1043, 'action:rpg stay', 1, 'rpg stay [h:object|action] [c:do rpg stay|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg] with relevance (1.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), (1044, 'trigger:warlock backlash', 1, 'backlash [h:object|trigger] [c:backlash|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock shadow bolt|shadow bolt] (22.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), - (1045, 'trigger:warlock banish', 1, 'banish [h:object|trigger] [c:banish|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), + (1045, 'trigger:warlock banish', 1, 'banish [h:object|trigger] [c:banish|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock banish|banish] (42.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), (1046, 'trigger:warlock curse of agony', 1, 'curse of agony [h:object|trigger] [c:curse of agony|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (20.000) for [h:strategy:warlock curse agony|curse agony]', '', '', '', '', '', '', '', '', '', 0), - (1047, 'trigger:warlock siphon life', 1, 'siphon life [h:object|trigger] [c:siphon life|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock siphon life|siphon life] (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock siphon life|siphon life] (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock siphon life|siphon life] (10.000) for [h:strategy:warlock affliction raid|affliction raid]', '', '', '', '', '', '', '', '', '', 0), + (1047, 'trigger:warlock siphon life', 1, 'siphon life [h:object|trigger] [c:siphon life|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock siphon life|siphon life] (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock siphon life|siphon life] (10.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock siphon life|siphon life] (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]', '', '', '', '', '', '', '', '', '', 0), (1048, 'trigger:warlock unstable affliction', 1, 'unstable affliction [h:object|trigger] [c:unstable affliction|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock unstable affliction|unstable affliction] (11.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock unstable affliction|unstable affliction] (11.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock unstable affliction|unstable affliction] (11.000) for [h:strategy:warlock affliction raid|affliction raid]', '', '', '', '', '', '', '', '', '', 0), (1049, 'action:talk to quest giver', 1, 'talk to quest giver [h:object|action] [c:do talk to quest giver|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|use game object] with relevance (100.000) for [h:strategy|accept all quests]\r\nTriggers from: [h:trigger|complete quest] with relevance (100.000) for [h:strategy|accept all quests]\r\nTriggers from: [h:trigger|gossip hello] with relevance (100.000) for [h:strategy|accept all quests]\r\nTriggers from: [h:trigger|use game object] with relevance (100.000) for [h:strategy|quest]\r\nTriggers from: [h:trigger|complete quest] with relevance (100.000) for [h:strategy|quest]\r\nTriggers from: [h:trigger|gossip hello] with relevance (100.000) for [h:strategy|quest]\r\nReaction behavior:\r\nTriggers from: [h:trigger|talk] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1050, 'trigger:druid faerie fire', 1, 'faerie fire [h:object|trigger] [c:faerie fire|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid faerie fire|faerie fire] (20.000) for [h:strategy:druid caster debuff|caster debuff]\r\nExecutes: [h:action:druid faerie fire|faerie fire] (20.000) for [h:strategy:druid caster debuff|caster debuff]', '', '', '', '', '', '', '', '', '', 0), + (1050, 'trigger:druid faerie fire', 1, 'faerie fire [h:object|trigger] [c:faerie fire|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid faerie fire|faerie fire] (13.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:druid faerie fire|faerie fire] (13.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:druid faerie fire|faerie fire] (13.000) for [h:strategy:druid balance raid|balance raid]', '', '', '', '', '', '', '', '', '', 0), (1051, 'action:adamantite grenade', 1, 'adamantite grenade [h:object|action] [c:do adamantite grenade|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (61.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:very often|very often] with relevance (61.000) for [h:strategy:druid melee|melee]\r\nTriggers from: [h:trigger:very often|very often] with relevance (61.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:very often|very often] with relevance (61.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:very often|very often] with relevance (61.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:very often|very often] with relevance (61.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:very often|very often] with relevance (61.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), - (1052, 'action:mage remove curse', 1, 'remove curse [h:object|action] [c:do remove curse|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure frost pvp|cure frost pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure frost raid|cure frost raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost pvp|cure frost pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost raid|cure frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1053, 'trigger:druid bear form', 1, 'bear form [h:object|trigger] [c:bear form|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid dire bear form|dire bear form] (65.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid dire bear form|dire bear form] (65.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (1052, 'action:mage remove curse', 1, 'remove curse [h:object|action] [c:do remove curse|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure frost raid|cure frost raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (51.000) for [h:strategy:mage cure frost pvp|cure frost pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane raid|cure arcane raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost raid|cure frost raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost pve|cure frost pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire raid|cure fire raid]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure arcane pve|cure arcane pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire pve|cure fire pve]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure fire pvp|cure fire pvp]\r\nTriggers from: [h:trigger:mage remove curse|remove curse] with relevance (10.000) for [h:strategy:mage cure frost pvp|cure frost pvp]', '', '', '', '', '', '', '', '', '', 0), + (1053, 'trigger:druid bear form', 1, 'bear form [h:object|trigger] [c:bear form|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid dire bear form|dire bear form] (39.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nExecutes: [h:action:druid dire bear form|dire bear form] (39.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nExecutes: [h:action:druid dire bear form|dire bear form] (39.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (1054, 'action:accept quest', 1, 'accept quest [h:object|action] [c:do accept quest|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|accept quest] with relevance (100.000) for [h:strategy|accept all quests]\r\nTriggers from: [h:trigger|accept quest] with relevance (100.000) for [h:strategy|quest]\r\nReaction behavior:\r\nTriggers from: [h:trigger|accept] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1055, 'trigger:druid omen of clarity', 1, 'omen of clarity [h:object|trigger] [c:omen of clarity|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid omen of clarity|omen of clarity] (66.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid omen of clarity|omen of clarity] (66.000) for [h:strategy:druid melee|melee]\r\nExecutes: [h:action:druid omen of clarity|omen of clarity] (66.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid omen of clarity|omen of clarity] (66.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid omen of clarity|omen of clarity] (66.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (1056, 'trigger:druid aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid swipe (bear)|swipe (bear)] (25.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid swipe (bear)|swipe (bear)] (25.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (1057, 'trigger:druid faerie fire (feral)', 1, 'faerie fire (feral) [h:object|trigger] [c:faerie fire (feral)|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid faerie fire (feral)|faerie fire (feral)] (27.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:druid faerie fire (feral)|faerie fire (feral)] (21.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid faerie fire (feral)|faerie fire (feral)] (21.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid faerie fire (feral)|faerie fire (feral)] (27.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (1058, 'trigger:druid nature\'s swiftness', 1, 'nature\'s swiftness [h:object|trigger] [c:nature\'s swiftness|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid nature\'s swiftness|nature\'s swiftness] (29.000) for [h:strategy:druid boost|boost]', '', '', '', '', '', '', '', '', '', 0), - (1059, 'trigger:druid cat form', 1, 'cat form [h:object|trigger] [c:cat form|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid cat form|cat form] (65.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid cat form|cat form] (65.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), - (1060, 'trigger:druid tiger\'s fury', 1, 'tiger\'s fury [h:object|trigger] [c:tiger\'s fury|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid tiger\'s fury|tiger\'s fury] (22.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid tiger\'s fury|tiger\'s fury] (22.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), - (1061, 'trigger:druid trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid shred|shred] (20.000)[h:action:druid pounce|pounce] (25.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid shred|shred] (20.000)[h:action:druid pounce|pounce] (25.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), - (1062, 'action:deathknight death strike', 1, 'death strike [h:object|action] [c:do death strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nDefault action with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nDefault action with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (1063, 'trigger:druid thorns on party', 1, 'thorns on party [h:object|trigger] [c:thorns on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:druid thorns on party|thorns on party] (11.000) for [h:strategy:druid buff|buff]', '', '', '', '', '', '', '', '', '', 0), - (1064, 'trigger:druid mark of the wild on party', 1, 'mark of the wild on party [h:object|trigger] [c:mark of the wild on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (13.000) for [h:strategy:druid buff|buff]', '', '', '', '', '', '', '', '', '', 0), - (1065, 'action:druid growl', 1, 'growl [h:object|action] [c:do growl|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (28.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (28.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (1055, 'trigger:druid omen of clarity', 1, 'omen of clarity [h:object|trigger] [c:omen of clarity|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:druid omen of clarity|omen of clarity] (10.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nExecutes: [h:action:druid omen of clarity|omen of clarity] (10.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nExecutes: [h:action:druid omen of clarity|omen of clarity] (10.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nExecutes: [h:action:druid omen of clarity|omen of clarity] (10.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nExecutes: [h:action:druid omen of clarity|omen of clarity] (10.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nExecutes: [h:action:druid omen of clarity|omen of clarity] (10.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1056, 'trigger:druid aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid swipe (cat)|swipe (cat)] (20.000) for [h:strategy:druid aoe dps feral raid|aoe dps feral raid]\r\nExecutes: [h:action:druid swipe (cat)|swipe (cat)] (20.000) for [h:strategy:druid aoe dps feral pve|aoe dps feral pve]\r\nExecutes: [h:action:druid swipe (cat)|swipe (cat)] (20.000) for [h:strategy:druid aoe dps feral pvp|aoe dps feral pvp]\r\nExecutes: [h:action:druid challenging roar|challenging roar] (23.000)[h:action:druid demoralizing roar|demoralizing roar] (22.000)[h:action:druid swipe|swipe] (21.000) for [h:strategy:druid aoe tank feral pve|aoe tank feral pve]\r\nExecutes: [h:action:druid challenging roar|challenging roar] (23.000)[h:action:druid demoralizing roar|demoralizing roar] (22.000)[h:action:druid swipe|swipe] (21.000) for [h:strategy:druid aoe tank feral pvp|aoe tank feral pvp]\r\nExecutes: [h:action:druid challenging roar|challenging roar] (23.000)[h:action:druid demoralizing roar|demoralizing roar] (22.000)[h:action:druid swipe|swipe] (21.000) for [h:strategy:druid aoe tank feral raid|aoe tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1057, 'trigger:druid faerie fire (feral)', 1, 'faerie fire (feral) [h:object|trigger] [c:faerie fire (feral)|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid faerie fire (feral)|faerie fire (feral)] (15.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:druid faerie fire (feral)|faerie fire (feral)] (15.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:druid faerie fire (feral)|faerie fire (feral)] (15.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:druid faerie fire (feral)|faerie fire (feral)] (20.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:druid faerie fire (feral)|faerie fire (feral)] (20.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:druid faerie fire (feral)|faerie fire (feral)] (20.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1058, 'trigger:druid nature\'s swiftness', 1, 'nature\'s swiftness [h:object|trigger] [c:nature\'s swiftness|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000) for [h:strategy:druid boost balance raid|boost balance raid]\r\nExecutes: [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000) for [h:strategy:druid boost balance pve|boost balance pve]\r\nExecutes: [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000) for [h:strategy:druid boost balance pvp|boost balance pvp]\r\nExecutes: [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000) for [h:strategy:druid boost restoration pve|boost restoration pve]\r\nExecutes: [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000) for [h:strategy:druid boost restoration pvp|boost restoration pvp]\r\nExecutes: [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000) for [h:strategy:druid boost restoration raid|boost restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1059, 'trigger:druid cat form', 1, 'cat form [h:object|trigger] [c:cat form|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid cat form|cat form] (30.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nExecutes: [h:action:druid cat form|cat form] (30.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nExecutes: [h:action:druid cat form|cat form] (30.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1060, 'trigger:druid tiger\'s fury', 1, 'tiger\'s fury [h:object|trigger] [c:tiger\'s fury|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid tiger\'s fury|tiger\'s fury] (20.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nExecutes: [h:action:druid tiger\'s fury|tiger\'s fury] (20.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nExecutes: [h:action:druid tiger\'s fury|tiger\'s fury] (20.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1061, 'trigger:druid trigger', 1, 'trigger [h:object|trigger] [c:trigger|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid shred|shred] (11.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:druid shred|shred] (11.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:druid shred|shred] (11.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:druid pounce|pounce] (13.000) for [h:strategy:druid stealth dps feral pve|stealth dps feral pve]\r\nExecutes: [h:action:druid pounce|pounce] (13.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]\r\nExecutes: [h:action:druid pounce|pounce] (13.000) for [h:strategy:druid stealth dps feral raid|stealth dps feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1062, 'action:deathknight death strike', 1, 'death strike [h:object|action] [c:do death strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nDefault action with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:low health|low health] with relevance (24.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nDefault action with relevance (14.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (1063, 'trigger:druid thorns on party', 1, 'thorns on party [h:object|trigger] [c:thorns on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nExecutes: [h:action:druid thorns on party|thorns on party] (12.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1064, 'trigger:druid mark of the wild on party', 1, 'mark of the wild on party [h:object|trigger] [c:mark of the wild on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nExecutes: [h:action:druid mark of the wild on party|mark of the wild on party] (12.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1065, 'action:druid growl', 1, 'growl [h:object|action] [c:do growl|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (30.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (30.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (30.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (1066, 'action:paladin frost resistance aura', 1, 'frost resistance aura [h:object|action] [c:do frost resistance aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin frost resistance aura|frost resistance aura] with relevance (10.000) for [h:strategy:paladin aura frost|aura frost]', '', '', '', '', '', '', '', '', '', 0), (1067, 'action:loot roll', 1, 'loot roll [h:object|action] [c:do loot roll|execute]\r\nThis action will make the bot roll on an item the master just rolled on.\r\nThe type of roll will be automatically determined based on if the bot finds the item useful.\r\nUsed actions:\r\n[h:action|roll] \r\nUsed values:\r\n[h:value|item usage] [h:value|force item usage] \r\nCombat behavior:\r\nTriggers from: [h:trigger|loot roll] with relevance (100.000) for [h:strategy|delayed roll]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|loot roll] with relevance (100.000) for [h:strategy|delayed roll]', '', '', '', '', '', '', '', '', '', 0), - (1068, 'trigger:druid gift of the wild on party', 1, 'gift of the wild on party [h:object|trigger] [c:gift of the wild on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (14.000) for [h:strategy:druid buff|buff]', '', '', '', '', '', '', '', '', '', 0), + (1068, 'trigger:druid gift of the wild on party', 1, 'gift of the wild on party [h:object|trigger] [c:gift of the wild on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nExecutes: [h:action:druid gift of the wild on party|gift of the wild on party] (13.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (1069, 'trigger:druid eclipse (solar)', 1, 'eclipse (solar) [h:object|trigger] [c:eclipse (solar)|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid wrath|wrath] (16.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), - (1070, 'action:mage blink', 1, 'blink [h:object|action] [c:do blink|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1071, 'trigger:druid insect swarm', 1, 'insect swarm [h:object|trigger] [c:insect swarm|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid insect swarm|insect swarm] (15.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), + (1070, 'action:mage blink', 1, 'blink [h:object|action] [c:do blink|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage blink|blink] with relevance (90.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), + (1071, 'trigger:druid insect swarm', 1, 'insect swarm [h:object|trigger] [c:insect swarm|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid insect swarm|insect swarm] (12.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:druid insect swarm|insect swarm] (12.000) for [h:strategy:druid balance pvp|balance pvp]', '', '', '', '', '', '', '', '', '', 0), (1072, 'trigger:druid eclipse (lunar)', 1, 'eclipse (lunar) [h:object|trigger] [c:eclipse (lunar)|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid starfire|starfire] (16.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), - (1073, 'action:warrior intercept', 1, 'intercept [h:object|action] [c:do intercept|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (35.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (35.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (35.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1074, 'trigger:druid entangling roots', 1, 'entangling roots [h:object|trigger] [c:entangling roots|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid entangling roots|entangling roots] (22.000) for [h:strategy:druid cc|cc]', '', '', '', '', '', '', '', '', '', 0), - (1075, 'trigger:druid hibernate', 1, 'hibernate [h:object|trigger] [c:hibernate|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid hibernate on cc|hibernate on cc] (23.000) for [h:strategy:druid cc|cc]', '', '', '', '', '', '', '', '', '', 0), + (1073, 'action:warrior intercept', 1, 'intercept [h:object|action] [c:do intercept|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (35.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (35.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (35.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (1074, 'trigger:druid entangling roots', 1, 'entangling roots [h:object|trigger] [c:entangling roots|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid entangling roots|entangling roots] (40.000) for [h:strategy:druid cc restoration raid|cc restoration raid]\r\nExecutes: [h:action:druid entangling roots|entangling roots] (40.000) for [h:strategy:druid cc balance pve|cc balance pve]\r\nExecutes: [h:action:druid entangling roots|entangling roots] (40.000) for [h:strategy:druid cc balance pvp|cc balance pvp]\r\nExecutes: [h:action:druid entangling roots|entangling roots] (40.000) for [h:strategy:druid cc balance raid|cc balance raid]\r\nExecutes: [h:action:druid entangling roots|entangling roots] (40.000) for [h:strategy:druid cc restoration pve|cc restoration pve]\r\nExecutes: [h:action:druid entangling roots|entangling roots] (40.000) for [h:strategy:druid cc restoration pvp|cc restoration pvp]', '', '', '', '', '', '', '', '', '', 0), + (1075, 'trigger:druid hibernate', 1, 'hibernate [h:object|trigger] [c:hibernate|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc tank feral pvp|cc tank feral pvp]\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc restoration raid|cc restoration raid]\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc balance pve|cc balance pve]\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc dps feral pve|cc dps feral pve]\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc dps feral raid|cc dps feral raid]\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc balance pvp|cc balance pvp]\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc tank feral pve|cc tank feral pve]\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc balance raid|cc balance raid]\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc dps feral pvp|cc dps feral pvp]\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc restoration pve|cc restoration pve]\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc tank feral raid|cc tank feral raid]\r\nExecutes: [h:action:druid hibernate|hibernate] (40.000) for [h:strategy:druid cc restoration pvp|cc restoration pvp]', '', '', '', '', '', '', '', '', '', 0), (1076, 'action:lfg join', 1, 'lfg join [h:object|action] [c:do lfg join|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (100.000) for [h:strategy|lfg]', '', '', '', '', '', '', '', '', '', 0), - (1077, 'trigger:druid cure poison', 1, 'cure poison [h:object|trigger] [c:cure poison|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid abolish poison|abolish poison] (52.000) for [h:strategy:druid cure|cure]\r\nNon combat behavior:\r\nExecutes: [h:action:druid abolish poison|abolish poison] (52.000) for [h:strategy:druid cure|cure]', '', '', '', '', '', '', '', '', '', 0), + (1077, 'trigger:druid cure poison', 1, 'cure poison [h:object|trigger] [c:cure poison|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]\r\nNon combat behavior:\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nExecutes: [h:action:druid abolish poison|abolish poison] (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (1078, 'trigger:druid tree of life', 1, 'tree of life [h:object|trigger] [c:tree of life|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid tree of life|tree of life] (21.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), - (1079, 'trigger:druid mark of the wild', 1, 'mark of the wild [h:object|trigger] [c:mark of the wild|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (14.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (1079, 'trigger:druid mark of the wild', 1, 'mark of the wild [h:object|trigger] [c:mark of the wild|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nExecutes: [h:action:druid mark of the wild|mark of the wild] (11.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (1080, 'action:rpg buy petition', 1, 'rpg buy petition [h:object|action] [c:do rpg buy petition|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg buy petition] with relevance (1.040) for [h:strategy|rpg guild]', '', '', '', '', '', '', '', '', '', 0), - (1081, 'action:accept all quests', 1, 'accept all quests [h:object|action] [c:do accept all quests|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|use game object] with relevance (100.000) for [h:strategy|accept all quests]\r\nTriggers from: [h:trigger|complete quest] with relevance (100.000) for [h:strategy|accept all quests]\r\nTriggers from: [h:trigger|gossip hello] with relevance (100.000) for [h:strategy|accept all quests]', '', '', '', '', '', '', '', '', '', 0), + (1081, 'action:accept all quests', 1, 'accept all quests [h:object|action] [c:do accept all quests|execute]\r\nThis action wil accept all quests from the npc selected by the master\r\nIt will use all nearby quest givers if none is selected.\r\nUsed values:\r\n[h:value|nearest npcs] [h:value|nearest game objects no los] \r\nNon combat behavior:\r\nTriggers from: [h:trigger|use game object] with relevance (100.000) for [h:strategy|accept all quests]\r\nTriggers from: [h:trigger|complete quest] with relevance (100.000) for [h:strategy|accept all quests]\r\nTriggers from: [h:trigger|gossip hello] with relevance (100.000) for [h:strategy|accept all quests]', '', '', '', '', '', '', '', '', '', 0), (1082, 'action:wait for attack keep safe distance', 1, 'wait for attack keep safe distance [h:object|action] [c:do wait for attack keep safe distance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|wait for attack safe distance] with relevance (60.000) for [h:strategy|wait for attack]', '', '', '', '', '', '', '', '', '', 0), (1083, 'action:rpg duel', 1, 'rpg duel [h:object|action] [c:do rpg duel|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg duel] with relevance (1.010) for [h:strategy|rpg player]', '', '', '', '', '', '', '', '', '', 0), (1084, 'action:attack duel opponent', 1, 'attack duel opponent [h:object|action] [c:do attack duel opponent|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|no attackers] with relevance (70.000) for [h:strategy|duel]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|no attackers] with relevance (70.000) for [h:strategy|duel]', '', '', '', '', '', '', '', '', '', 0), - (1085, 'action:mage counterspell on enemy healer', 1, 'counterspell on enemy healer [h:object|action] [c:do counterspell on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc frost pvp|cc frost pvp]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc frost raid|cc frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1085, 'action:mage counterspell on enemy healer', 1, 'counterspell on enemy healer [h:object|action] [c:do counterspell on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc frost raid|cc frost raid]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nTriggers from: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] with relevance (42.000) for [h:strategy:mage cc frost pvp|cc frost pvp]', '', '', '', '', '', '', '', '', '', 0), (1086, 'action:dps aoe', 1, 'dps aoe [h:object|action] [c:do dps aoe|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|not dps aoe target active] with relevance (60.000) for [h:strategy|dps aoe]', '', '', '', '', '', '', '', '', '', 0), (1087, 'action:glaive throw', 1, 'glaive throw [h:object|action] [c:do glaive throw|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|in vehicle] with relevance (70.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|in vehicle] with relevance (70.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), (1088, 'value:available loot', 1, 'available loot [h:object|value] [c:cdebug values available loot|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1089, 'action:move out of collision', 1, 'move out of collision [h:object|action] [c:do move out of collision|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|collision] with relevance (2.000) for [h:strategy|collision]', '', '', '', '', '', '', '', '', '', 0), (1090, 'action:check flag', 1, 'check flag [h:object|action] [c:do check flag|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|bg active] with relevance (70.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|bg active] with relevance (70.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|bg active] with relevance (70.000) for [h:strategy|isle]\r\nTriggers from: [h:trigger|bg active] with relevance (70.000) for [h:strategy|warsong]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|bg active] with relevance (70.000) for [h:strategy|arathi]\r\nTriggers from: [h:trigger|bg active] with relevance (70.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|bg active] with relevance (70.000) for [h:strategy|isle]\r\nTriggers from: [h:trigger|bg active] with relevance (70.000) for [h:strategy|warsong]', '', '', '', '', '', '', '', '', '', 0), (1091, 'action:who', 1, 'who [h:object|action] [c:do who|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|who] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|who] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|who] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|who] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1092, 'action:give leader', 1, 'give leader [h:object|action] [c:do give leader|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|give leader] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|give leader] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|give leader] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|give leader] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (1092, 'action:give leader', 1, 'give leader [h:object|action] [c:do give leader|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|unknown dungeon] with relevance (100.000) for [h:strategy|lfg]', '', '', '', '', '', '', '', '', '', 0), (1093, 'value:pet happy', 1, 'pet happy [h:object|value] [c:cdebug values pet happy|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1094, 'action:warrior pummel on enemy healer', 1, 'pummel on enemy healer [h:object|action] [c:do pummel on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] with relevance (40.000) for [h:strategy:warrior cc fury raid|cc fury raid]\r\nTriggers from: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] with relevance (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nTriggers from: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] with relevance (40.000) for [h:strategy:warrior cc fury pve|cc fury pve]', '', '', '', '', '', '', '', '', '', 0), + (1094, 'action:warrior pummel on enemy healer', 1, 'pummel on enemy healer [h:object|action] [c:do pummel on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] with relevance (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nTriggers from: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] with relevance (40.000) for [h:strategy:warrior cc fury pve|cc fury pve]\r\nTriggers from: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] with relevance (40.000) for [h:strategy:warrior cc fury raid|cc fury raid]', '', '', '', '', '', '', '', '', '', 0), (1095, 'action:arena tactics', 1, 'arena tactics [h:object|action] [c:do arena tactics|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|no possible targets] with relevance (1.000) for [h:strategy|arena]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|no possible targets] with relevance (1.000) for [h:strategy|arena]', '', '', '', '', '', '', '', '', '', 0), (1096, 'action:rpg taxi', 1, 'rpg taxi [h:object|action] [c:do rpg taxi|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg taxi] with relevance (1.005) for [h:strategy|rpg explore]', '', '', '', '', '', '', '', '', '', 0), (1097, 'action:priest consume magic', 1, 'consume magic [h:object|action] [c:do consume magic|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (10.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (10.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (10.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (10.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), @@ -1120,37 +1120,37 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1100, 'value:can fight equal', 1, 'can fight equal [h:object|value] [c:cdebug values can fight equal|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1101, 'action:cast custom nc spell', 1, 'cast custom nc spell [h:object|action] [c:do cast custom nc spell|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|castnc] with relevance (0.900) for [h:strategy|rpg craft]', '', '', '', '', '', '', '', '', '', 0), (1102, 'action:move to objective', 1, 'move to objective [h:object|action] [c:do move to objective|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|player has flag] with relevance (80.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|player has flag] with relevance (80.000) for [h:strategy|warsong]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|bg active] with relevance (1.000) for [h:strategy|battleground]\r\nTriggers from: [h:trigger|player has flag] with relevance (80.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|player has flag] with relevance (80.000) for [h:strategy|warsong]', '', '', '', '', '', '', '', '', '', 0), - (1103, 'action:flee', 1, 'flee [h:object|action] [c:do flee|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|has area debuff] with relevance (95.000) for [h:strategy|avoid aoe]\r\nTriggers from: [h:trigger|critical health] with relevance (70.000) for [h:strategy|flee]\r\nTriggers from: [h:trigger|outnumbered] with relevance (99.000) for [h:strategy|flee]\r\nTriggers from: [h:trigger|panic] with relevance (99.000) for [h:strategy|flee]\r\nTriggers from: [h:trigger|enemy too close for spell] with relevance (59.000) for [h:strategy|ranged]\r\nReaction behavior:\r\nTriggers from: [h:trigger|has area debuff] with relevance (95.000) for [h:strategy|avoid aoe]', '', '', '', '', '', '', '', '', '', 0), + (1103, 'action:flee', 1, 'flee [h:object|action] [c:do flee|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|has area debuff] with relevance (95.000) for [h:strategy|avoid aoe]\r\nTriggers from: [h:trigger|outnumbered] with relevance (99.000) for [h:strategy|flee]\r\nTriggers from: [h:trigger|panic] with relevance (99.000) for [h:strategy|flee]\r\nTriggers from: [h:trigger|enemy too close for spell] with relevance (30.000) for [h:strategy|ranged]\r\nReaction behavior:\r\nTriggers from: [h:trigger|has area debuff] with relevance (95.000) for [h:strategy|avoid aoe]', '', '', '', '', '', '', '', '', '', 0), (1104, 'action:rpg queue bg', 1, 'rpg queue bg [h:object|action] [c:do rpg queue bg|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg queue bg] with relevance (1.085) for [h:strategy|rpg bg]', '', '', '', '', '', '', '', '', '', 0), (1105, 'action:bg join', 1, 'bg join [h:object|action] [c:do bg join|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (100.000) for [h:strategy|bg]', '', '', '', '', '', '', '', '', '', 0), (1106, 'value:random bot update', 1, 'random bot update [h:object|value] [c:cdebug values random bot update|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1107, 'action:set behind', 1, 'set behind [h:object|action] [c:do set behind|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|trigger] with relevance (59.000) for [h:strategy|behind]', '', '', '', '', '', '', '', '', '', 0), + (1107, 'action:set behind', 1, 'set behind [h:object|action] [c:do set behind|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|trigger] with relevance (35.000) for [h:strategy|behind]', '', '', '', '', '', '', '', '', '', 0), (1108, 'action:hire', 1, 'hire [h:object|action] [c:do hire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|hire] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|hire] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|hire] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|hire] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1109, 'value:current target', 1, 'old target [h:object|value] [c:cdebug values old target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1110, 'action:stats', 1, 'stats [h:object|action] [c:do stats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|stats] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|stats] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|stats] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|stats] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1111, 'action:reputation', 1, 'reputation [h:object|action] [c:do reputation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|reputation] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|reputation] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|reputation] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|reputation] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|reputation] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1112, 'action:set dead state', 1, 'set dead state [h:object|action] [c:do set dead state|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid react|react]', '', '', '', '', '', '', '', '', '', 0), + (1112, 'action:set dead state', 1, 'set dead state [h:object|action] [c:do set dead state|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:death|death] with relevance (110.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (1113, 'action:share quest', 1, 'share quest [h:object|action] [c:do share quest|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|share] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|share] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|share] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|share] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1114, 'action:perception', 1, 'perception [h:object|action] [c:do perception|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|cannibalize] with relevance (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|cannibalize] with relevance (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (1115, 'action:ll', 1, 'll [h:object|action] [c:do ll|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|ll] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|ll] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|ll] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|ll] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1116, 'action:paladin seal of light', 1, 'seal of light [h:object|action] [c:do seal of light|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin seal of justice|seal of justice] with relevance (12.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:paladin seal of justice|seal of justice] with relevance (12.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:paladin seal of justice|seal of justice] with relevance (12.000) for [h:strategy:paladin holy raid|holy raid]', '', '', '', '', '', '', '', '', '', 0), - (1117, 'action:priest power word: shield', 1, 'power word: shield [h:object|action] [c:do power word: shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (71.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:low health|low health] with relevance (61.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (71.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:low health|low health] with relevance (61.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (71.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:low health|low health] with relevance (61.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (71.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:low health|low health] with relevance (61.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (1116, 'action:paladin seal of light', 1, 'seal of light [h:object|action] [c:do seal of light|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin seal|seal] with relevance (12.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:paladin seal|seal] with relevance (12.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:paladin seal|seal] with relevance (12.000) for [h:strategy:paladin holy raid|holy raid]', '', '', '', '', '', '', '', '', '', 0), + (1117, 'action:priest power word: shield', 1, 'power word: shield [h:object|action] [c:do power word: shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (20.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (20.000) for [h:strategy:priest discipline pvp|discipline pvp]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (20.000) for [h:strategy:priest holy pve|holy pve]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (20.000) for [h:strategy:priest discipline pve|discipline pve]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (20.000) for [h:strategy:priest holy pvp|holy pvp]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (20.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (20.000) for [h:strategy:priest shadow pve|shadow pve]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (20.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (20.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), (1118, 'action:release', 1, 'release [h:object|action] [c:do release|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|release] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|release spirit] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|release] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|release spirit] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|release] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|release spirit] with relevance (100.000) for [h:strategy|default]\r\nReaction behavior:\r\nTriggers from: [h:trigger|release] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1119, 'action:guild remove', 1, 'guild remove [h:object|action] [c:do guild remove|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|guild remove] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|guild remove] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|guild remove] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|guild remove] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1120, 'action:spells', 1, 'spells [h:object|action] [c:do spells|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|spells] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|spells] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|spells] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|spells] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1121, 'action:save mana', 1, 'save mana [h:object|action] [c:do save mana|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|save mana] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|save mana] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|save mana] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|save mana] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1122, 'action:de', 1, 'de [h:object|action] [c:do de|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|de] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|de] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|de] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|de] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1123, 'action:rogue riposte', 1, 'riposte [h:object|action] [c:do riposte|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue riposte|riposte] with relevance (23.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue riposte|riposte] with relevance (23.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:rogue riposte|riposte] with relevance (23.000) for [h:strategy:rogue combat raid|combat raid]', '', '', '', '', '', '', '', '', '', 0), + (1123, 'action:rogue riposte', 1, 'riposte [h:object|action] [c:do riposte|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue riposte|riposte] with relevance (23.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:rogue riposte|riposte] with relevance (23.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue riposte|riposte] with relevance (23.000) for [h:strategy:rogue combat pve|combat pve]', '', '', '', '', '', '', '', '', '', 0), (1124, 'action:chat', 1, 'chat [h:object|action] [c:do chat|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|chat] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|chat] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|chat] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|chat] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1125, 'action:warlock dark pact', 1, 'dark pact [h:object|action] [c:do dark pact|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (22.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (22.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (22.000) for [h:strategy:warlock affliction raid|affliction raid]', '', '', '', '', '', '', '', '', '', 0), + (1125, 'action:warlock dark pact', 1, 'dark pact [h:object|action] [c:do dark pact|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (22.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (22.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (22.000) for [h:strategy:warlock affliction pvp|affliction pvp]', '', '', '', '', '', '', '', '', '', 0), (1126, 'action:position', 1, 'position [h:object|action] [c:do position|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|position] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|position] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|position] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|position] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1127, 'action:destroy', 1, 'destroy [h:object|action] [c:do destroy|execute]\r\nThis command will make the bot destroy a certain item.\r\nUsage: destroy [itemlink]\r\n\r\nUsed values:\r\n[h:value|force item usage] \r\nCombat behavior:\r\nTriggers from: [h:trigger|destroy] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|destroy] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|destroy] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|destroy] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1128, 'action:shaman ancestral spirit', 1, 'ancestral spirit [h:object|action] [c:do ancestral spirit|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (20.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), + (1128, 'action:shaman ancestral spirit', 1, 'ancestral spirit [h:object|action] [c:do ancestral spirit|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:shaman restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), (1129, 'action:craft', 1, 'craft [h:object|action] [c:do craft|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|craft] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|craft] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|craft] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|craft] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1130, 'action:reset ai', 1, 'reset ai [h:object|action] [c:do reset ai|execute]\r\nReset the bot to it\'s initial state.\r\nSaved settings and values will be cleared.\r\nUsed actions:\r\n[h:action|reset strats] [h:action|reset values] \r\nCombat behavior:\r\nTriggers from: [h:trigger|reset ai] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|reset ai] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|reset ai] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|reset ai] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1131, 'action:druid travel form', 1, 'travel form [h:object|action] [c:do travel form|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (92.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (92.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (92.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (92.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (92.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (92.000) for [h:strategy:druid bear|bear]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (92.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (1131, 'action:druid travel form', 1, 'travel form [h:object|action] [c:do travel form|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:druid tank feral pvp|tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (1132, 'action:join', 1, 'join [h:object|action] [c:do join|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|join] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|join] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|join] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|join] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1133, 'action:emote', 1, 'emote [h:object|action] [c:do emote|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|emote] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|emote] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|random] with relevance (1.000) for [h:strategy|emote]\r\nTriggers from: [h:trigger|receive emote] with relevance (10.000) for [h:strategy|emote]\r\nTriggers from: [h:trigger|receive text emote] with relevance (10.000) for [h:strategy|emote]\r\nDead state behavior:\r\nTriggers from: [h:trigger|emote] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|emote] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (1133, 'action:emote', 1, 'emote [h:object|action] [c:do emote|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|emote] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (0.500) for [h:strategy|emote]\r\nTriggers from: [h:trigger|receive text emote] with relevance (10.000) for [h:strategy|emote]\r\nTriggers from: [h:trigger|receive emote] with relevance (10.000) for [h:strategy|emote]\r\nTriggers from: [h:trigger|emote] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|emote] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|emote] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1134, 'action:guild invite', 1, 'guild invite [h:object|action] [c:do guild invite|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|guild invite] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|guild invite] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|guild invite] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|guild invite] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1135, 'action:buy', 1, 'buy [h:object|action] [c:do buy|execute]\r\nThis command will make bots buy items from a nearby vendor.\r\nUsage: buy [itemlink]\r\nExample: buy usefull (buy based on item use)\r\nExample: buy [itemlink]\r\n\r\nUsed actions:\r\n[h:action|equip upgrades] \r\nUsed values:\r\n[h:value|nearest npcs] [h:value|item count] [h:value|item usage] [h:value|free money for] \r\nReaction behavior:\r\nTriggers from: [h:trigger|b] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1136, 'action:summon', 1, 'summon [h:object|action] [c:do summon|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|summon] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|summon] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|summon] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|summon] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), @@ -1164,8 +1164,8 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1144, 'action:petition sign', 1, 'petition sign [h:object|action] [c:do petition sign|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|petition offer] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|petition offer] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|petition offer] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (1145, 'action:warlock unstable affliction', 1, 'unstable affliction [h:object|action] [c:do unstable affliction|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock unstable affliction|unstable affliction] with relevance (11.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock unstable affliction|unstable affliction] with relevance (11.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock unstable affliction|unstable affliction] with relevance (11.000) for [h:strategy:warlock affliction raid|affliction raid]', '', '', '', '', '', '', '', '', '', 0), (1146, 'action:query quest', 1, 'query quest [h:object|action] [c:do query quest|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|q] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1147, 'action:loot', 1, 'loot [h:object|action] [c:do loot|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|loot available] with relevance (6.000) for [h:strategy|loot]\r\nReaction behavior:\r\nTriggers from: [h:trigger|add all loot] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1148, 'action:warlock fear', 1, 'fear [h:object|action] [c:do fear|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), + (1147, 'action:loot', 1, 'loot [h:object|action] [c:do loot|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|loot available] with relevance (6.000) for [h:strategy|loot]\r\nReaction behavior:\r\nTriggers from: [h:trigger|add all loot] with relevance (102.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|add all loot] with relevance (102.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (1148, 'action:warlock fear', 1, 'fear [h:object|action] [c:do fear|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:warlock fear|fear] with relevance (41.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), (1149, 'action:use', 1, 'use [h:object|action] [c:do use|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|use] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1150, 'action:c', 1, 'c [h:object|action] [c:do c|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|c] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|c] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|c] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1151, 'action:equip', 1, 'equip [h:object|action] [c:do equip|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|e] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), @@ -1179,14 +1179,14 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1159, 'action:tell target', 1, 'tell target [h:object|action] [c:do tell target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|target changed] with relevance (51.000) for [h:strategy|tell target]', '', '', '', '', '', '', '', '', '', 0), (1160, 'action:grind chat shortcut', 1, 'grind chat shortcut [h:object|action] [c:do grind chat shortcut|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|grind] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1161, 'action:gossip hello', 1, 'gossip hello [h:object|action] [c:do gossip hello|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|talk] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1162, 'action:priest holy fire', 1, 'holy fire [h:object|action] [c:do holy fire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest holy fire|holy fire] with relevance (19.000) for [h:strategy:priest holy|holy]', '', '', '', '', '', '', '', '', '', 0), - (1163, 'action:runaway chat shortcut', 1, 'runaway chat shortcut [h:object|action] [c:do runaway chat shortcut|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|runaway] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|warning] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (1162, 'action:priest holy fire', 1, 'holy fire [h:object|action] [c:do holy fire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest holy fire|holy fire] with relevance (12.000) for [h:strategy:priest offdps pve|offdps pve]\r\nTriggers from: [h:trigger:priest holy fire|holy fire] with relevance (12.000) for [h:strategy:priest offdps pvp|offdps pvp]\r\nTriggers from: [h:trigger:priest holy fire|holy fire] with relevance (12.000) for [h:strategy:priest offdps raid|offdps raid]', '', '', '', '', '', '', '', '', '', 0), + (1163, 'action:runaway chat shortcut', 1, 'runaway chat shortcut [h:object|action] [c:do runaway chat shortcut|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|warning] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|runaway] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1164, 'action:mana potion', 1, 'mana potion [h:object|action] [c:do mana potion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|low mana] with relevance (21.000) for [h:strategy|potions]\r\nReaction behavior:\r\nTriggers from: [h:trigger|low mana] with relevance (21.000) for [h:strategy|potions]', '', '', '', '', '', '', '', '', '', 0), (1165, 'action:party command', 1, 'party command [h:object|action] [c:do party command|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|party command] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|party command] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|party command] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (1166, 'action:random bot update', 1, 'random bot update [h:object|action] [c:do random bot update|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|random bot update] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random bot update] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|random bot update] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (1167, 'value:rti', 1, 'rti [h:object|value] [c:cdebug values rti|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1168, 'action:accept trade', 1, 'accept trade [h:object|action] [c:do accept trade|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|trade status] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|trade status] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|trade status] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (1169, 'action:hunter trueshot aura', 1, 'trueshot aura [h:object|action] [c:do trueshot aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter trueshot aura|trueshot aura] with relevance (2.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (1169, 'action:hunter trueshot aura', 1, 'trueshot aura [h:object|action] [c:do trueshot aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter trueshot aura|trueshot aura] with relevance (11.000) for [h:strategy:hunter buff marksmanship pve|buff marksmanship pve]\r\nTriggers from: [h:trigger:hunter trueshot aura|trueshot aura] with relevance (11.000) for [h:strategy:hunter buff marksmanship pvp|buff marksmanship pvp]\r\nTriggers from: [h:trigger:hunter trueshot aura|trueshot aura] with relevance (11.000) for [h:strategy:hunter buff marksmanship raid|buff marksmanship raid]', '', '', '', '', '', '', '', '', '', 0), (1170, 'action:accept invitation', 1, 'accept invitation [h:object|action] [c:do accept invitation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|group invite] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|group invite] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|group invite] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (1171, 'action:add loot', 1, 'add loot [h:object|action] [c:do add loot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|use game object] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|use game object] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|use game object] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (1172, 'action:remember taxi', 1, 'remember taxi [h:object|action] [c:do remember taxi|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|activate taxi] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|activate taxi] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|activate taxi] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), @@ -1196,32 +1196,32 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1176, 'value:can loot', 1, 'can loot [h:object|value] [c:cdebug values can loot|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1177, 'action:see spell', 1, 'see spell [h:object|action] [c:do see spell|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|see spell] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|see spell] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|see spell] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (1178, 'action:master loot roll', 1, 'master loot roll [h:object|action] [c:do master loot roll|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|master loot roll] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|master loot roll] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|master loot roll] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (1179, 'action:reach melee', 1, 'reach melee [h:object|action] [c:do reach melee|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (18.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (18.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (18.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (18.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), + (1179, 'action:reach melee', 1, 'reach melee [h:object|action] [c:do reach melee|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (18.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (18.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (18.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (18.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), (1180, 'action:flee to master', 1, 'flee to master [h:object|action] [c:do flee to master|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|out of react range] with relevance (20.000) for [h:strategy|follow]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|out of react range] with relevance (20.000) for [h:strategy|follow]\r\nDead state behavior:\r\nTriggers from: [h:trigger|out of react range] with relevance (20.000) for [h:strategy|follow]', '', '', '', '', '', '', '', '', '', 0), - (1181, 'action:repop', 1, 'repop [h:object|action] [c:do repop|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid melee|melee]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (1181, 'action:repop', 1, 'repop [h:object|action] [c:do repop|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:combat long stuck|combat long stuck] with relevance (0.800) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (1182, 'action:ram', 1, 'ram [h:object|action] [c:do ram|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|enemy is close] with relevance (79.000) for [h:strategy|isle]\r\nTriggers from: [h:trigger|in vehicle] with relevance (70.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|enemy is close] with relevance (79.000) for [h:strategy|isle]\r\nTriggers from: [h:trigger|in vehicle] with relevance (70.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), - (1183, 'action:lightwell', 1, 'lightwell [h:object|action] [c:do lightwell|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (80.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:very often|very often] with relevance (80.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:very often|very often] with relevance (80.000) for [h:strategy:druid melee|melee]\r\nTriggers from: [h:trigger:very often|very often] with relevance (80.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:very often|very often] with relevance (80.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:very often|very often] with relevance (80.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:very often|very often] with relevance (80.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (1183, 'action:lightwell', 1, 'lightwell [h:object|action] [c:do lightwell|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (60.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (1184, 'action:find corpse', 1, 'find corpse [h:object|action] [c:do find corpse|execute]\r\n\r\nDead state behavior:\r\nTriggers from: [h:trigger|dead] with relevance (100.000) for [h:strategy|dead]', '', '', '', '', '', '', '', '', '', 0), (1185, 'action:dps assist', 1, 'dps assist [h:object|action] [c:do dps assist|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|not dps target active] with relevance (60.000) for [h:strategy|dps assist]', '', '', '', '', '', '', '', '', '', 0), (1186, 'value:dialog status', 1, 'dialog status [h:object|value] [c:cdebug values dialog status|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1187, 'action:follow', 1, 'follow [h:object|action] [c:do follow|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|update follow] with relevance (1.000) for [h:strategy|follow]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|update follow] with relevance (1.000) for [h:strategy|follow]\r\nDead state behavior:\r\nTriggers from: [h:trigger|update follow] with relevance (1.000) for [h:strategy|follow]', '', '', '', '', '', '', '', '', '', 0), (1188, 'value:last long move', 1, 'last long move [h:object|value] [c:cdebug values last long move|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1189, 'action:warrior bloodthirst', 1, 'bloodthirst [h:object|action] [c:do bloodthirst|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior bloodthirst|bloodthirst] with relevance (13.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior bloodthirst|bloodthirst] with relevance (13.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior bloodthirst|bloodthirst] with relevance (13.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), + (1189, 'action:warrior bloodthirst', 1, 'bloodthirst [h:object|action] [c:do bloodthirst|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (24.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (24.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nTriggers from: [h:trigger:warrior bloodthirst|bloodthirst] with relevance (20.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (24.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nTriggers from: [h:trigger:warrior bloodthirst|bloodthirst] with relevance (20.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior bloodthirst|bloodthirst] with relevance (20.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior bloodthirst|bloodthirst] with relevance (13.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior bloodthirst|bloodthirst] with relevance (13.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior bloodthirst|bloodthirst] with relevance (13.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), (1190, 'action:food', 1, 'food [h:object|action] [c:do food|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|low health] with relevance (3.000) for [h:strategy|food]', '', '', '', '', '', '', '', '', '', 0), (1191, 'action:drink', 1, 'drink [h:object|action] [c:do drink|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|high mana] with relevance (3.000) for [h:strategy|food]', '', '', '', '', '', '', '', '', '', 0), (1192, 'action:add gathering loot', 1, 'add gathering loot [h:object|action] [c:do add gathering loot|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|timer] with relevance (2.000) for [h:strategy|gather]', '', '', '', '', '', '', '', '', '', 0), - (1193, 'action:deathknight bone shield', 1, 'bone shield [h:object|action] [c:do bone shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight bone shield|bone shield] with relevance (11.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight bone shield|bone shield] with relevance (11.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight bone shield|bone shield] with relevance (11.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight bone shield|bone shield] with relevance (11.000) for [h:strategy:deathknight unholy|unholy]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:deathknight bone shield|bone shield] with relevance (21.000) for [h:strategy:deathknight nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (1193, 'action:deathknight bone shield', 1, 'bone shield [h:object|action] [c:do bone shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight bone shield|bone shield] with relevance (11.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight bone shield|bone shield] with relevance (11.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight bone shield|bone shield] with relevance (11.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight bone shield|bone shield] with relevance (11.000) for [h:strategy:deathknight blood|blood]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:deathknight bone shield|bone shield] with relevance (21.000) for [h:strategy:deathknight nc|nc]', '', '', '', '', '', '', '', '', '', 0), (1194, 'action:invite nearby', 1, 'invite nearby [h:object|action] [c:do invite nearby|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|often] with relevance (4.000) for [h:strategy|group]', '', '', '', '', '', '', '', '', '', 0), - (1195, 'action:check values', 1, 'check values [h:object|action] [c:do check values|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid buff|buff]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1196, 'action:move to dark portal', 1, 'move to dark portal [h:object|action] [c:do move to dark portal|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid buff|buff]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (1195, 'action:check values', 1, 'check values [h:object|action] [c:do check values|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (1.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1196, 'action:move to dark portal', 1, 'move to dark portal [h:object|action] [c:do move to dark portal|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:near dark portal|near dark portal] with relevance (1.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (1197, 'action:world buff', 1, 'world buff [h:object|action] [c:do world buff|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|need world buff] with relevance (1.000) for [h:strategy|wbuff]', '', '', '', '', '', '', '', '', '', 0), - (1198, 'action:tank assist', 1, 'tank assist [h:object|action] [c:do tank assist|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|no attackers] with relevance (60.000) for [h:strategy|tank assist]', '', '', '', '', '', '', '', '', '', 0), - (1199, 'action:shaman chain lightning', 1, 'chain lightning [h:object|action] [c:do chain lightning|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe elemental pve|aoe elemental pve]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe elemental pvp|aoe elemental pvp]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe elemental raid|aoe elemental raid]', '', '', '', '', '', '', '', '', '', 0), + (1198, 'action:tank assist', 1, 'tank assist [h:object|action] [c:do tank assist|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|tank assist] with relevance (60.000) for [h:strategy|tank assist]', '', '', '', '', '', '', '', '', '', 0), + (1199, 'action:shaman chain lightning', 1, 'chain lightning [h:object|action] [c:do chain lightning|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman chain lightning|chain lightning] with relevance (21.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe elemental pve|aoe elemental pve]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe elemental pvp|aoe elemental pvp]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe elemental raid|aoe elemental raid]', '', '', '', '', '', '', '', '', '', 0), (1200, 'action:move to position', 1, 'move to position [h:object|action] [c:do move to position|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|return to stay position] with relevance (1.500) for [h:strategy|stay]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|return to stay position] with relevance (1.500) for [h:strategy|stay]', '', '', '', '', '', '', '', '', '', 0), (1201, 'action:petition offer nearby', 1, 'petition offer nearby [h:object|action] [c:do petition offer nearby|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (4.000) for [h:strategy|guild]', '', '', '', '', '', '', '', '', '', 0), (1202, 'action:enchant random item', 1, 'enchant random item [h:object|action] [c:do enchant random item|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (1.000) for [h:strategy|maintenance]', '', '', '', '', '', '', '', '', '', 0), - (1203, 'action:shaman water breathing', 1, 'water breathing [h:object|action] [c:do water breathing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (1204, 'action:apply stone', 1, 'apply stone [h:object|action] [c:do apply stone|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff protection raid|buff protection raid]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff retribution pve|buff retribution pve]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff retribution pvp|buff retribution pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff retribution raid|buff retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1203, 'action:shaman water breathing', 1, 'water breathing [h:object|action] [c:do water breathing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nTriggers from: [h:trigger:shaman water breathing|water breathing] with relevance (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]', '', '', '', '', '', '', '', '', '', 0), + (1204, 'action:apply stone', 1, 'apply stone [h:object|action] [c:do apply stone|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff retribution pvp|buff retribution pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff retribution raid|buff retribution raid]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff retribution pve|buff retribution pve]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:paladin buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), (1205, 'action:guild manage nearby', 1, 'guild manage nearby [h:object|action] [c:do guild manage nearby|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (4.000) for [h:strategy|guild]', '', '', '', '', '', '', '', '', '', 0), (1206, 'action:disenchant random item', 1, 'disenchant random item [h:object|action] [c:do disenchant random item|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (1.000) for [h:strategy|maintenance]', '', '', '', '', '', '', '', '', '', 0), (1207, 'action:rpg buy', 1, 'rpg buy [h:object|action] [c:do rpg buy|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg buy] with relevance (1.030) for [h:strategy|rpg vendor]', '', '', '', '', '', '', '', '', '', 0), @@ -1231,7 +1231,7 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1211, 'value:generic entry quest relation map', 1, 'entry quest relation [h:object|value] [c:cdebug values entry quest relation|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1212, 'action:steam blast', 1, 'steam blast [h:object|action] [c:do steam blast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|enemy is close] with relevance (80.000) for [h:strategy|isle]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|enemy is close] with relevance (80.000) for [h:strategy|isle]', '', '', '', '', '', '', '', '', '', 0), (1213, 'value:can repair', 1, 'can repair [h:object|value] [c:cdebug values can repair|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1214, 'action:open loot', 1, 'open loot [h:object|action] [c:do open loot|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|can loot] with relevance (8.000) for [h:strategy|loot]', '', '', '', '', '', '', '', '', '', 0), + (1214, 'action:open loot', 1, 'open loot [h:object|action] [c:do open loot|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|can loot] with relevance (8.000) for [h:strategy|loot]\r\nReaction behavior:\r\nTriggers from: [h:trigger|add all loot] with relevance (100.000) for [h:strategy|chat]\r\nTriggers from: [h:trigger|add all loot] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1215, 'action:disable magmadar fight strategy', 1, 'disable magmadar fight strategy [h:object|action] [c:do disable magmadar fight strategy|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|end magmadar fight] with relevance (100.000) for [h:strategy|magmadar]\r\nDead state behavior:\r\nTriggers from: [h:trigger|end magmadar fight] with relevance (100.000) for [h:strategy|magmadar]', '', '', '', '', '', '', '', '', '', 0), (1216, 'action:smart destroy', 1, 'smart destroy [h:object|action] [c:do smart destroy|execute]\r\nThis command will make the bot destroy a certain item.\r\nUsage: destroy [itemlink]\r\n\r\nUsed actions:\r\n[h:action|destroy] \r\nUsed values:\r\n[h:value|bag space] [h:value|force item usage] \r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (1.000) for [h:strategy|maintenance]', '', '', '', '', '', '', '', '', '', 0), (1217, 'value:nearest vehicles', 1, 'nearest vehicles [h:object|value] [c:cdebug values nearest vehicles|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), @@ -1245,297 +1245,297 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1225, 'action:reveal gathering item', 1, 'reveal gathering item [h:object|action] [c:do reveal gathering item|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|often] with relevance (50.000) for [h:strategy|reveal]', '', '', '', '', '', '', '', '', '', 0), (1226, 'action:rpg repair', 1, 'rpg repair [h:object|action] [c:do rpg repair|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg repair] with relevance (1.095) for [h:strategy|rpg maintenance]', '', '', '', '', '', '', '', '', '', 0), (1227, 'value:nearest game objects', 1, 'nearest game objects no los [h:object|value] [c:cdebug values nearest game objects no los|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1228, 'action:paladin righteous fury', 1, 'righteous fury [h:object|action] [c:do righteous fury|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin righteous fury|righteous fury] with relevance (11.000) for [h:strategy:paladin buff protection raid|buff protection raid]\r\nTriggers from: [h:trigger:paladin righteous fury|righteous fury] with relevance (11.000) for [h:strategy:paladin buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:paladin righteous fury|righteous fury] with relevance (11.000) for [h:strategy:paladin buff protection pvp|buff protection pvp]', '', '', '', '', '', '', '', '', '', 0), - (1229, 'action:rpg cancel', 1, 'rpg cancel [h:object|action] [c:do rpg cancel|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg] with relevance (1.001) for [h:strategy|rpg]\r\nTriggers from: [h:trigger|rpg wander] with relevance (1.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), + (1228, 'action:paladin righteous fury', 1, 'righteous fury [h:object|action] [c:do righteous fury|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin righteous fury|righteous fury] with relevance (11.000) for [h:strategy:paladin buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:paladin righteous fury|righteous fury] with relevance (11.000) for [h:strategy:paladin buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:paladin righteous fury|righteous fury] with relevance (11.000) for [h:strategy:paladin buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (1229, 'action:rpg cancel', 1, 'rpg cancel [h:object|action] [c:do rpg cancel|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg] with relevance (1.001) for [h:strategy|rpg]\r\nTriggers from: [h:trigger|rpg wander] with relevance (1.001) for [h:strategy|rpg]\r\nTriggers from: [h:trigger|often] with relevance (0.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), (1230, 'action:move to rpg target', 1, 'move to rpg target [h:object|action] [c:do move to rpg target|execute]\r\nThis will make the bot move towards the current rpg target.\r\nWhen near the target the bot will move to a spot around the target\r\n45 degrees closest to the bot or 45 infront if the target is moving.\r\nThis action will only execute if the bot is not moving or traveling.\r\nUsed values:\r\n[h:value|rpg target] [h:value|ignore rpg target] [h:value|travel target] [h:value|can move around] \r\nNon combat behavior:\r\nTriggers from: [h:trigger|far from rpg target] with relevance (5.000) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), (1231, 'value:bag space', 1, 'bag space [h:object|value] [c:cdebug values bag space|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1232, 'action:rpg spell', 1, 'rpg spell [h:object|action] [c:do rpg spell|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg spell] with relevance (1.001) for [h:strategy|rpg craft]', '', '', '', '', '', '', '', '', '', 0), (1233, 'action:rpg start quest', 1, 'rpg start quest [h:object|action] [c:do rpg start quest|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg repeat quest] with relevance (1.030) for [h:strategy|rpg quest]\r\nTriggers from: [h:trigger|rpg start quest] with relevance (1.080) for [h:strategy|rpg quest]', '', '', '', '', '', '', '', '', '', 0), (1234, 'action:sit', 1, 'sit [h:object|action] [c:do sit|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|sit] with relevance (1.500) for [h:strategy|sit]', '', '', '', '', '', '', '', '', '', 0), - (1235, 'action:rogue cheap shot', 1, 'cheap shot [h:object|action] [c:do cheap shot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (1235, 'action:rogue cheap shot', 1, 'cheap shot [h:object|action] [c:do cheap shot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (11.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (1236, 'action:priest vampiric touch', 1, 'vampiric touch [h:object|action] [c:do vampiric touch|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest vampiric touch|vampiric touch] with relevance (11.000) for [h:strategy:priest shadow debuff|shadow debuff]\r\nTriggers from: [h:trigger:priest vampiric touch|vampiric touch] with relevance (11.000) for [h:strategy:priest shadow debuff|shadow debuff]', '', '', '', '', '', '', '', '', '', 0), - (1237, 'action:priest power infusion', 1, 'power infusion [h:object|action] [c:do power infusion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest power infusion|power infusion] with relevance (41.000) for [h:strategy:priest boost|boost]', '', '', '', '', '', '', '', '', '', 0), - (1238, 'action:priest shadow word: pain on attacker', 1, 'shadow word: pain on attacker [h:object|action] [c:do shadow word: pain on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] with relevance (11.000) for [h:strategy:priest shadow aoe|shadow aoe]\r\nTriggers from: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] with relevance (11.000) for [h:strategy:priest shadow aoe|shadow aoe]', '', '', '', '', '', '', '', '', '', 0), - (1239, 'action:mage frost ward', 1, 'frost ward [h:object|action] [c:do frost ward|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1240, 'action:priest feedback', 1, 'feedback [h:object|action] [c:do feedback|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest feedback|feedback] with relevance (80.000) for [h:strategy:priest shadow debuff|shadow debuff]\r\nTriggers from: [h:trigger:priest feedback|feedback] with relevance (80.000) for [h:strategy:priest shadow debuff|shadow debuff]', '', '', '', '', '', '', '', '', '', 0), - (1241, 'action:priest hex of weakness', 1, 'hex of weakness [h:object|action] [c:do hex of weakness|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest hex of weakness|hex of weakness] with relevance (10.000) for [h:strategy:priest shadow debuff|shadow debuff]\r\nTriggers from: [h:trigger:priest hex of weakness|hex of weakness] with relevance (10.000) for [h:strategy:priest shadow debuff|shadow debuff]', '', '', '', '', '', '', '', '', '', 0), - (1242, 'action:priest prayer of fortitude on party', 1, 'prayer of fortitude on party [h:object|action] [c:do prayer of fortitude on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] with relevance (12.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), + (1237, 'action:priest power infusion', 1, 'power infusion [h:object|action] [c:do power infusion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest power infusion|power infusion] with relevance (20.000) for [h:strategy:priest boost discipline pve|boost discipline pve]\r\nTriggers from: [h:trigger:priest power infusion|power infusion] with relevance (20.000) for [h:strategy:priest boost discipline pvp|boost discipline pvp]\r\nTriggers from: [h:trigger:priest power infusion|power infusion] with relevance (20.000) for [h:strategy:priest boost discipline raid|boost discipline raid]\r\nTriggers from: [h:trigger:priest power infusion|power infusion] with relevance (20.000) for [h:strategy:priest boost holy pve|boost holy pve]\r\nTriggers from: [h:trigger:priest power infusion|power infusion] with relevance (20.000) for [h:strategy:priest boost holy pvp|boost holy pvp]\r\nTriggers from: [h:trigger:priest power infusion|power infusion] with relevance (20.000) for [h:strategy:priest boost holy raid|boost holy raid]\r\nTriggers from: [h:trigger:priest power infusion|power infusion] with relevance (20.000) for [h:strategy:priest boost shadow pve|boost shadow pve]\r\nTriggers from: [h:trigger:priest power infusion|power infusion] with relevance (20.000) for [h:strategy:priest boost shadow pvp|boost shadow pvp]\r\nTriggers from: [h:trigger:priest power infusion|power infusion] with relevance (20.000) for [h:strategy:priest boost shadow raid|boost shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1238, 'action:priest shadow word: pain on attacker', 1, 'shadow word: pain on attacker [h:object|action] [c:do shadow word: pain on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] with relevance (21.000) for [h:strategy:priest offdps pve|offdps pve]\r\nTriggers from: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] with relevance (21.000) for [h:strategy:priest aoe shadow pve|aoe shadow pve]\r\nTriggers from: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] with relevance (21.000) for [h:strategy:priest aoe shadow pvp|aoe shadow pvp]\r\nTriggers from: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] with relevance (21.000) for [h:strategy:priest aoe shadow raid|aoe shadow raid]\r\nTriggers from: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] with relevance (21.000) for [h:strategy:priest offdps pvp|offdps pvp]\r\nTriggers from: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] with relevance (21.000) for [h:strategy:priest offdps raid|offdps raid]', '', '', '', '', '', '', '', '', '', 0), + (1239, 'action:mage frost ward', 1, 'frost ward [h:object|action] [c:do frost ward|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage frost ward|frost ward] with relevance (20.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0); +INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `template_text`, `text`, `text_loc1`, `text_loc2`, `text_loc3`, `text_loc4`, `text_loc5`, `text_loc6`, `text_loc7`, `text_loc8`, `locs_updated`) VALUES + (1240, 'action:priest feedback', 1, 'feedback [h:object|action] [c:do feedback|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest feedback|feedback] with relevance (20.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest feedback|feedback] with relevance (20.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest feedback|feedback] with relevance (20.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1241, 'action:priest hex of weakness', 1, 'hex of weakness [h:object|action] [c:do hex of weakness|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest hex of weakness|hex of weakness] with relevance (12.000) for [h:strategy:priest shadow pve|shadow pve]\r\nTriggers from: [h:trigger:priest hex of weakness|hex of weakness] with relevance (12.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nTriggers from: [h:trigger:priest hex of weakness|hex of weakness] with relevance (12.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1242, 'action:priest prayer of fortitude on party', 1, 'prayer of fortitude on party [h:object|action] [c:do prayer of fortitude on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] with relevance (13.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] with relevance (13.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] with relevance (13.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] with relevance (13.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] with relevance (13.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] with relevance (13.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] with relevance (13.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] with relevance (13.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] with relevance (13.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (1243, 'value:rpg target', 1, 'rpg target [h:object|value] [c:cdebug values rpg target|current value]\r\nThis value contains the [h:object|objectGuid] of a [h:object|unit] or [h:object|gameObject] to move to and rpg with.\r\nThis value is manually set.\r\nUsed in triggers:\r\n[h:trigger|far from rpg target] \r\nUsed in actions:\r\n[h:action|move to rpg target] ', '', '', '', '', '', '', '', '', '', 0), - (1244, 'action:priest power word: fortitude on party', 1, 'power word: fortitude on party [h:object|action] [c:do power word: fortitude on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] with relevance (11.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), - (1245, 'action:priest prayer of spirit on party', 1, 'prayer of spirit on party [h:object|action] [c:do prayer of spirit on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] with relevance (14.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), + (1244, 'action:priest power word: fortitude on party', 1, 'power word: fortitude on party [h:object|action] [c:do power word: fortitude on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] with relevance (12.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] with relevance (12.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] with relevance (12.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] with relevance (12.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] with relevance (12.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] with relevance (12.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] with relevance (12.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] with relevance (12.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] with relevance (12.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1245, 'action:priest prayer of spirit on party', 1, 'prayer of spirit on party [h:object|action] [c:do prayer of spirit on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] with relevance (13.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] with relevance (13.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] with relevance (13.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] with relevance (13.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] with relevance (13.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] with relevance (13.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] with relevance (13.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] with relevance (13.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] with relevance (13.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (1246, 'value:can fight boss', 1, 'can fight boss [h:object|value] [c:cdebug values can fight boss|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1247, 'action:priest divine spirit on party', 1, 'divine spirit on party [h:object|action] [c:do divine spirit on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest divine spirit on party|divine spirit on party] with relevance (13.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), - (1248, 'action:priest touch of weakness', 1, 'touch of weakness [h:object|action] [c:do touch of weakness|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest touch of weakness|touch of weakness] with relevance (10.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), - (1249, 'action:priest shadowguard', 1, 'shadowguard [h:object|action] [c:do shadowguard|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest shadowguard|shadowguard] with relevance (10.000) for [h:strategy:priest buff|buff]', '', '', '', '', '', '', '', '', '', 0), + (1247, 'action:priest divine spirit on party', 1, 'divine spirit on party [h:object|action] [c:do divine spirit on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest divine spirit on party|divine spirit on party] with relevance (12.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest divine spirit on party|divine spirit on party] with relevance (12.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest divine spirit on party|divine spirit on party] with relevance (12.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest divine spirit on party|divine spirit on party] with relevance (12.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest divine spirit on party|divine spirit on party] with relevance (12.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest divine spirit on party|divine spirit on party] with relevance (12.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest divine spirit on party|divine spirit on party] with relevance (12.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest divine spirit on party|divine spirit on party] with relevance (12.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest divine spirit on party|divine spirit on party] with relevance (12.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1248, 'action:priest touch of weakness', 1, 'touch of weakness [h:object|action] [c:do touch of weakness|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest touch of weakness|touch of weakness] with relevance (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest touch of weakness|touch of weakness] with relevance (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest touch of weakness|touch of weakness] with relevance (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest touch of weakness|touch of weakness] with relevance (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest touch of weakness|touch of weakness] with relevance (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest touch of weakness|touch of weakness] with relevance (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest touch of weakness|touch of weakness] with relevance (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest touch of weakness|touch of weakness] with relevance (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest touch of weakness|touch of weakness] with relevance (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1249, 'action:priest shadowguard', 1, 'shadowguard [h:object|action] [c:do shadowguard|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest shadowguard|shadowguard] with relevance (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest shadowguard|shadowguard] with relevance (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest shadowguard|shadowguard] with relevance (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest shadowguard|shadowguard] with relevance (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest shadowguard|shadowguard] with relevance (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest shadowguard|shadowguard] with relevance (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest shadowguard|shadowguard] with relevance (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest shadowguard|shadowguard] with relevance (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest shadowguard|shadowguard] with relevance (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (1250, 'action:priest shadow word: death', 1, 'shadow word: death [h:object|action] [c:do shadow word: death|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest target low health|target low health] with relevance (41.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:priest target low health|target low health] with relevance (41.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (1251, 'action:priest greater heal', 1, 'greater heal [h:object|action] [c:do greater heal|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (60.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (25.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:low health|low health] with relevance (60.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (25.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:low health|low health] with relevance (60.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (25.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:low health|low health] with relevance (60.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (25.000) for [h:strategy:priest shadow|shadow]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (70.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (1251, 'action:priest greater heal', 1, 'greater heal [h:object|action] [c:do greater heal|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:priest discipline pvp|discipline pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:priest holy pve|holy pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:priest discipline pve|discipline pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:priest holy pvp|holy pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:priest shadow pve|shadow pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), (1252, 'action:priest chastise on snare target', 1, 'chastise on snare target [h:object|action] [c:do chastise on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest chastise on snare target|chastise on snare target] with relevance (40.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:priest chastise on snare target|chastise on snare target] with relevance (40.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:priest chastise on snare target|chastise on snare target] with relevance (40.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:priest chastise on snare target|chastise on snare target] with relevance (40.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (1253, 'action:priest fade', 1, 'fade [h:object|action] [c:do fade|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (55.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (55.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (55.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (55.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (1253, 'action:priest fade', 1, 'fade [h:object|action] [c:do fade|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (50.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (50.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (50.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), (1254, 'action:priest remove shadowform', 1, 'remove shadowform [h:object|action] [c:do remove shadowform|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (72.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (62.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (72.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (62.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (72.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (62.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (72.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (62.000) for [h:strategy:priest shadow|shadow]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (51.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), (1255, 'value:experience', 1, 'experience [h:object|value] [c:cdebug values experience|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1256, 'action:priest flash heal', 1, 'flash heal [h:object|action] [c:do flash heal|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (70.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (70.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (70.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (70.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (1257, 'action:priest desperate prayer', 1, 'desperate prayer [h:object|action] [c:do desperate prayer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (1256, 'action:priest flash heal', 1, 'flash heal [h:object|action] [c:do flash heal|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:priest discipline pvp|discipline pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:priest holy pve|holy pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:priest discipline pve|discipline pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:priest holy pvp|holy pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:priest shadow pve|shadow pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1257, 'action:priest desperate prayer', 1, 'desperate prayer [h:object|action] [c:do desperate prayer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest discipline pvp|discipline pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest holy pve|holy pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest discipline pve|discipline pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest holy pvp|holy pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest shadow pve|shadow pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), (1258, 'action:priest pain suppression', 1, 'pain suppression [h:object|action] [c:do pain suppression|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (1259, 'action:priest power word: shield on party', 1, 'power word: shield on party [h:object|action] [c:do power word: shield on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (61.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (51.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (61.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (61.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (51.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (61.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (1260, 'action:priest psychic scream', 1, 'psychic scream [h:object|action] [c:do psychic scream|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (50.000) for [h:strategy:priest cc|cc]', '', '', '', '', '', '', '', '', '', 0), + (1259, 'action:priest power word: shield on party', 1, 'power word: shield on party [h:object|action] [c:do power word: shield on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (72.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:priest discipline pvp|discipline pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (72.000) for [h:strategy:priest discipline pvp|discipline pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:priest holy pve|holy pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (72.000) for [h:strategy:priest holy pve|holy pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:priest discipline pve|discipline pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (72.000) for [h:strategy:priest discipline pve|discipline pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:priest holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (72.000) for [h:strategy:priest holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (72.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:priest offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:priest offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:priest offheal raid|offheal raid]', '', '', '', '', '', '', '', '', '', 0), + (1260, 'action:priest psychic scream', 1, 'psychic scream [h:object|action] [c:do psychic scream|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (40.000) for [h:strategy:priest cc discipline pvp|cc discipline pvp]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (40.000) for [h:strategy:priest cc shadow raid|cc shadow raid]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (40.000) for [h:strategy:priest cc discipline raid|cc discipline raid]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (40.000) for [h:strategy:priest cc discipline pve|cc discipline pve]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (40.000) for [h:strategy:priest cc holy pve|cc holy pve]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (40.000) for [h:strategy:priest cc holy pvp|cc holy pvp]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (40.000) for [h:strategy:priest cc holy raid|cc holy raid]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (40.000) for [h:strategy:priest cc shadow pve|cc shadow pve]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (40.000) for [h:strategy:priest cc shadow pvp|cc shadow pvp]', '', '', '', '', '', '', '', '', '', 0), (1261, 'action:priest mana burn', 1, 'mana burn [h:object|action] [c:do mana burn|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (20.000) for [h:strategy:priest holy|holy]\r\nDefault action with relevance (9.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), (1262, 'value:possible targets', 1, 'possible targets no los [h:object|value] [c:cdebug values possible targets no los|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1263, 'action:priest symbol of hope', 1, 'symbol of hope [h:object|action] [c:do symbol of hope|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (90.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (90.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (90.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (90.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), (1264, 'action:reach spell', 1, 'reach spell [h:object|action] [c:do reach spell|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid enemy out of spell range|enemy out of spell range] with relevance (30.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), - (1265, 'action:priest vampiric embrace', 1, 'vampiric embrace [h:object|action] [c:do vampiric embrace|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest vampiric embrace|vampiric embrace] with relevance (16.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:priest vampiric embrace|vampiric embrace] with relevance (16.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (1266, 'action:priest silence', 1, 'silence [h:object|action] [c:do silence|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest silence|silence] with relevance (41.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:priest silence|silence] with relevance (41.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (1267, 'action:priest dispel magic', 1, 'dispel magic [h:object|action] [c:do dispel magic|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure|cure]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure|cure]', '', '', '', '', '', '', '', '', '', 0), - (1268, 'action:priest dispel magic on party', 1, 'dispel magic on party [h:object|action] [c:do dispel magic on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure|cure]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure|cure]', '', '', '', '', '', '', '', '', '', 0), + (1265, 'action:priest vampiric embrace', 1, 'vampiric embrace [h:object|action] [c:do vampiric embrace|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest vampiric embrace|vampiric embrace] with relevance (13.000) for [h:strategy:priest shadow pve|shadow pve]\r\nTriggers from: [h:trigger:priest vampiric embrace|vampiric embrace] with relevance (13.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nTriggers from: [h:trigger:priest vampiric embrace|vampiric embrace] with relevance (13.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1266, 'action:priest silence', 1, 'silence [h:object|action] [c:do silence|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest silence|silence] with relevance (41.000) for [h:strategy:priest cc shadow raid|cc shadow raid]\r\nTriggers from: [h:trigger:priest silence|silence] with relevance (41.000) for [h:strategy:priest cc shadow pve|cc shadow pve]\r\nTriggers from: [h:trigger:priest silence|silence] with relevance (41.000) for [h:strategy:priest cc shadow pvp|cc shadow pvp]', '', '', '', '', '', '', '', '', '', 0), + (1267, 'action:priest dispel magic', 1, 'dispel magic [h:object|action] [c:do dispel magic|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure shadow pve|cure shadow pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (53.000) for [h:strategy:priest cure shadow pve|cure shadow pve]', '', '', '', '', '', '', '', '', '', 0), + (1268, 'action:priest dispel magic on party', 1, 'dispel magic on party [h:object|action] [c:do dispel magic on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure shadow pve|cure shadow pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure discipline pve|cure discipline pve]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure discipline pvp|cure discipline pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure shadow raid|cure shadow raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure discipline raid|cure discipline raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\nTriggers from: [h:trigger:priest dispel magic|dispel magic] with relevance (52.000) for [h:strategy:priest cure shadow pve|cure shadow pve]', '', '', '', '', '', '', '', '', '', 0), (1269, 'action:priest renew', 1, 'renew [h:object|action] [c:do renew|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (43.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (43.000) for [h:strategy:priest holy|holy]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (41.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), (1270, 'action:priest heal on party', 1, 'heal on party [h:object|action] [c:do heal on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (41.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (41.000) for [h:strategy:priest holy|holy]', '', '', '', '', '', '', '', '', '', 0), - (1271, 'action:priest renew on party', 1, 'renew on party [h:object|action] [c:do renew on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (40.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (40.000) for [h:strategy:priest holy|holy]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (40.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1272, 'action:priest greater heal on party', 1, 'greater heal on party [h:object|action] [c:do greater heal on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (50.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (47.000) for [h:strategy:priest heal|heal]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (50.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (47.000) for [h:strategy:priest holy|holy]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (60.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1273, 'action:priest power word: fortitude', 1, 'power word: fortitude [h:object|action] [c:do power word: fortitude|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest power word: fortitude|power word: fortitude] with relevance (12.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (1271, 'action:priest renew on party', 1, 'renew on party [h:object|action] [c:do renew on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:priest discipline pvp|discipline pvp]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:priest holy pve|holy pve]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:priest discipline pve|discipline pve]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:priest holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (60.000) for [h:strategy:priest offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (60.000) for [h:strategy:priest offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (60.000) for [h:strategy:priest offheal raid|offheal raid]', '', '', '', '', '', '', '', '', '', 0), + (1272, 'action:priest greater heal on party', 1, 'greater heal on party [h:object|action] [c:do greater heal on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:priest discipline pvp|discipline pvp]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:priest discipline pvp|discipline pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:priest holy pve|holy pve]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:priest holy pve|holy pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:priest discipline pve|discipline pve]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:priest discipline pve|discipline pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:priest holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:priest holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (71.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:priest offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:priest offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:priest offheal raid|offheal raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:priest offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:priest offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:priest offheal raid|offheal raid]', '', '', '', '', '', '', '', '', '', 0), + (1273, 'action:priest power word: fortitude', 1, 'power word: fortitude [h:object|action] [c:do power word: fortitude|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest power word: fortitude|power word: fortitude] with relevance (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest power word: fortitude|power word: fortitude] with relevance (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest power word: fortitude|power word: fortitude] with relevance (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest power word: fortitude|power word: fortitude] with relevance (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest power word: fortitude|power word: fortitude] with relevance (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest power word: fortitude|power word: fortitude] with relevance (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest power word: fortitude|power word: fortitude] with relevance (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest power word: fortitude|power word: fortitude] with relevance (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest power word: fortitude|power word: fortitude] with relevance (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), (1274, 'value:near leader', 1, 'near leader [h:object|value] [c:cdebug values near leader|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1275, 'action:priest resurrection', 1, 'resurrection [h:object|action] [c:do resurrection|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (50.000) for [h:strategy:priest nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1276, 'action:apply oil', 1, 'apply oil [h:object|action] [c:do apply oil|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:often|often] with relevance (1.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1277, 'action:pull end', 1, 'pull end [h:object|action] [c:do pull end|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:pull end|pull end] with relevance (60.000) for [h:strategy:druid pull|pull]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:pull end|pull end] with relevance (60.000) for [h:strategy:druid pull|pull]', '', '', '', '', '', '', '', '', '', 0), - (1278, 'action:set combat state', 1, 'set combat state [h:object|action] [c:do set combat state|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid react|react]', '', '', '', '', '', '', '', '', '', 0), - (1279, 'action:priest shadow protection', 1, 'shadow protection [h:object|action] [c:do shadow protection|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest shadow protection|shadow protection] with relevance (14.000) for [h:strategy:priest rshadow|rshadow]', '', '', '', '', '', '', '', '', '', 0), - (1280, 'action:priest shadow protection on party', 1, 'shadow protection on party [h:object|action] [c:do shadow protection on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest shadow protection on party|shadow protection on party] with relevance (12.000) for [h:strategy:priest rshadow|rshadow]', '', '', '', '', '', '', '', '', '', 0), - (1281, 'action:mage flamestrike', 1, 'flamestrike [h:object|action] [c:do flamestrike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe fire pve|aoe fire pve]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe fire raid|aoe fire raid]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (20.000) for [h:strategy:mage aoe frost pve|aoe frost pve]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (20.000) for [h:strategy:mage aoe frost pvp|aoe frost pvp]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (20.000) for [h:strategy:mage aoe frost raid|aoe frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1282, 'action:priest prayer of shadow protection on party', 1, 'prayer of shadow protection on party [h:object|action] [c:do prayer of shadow protection on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] with relevance (13.000) for [h:strategy:priest rshadow|rshadow]', '', '', '', '', '', '', '', '', '', 0), - (1283, 'action:warrior demoralizing shout', 1, 'demoralizing shout [h:object|action] [c:do demoralizing shout|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (20.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), + (1275, 'action:priest resurrection', 1, 'resurrection [h:object|action] [c:do resurrection|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:priest discipline raid|discipline raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:priest discipline pvp|discipline pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:priest holy pve|holy pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:priest discipline pve|discipline pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:priest holy pvp|holy pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:priest holy raid|holy raid]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:priest shadow pve|shadow pve]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (90.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1276, 'action:apply oil', 1, 'apply oil [h:object|action] [c:do apply oil|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nTriggers from: [h:trigger:often|often] with relevance (10.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1277, 'action:pull end', 1, 'pull end [h:object|action] [c:do pull end|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:pull end|pull end] with relevance (30.000) for [h:strategy:druid pull|pull]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:pull end|pull end] with relevance (30.000) for [h:strategy:druid pull|pull]', '', '', '', '', '', '', '', '', '', 0), + (1278, 'action:set combat state', 1, 'set combat state [h:object|action] [c:do set combat state|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:combat start|combat start] with relevance (110.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1279, 'action:priest shadow protection', 1, 'shadow protection [h:object|action] [c:do shadow protection|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest shadow protection|shadow protection] with relevance (11.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest shadow protection|shadow protection] with relevance (11.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest shadow protection|shadow protection] with relevance (11.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest shadow protection|shadow protection] with relevance (11.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest shadow protection|shadow protection] with relevance (11.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest shadow protection|shadow protection] with relevance (11.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest shadow protection|shadow protection] with relevance (11.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest shadow protection|shadow protection] with relevance (11.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest shadow protection|shadow protection] with relevance (11.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1280, 'action:priest shadow protection on party', 1, 'shadow protection on party [h:object|action] [c:do shadow protection on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest shadow protection on party|shadow protection on party] with relevance (12.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest shadow protection on party|shadow protection on party] with relevance (12.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest shadow protection on party|shadow protection on party] with relevance (12.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest shadow protection on party|shadow protection on party] with relevance (12.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest shadow protection on party|shadow protection on party] with relevance (12.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest shadow protection on party|shadow protection on party] with relevance (12.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest shadow protection on party|shadow protection on party] with relevance (12.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest shadow protection on party|shadow protection on party] with relevance (12.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest shadow protection on party|shadow protection on party] with relevance (12.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1281, 'action:mage flamestrike', 1, 'flamestrike [h:object|action] [c:do flamestrike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (20.000) for [h:strategy:mage aoe frost pve|aoe frost pve]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe fire raid|aoe fire raid]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe fire pve|aoe fire pve]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (20.000) for [h:strategy:mage aoe frost pvp|aoe frost pvp]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (20.000) for [h:strategy:mage aoe frost raid|aoe frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1282, 'action:priest prayer of shadow protection on party', 1, 'prayer of shadow protection on party [h:object|action] [c:do prayer of shadow protection on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] with relevance (13.000) for [h:strategy:priest buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] with relevance (13.000) for [h:strategy:priest buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] with relevance (13.000) for [h:strategy:priest buff discipline pve|buff discipline pve]\r\nTriggers from: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] with relevance (13.000) for [h:strategy:priest buff discipline raid|buff discipline raid]\r\nTriggers from: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] with relevance (13.000) for [h:strategy:priest buff discipline pvp|buff discipline pvp]\r\nTriggers from: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] with relevance (13.000) for [h:strategy:priest buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] with relevance (13.000) for [h:strategy:priest buff shadow pve|buff shadow pve]\r\nTriggers from: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] with relevance (13.000) for [h:strategy:priest buff shadow pvp|buff shadow pvp]\r\nTriggers from: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] with relevance (13.000) for [h:strategy:priest buff shadow raid|buff shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (1283, 'action:warrior demoralizing shout', 1, 'demoralizing shout [h:object|action] [c:do demoralizing shout|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior demoralizing shout|demoralizing shout] with relevance (24.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior demoralizing shout|demoralizing shout] with relevance (24.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior demoralizing shout|demoralizing shout] with relevance (24.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), (1284, 'action:warrior shockwave on snare target', 1, 'shockwave on snare target [h:object|action] [c:do shockwave on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior shockwave on snare target|shockwave on snare target] with relevance (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:warrior shockwave on snare target|shockwave on snare target] with relevance (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:warrior shockwave on snare target|shockwave on snare target] with relevance (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1285, 'action:warrior battle stance', 1, 'battle stance [h:object|action] [c:do battle stance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (30.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (30.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (30.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1286, 'action:warrior overpower', 1, 'overpower [h:object|action] [c:do overpower|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior overpower|overpower] with relevance (20.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior taste for blood|taste for blood] with relevance (20.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior overpower|overpower] with relevance (20.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior taste for blood|taste for blood] with relevance (20.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior overpower|overpower] with relevance (20.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:warrior taste for blood|taste for blood] with relevance (20.000) for [h:strategy:warrior arms raid|arms raid]', '', '', '', '', '', '', '', '', '', 0), - (1287, 'action:warrior charge', 1, 'charge [h:object|action] [c:do charge|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior fury raid|fury raid]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (37.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (37.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (37.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1288, 'action:warrior battle shout', 1, 'battle shout [h:object|action] [c:do battle shout|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (1285, 'action:warrior battle stance', 1, 'battle stance [h:object|action] [c:do battle stance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (30.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (30.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (30.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:warrior battle stance|battle stance] with relevance (10.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (1286, 'action:warrior overpower', 1, 'overpower [h:object|action] [c:do overpower|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior overpower|overpower] with relevance (20.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior overpower|overpower] with relevance (20.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior overpower|overpower] with relevance (20.000) for [h:strategy:warrior arms raid|arms raid]', '', '', '', '', '', '', '', '', '', 0), + (1287, 'action:warrior charge', 1, 'charge [h:object|action] [c:do charge|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (37.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (37.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (37.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (30.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), + (1288, 'action:warrior battle shout', 1, 'battle shout [h:object|action] [c:do battle shout|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:warrior battle shout|battle shout] with relevance (21.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), (1289, 'value:mounted', 1, 'mounted [h:object|value] [c:cdebug values mounted|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1290, 'action:warrior mortal strike', 1, 'mortal strike [h:object|action] [c:do mortal strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior mortal strike|mortal strike] with relevance (11.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior mortal strike|mortal strike] with relevance (11.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior mortal strike|mortal strike] with relevance (11.000) for [h:strategy:warrior arms raid|arms raid]', '', '', '', '', '', '', '', '', '', 0), - (1291, 'action:warrior execute', 1, 'execute [h:object|action] [c:do execute|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (14.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior sudden death|sudden death] with relevance (21.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (22.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior sudden death|sudden death] with relevance (21.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (22.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior sudden death|sudden death] with relevance (21.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (22.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (14.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (14.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), - (1292, 'action:warrior piercing howl', 1, 'piercing howl [h:object|action] [c:do piercing howl|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc fury raid|cc fury raid]\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc fury pve|cc fury pve]\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc arms pve|cc arms pve]\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc arms pvp|cc arms pvp]\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc arms raid|cc arms raid]', '', '', '', '', '', '', '', '', '', 0), - (1293, 'action:warrior bloodrage', 1, 'bloodrage [h:object|action] [c:do bloodrage|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1294, 'action:warrior intimidating shout', 1, 'intimidating shout [h:object|action] [c:do intimidating shout|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), - (1295, 'action:warrior berserker stance', 1, 'berserker stance [h:object|action] [c:do berserker stance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior berserker stance|berserker stance] with relevance (30.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:warrior berserker stance|berserker stance] with relevance (30.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:warrior berserker stance|berserker stance] with relevance (30.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (36.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (36.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (36.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1296, 'action:warrior pummel', 1, 'pummel [h:object|action] [c:do pummel|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior pummel|pummel] with relevance (40.000) for [h:strategy:warrior cc fury raid|cc fury raid]\r\nTriggers from: [h:trigger:warrior pummel|pummel] with relevance (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nTriggers from: [h:trigger:warrior pummel|pummel] with relevance (40.000) for [h:strategy:warrior cc fury pve|cc fury pve]', '', '', '', '', '', '', '', '', '', 0), - (1297, 'value:item usage', 1, 'item usage [h:object|value] [c:cdebug values item usage|current value]\r\nThis value gives the reason why a bot finds an item useful.\r\nBased on this value bots will equip/unequip/need/greed/loot/destroy/sell/ah/craft items.\r\nUsed values:\r\n[h:value|bag space] [h:value|force item usage] [h:value|inventory items] [h:value|item count] \r\nUsed in actions:\r\n[h:action|auto loot roll] [h:action|ah bid] [h:action|ah] [h:action|roll] [h:action|buy] [h:action|sell] [h:action|loot roll] ', '', '', '', '', '', '', '', '', '', 0), + (1291, 'action:warrior execute', 1, 'execute [h:object|action] [c:do execute|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (22.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (22.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (22.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (14.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (14.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior target low health|target low health] with relevance (14.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), + (1292, 'action:warrior piercing howl', 1, 'piercing howl [h:object|action] [c:do piercing howl|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc arms pvp|cc arms pvp]\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc arms pve|cc arms pve]\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc arms raid|cc arms raid]\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc fury pve|cc fury pve]\r\nTriggers from: [h:trigger:warrior hamstring on snare target|hamstring on snare target] with relevance (20.000) for [h:strategy:warrior cc fury raid|cc fury raid]', '', '', '', '', '', '', '', '', '', 0), + (1293, 'action:warrior bloodrage', 1, 'bloodrage [h:object|action] [c:do bloodrage|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:warrior bloodrage|bloodrage] with relevance (20.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (1294, 'action:warrior intimidating shout', 1, 'intimidating shout [h:object|action] [c:do intimidating shout|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior arms pve|arms pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior arms raid|arms raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), + (1295, 'action:warrior berserker stance', 1, 'berserker stance [h:object|action] [c:do berserker stance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (36.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (36.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior berserker stance|berserker stance] with relevance (30.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:warrior berserker stance|berserker stance] with relevance (30.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:warrior berserker stance|berserker stance] with relevance (30.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] with relevance (36.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (1296, 'action:warrior pummel', 1, 'pummel [h:object|action] [c:do pummel|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior pummel|pummel] with relevance (40.000) for [h:strategy:warrior cc fury pvp|cc fury pvp]\r\nTriggers from: [h:trigger:warrior pummel|pummel] with relevance (40.000) for [h:strategy:warrior cc fury pve|cc fury pve]\r\nTriggers from: [h:trigger:warrior pummel|pummel] with relevance (40.000) for [h:strategy:warrior cc fury raid|cc fury raid]', '', '', '', '', '', '', '', '', '', 0), + (1297, 'value:item usage', 1, 'item usage [h:object|value] [c:cdebug values item usage|current value]\r\nThis value gives the reason why a bot finds an item useful.\r\nBased on this value bots will equip/unequip/need/greed/loot/destroy/sell/ah/craft items.\r\nUsed values:\r\n[h:value|bag space] [h:value|force item usage] [h:value|inventory items] [h:value|item count] \r\nUsed in actions:\r\n[h:action|ah] [h:action|ah bid] [h:action|roll] [h:action|buy] [h:action|sell] [h:action|loot roll] [h:action|auto loot roll] ', '', '', '', '', '', '', '', '', '', 0), (1298, 'action:warrior slam', 1, 'slam [h:object|action] [c:do slam|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior slam!|slam!] with relevance (21.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nTriggers from: [h:trigger:warrior slam!|slam!] with relevance (21.000) for [h:strategy:warrior fury pve|fury pve]\r\nTriggers from: [h:trigger:warrior slam!|slam!] with relevance (21.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), - (1299, 'action:warrior berserker rage', 1, 'berserker rage [h:object|action] [c:do berserker rage|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (90.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nTriggers from: [h:trigger:feared|feared] with relevance (90.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (90.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:feared|feared] with relevance (90.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (90.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:feared|feared] with relevance (90.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (90.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:feared|feared] with relevance (90.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (90.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nTriggers from: [h:trigger:feared|feared] with relevance (90.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (90.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nTriggers from: [h:trigger:feared|feared] with relevance (90.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (90.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:feared|feared] with relevance (90.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (90.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:feared|feared] with relevance (90.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (90.000) for [h:strategy:warrior buff protection raid|buff protection raid]\r\nTriggers from: [h:trigger:feared|feared] with relevance (90.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (1299, 'action:warrior berserker rage', 1, 'berserker rage [h:object|action] [c:do berserker rage|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:target of fear cast|target of fear cast] with relevance (40.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nTriggers from: [h:trigger:target of fear cast|target of fear cast] with relevance (40.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (40.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nTriggers from: [h:trigger:target of fear cast|target of fear cast] with relevance (40.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:target of fear cast|target of fear cast] with relevance (40.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nTriggers from: [h:trigger:target of fear cast|target of fear cast] with relevance (40.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nTriggers from: [h:trigger:target of fear cast|target of fear cast] with relevance (40.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (40.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nTriggers from: [h:trigger:target of fear cast|target of fear cast] with relevance (40.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:stunned|stunned] with relevance (40.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nTriggers from: [h:trigger:target of fear cast|target of fear cast] with relevance (40.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:target of fear cast|target of fear cast] with relevance (40.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), (1300, 'action:warrior rampage', 1, 'rampage [h:object|action] [c:do rampage|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior rampage|rampage] with relevance (41.000) for [h:strategy:warrior fury|fury]', '', '', '', '', '', '', '', '', '', 0), - (1301, 'action:oil of immolation', 1, 'oil of immolation [h:object|action] [c:do oil of immolation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement raid|aoe enhancement raid]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement pve|aoe enhancement pve]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement pvp|aoe enhancement pvp]', '', '', '', '', '', '', '', '', '', 0), + (1301, 'action:oil of immolation', 1, 'oil of immolation [h:object|action] [c:do oil of immolation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement pvp|aoe enhancement pvp]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement raid|aoe enhancement raid]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement pve|aoe enhancement pve]', '', '', '', '', '', '', '', '', '', 0), (1302, 'action:shaman cleanse spirit poison on party', 1, 'cleanse spirit poison on party [h:object|action] [c:do cleanse spirit poison on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]', '', '', '', '', '', '', '', '', '', 0), - (1303, 'action:hunter hunter\'s mark', 1, 'hunter\'s mark [h:object|action] [c:do hunter\'s mark|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter hunter\'s mark|hunter\'s mark] with relevance (13.000) for [h:strategy:hunter dps debuff|dps debuff]', '', '', '', '', '', '', '', '', '', 0), - (1304, 'action:warrior shield wall', 1, 'shield wall [h:object|action] [c:do shield wall|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1305, 'action:warrior heroic throw', 1, 'heroic throw [h:object|action] [c:do heroic throw|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (38.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (38.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (38.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (1303, 'action:hunter hunter\'s mark', 1, 'hunter\'s mark [h:object|action] [c:do hunter\'s mark|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter hunter\'s mark|hunter\'s mark] with relevance (16.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nTriggers from: [h:trigger:hunter hunter\'s mark|hunter\'s mark] with relevance (16.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nTriggers from: [h:trigger:hunter hunter\'s mark|hunter\'s mark] with relevance (16.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nTriggers from: [h:trigger:hunter hunter\'s mark|hunter\'s mark] with relevance (16.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nTriggers from: [h:trigger:hunter hunter\'s mark|hunter\'s mark] with relevance (16.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nTriggers from: [h:trigger:hunter hunter\'s mark|hunter\'s mark] with relevance (16.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nTriggers from: [h:trigger:hunter hunter\'s mark|hunter\'s mark] with relevance (16.000) for [h:strategy:hunter survival pve|survival pve]\r\nTriggers from: [h:trigger:hunter hunter\'s mark|hunter\'s mark] with relevance (16.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nTriggers from: [h:trigger:hunter hunter\'s mark|hunter\'s mark] with relevance (16.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), + (1304, 'action:warrior shield wall', 1, 'shield wall [h:object|action] [c:do shield wall|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (1305, 'action:warrior heroic throw', 1, 'heroic throw [h:object|action] [c:do heroic throw|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (38.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (38.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior enemy out of melee range|enemy out of melee range] with relevance (38.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), (1306, 'action:warrior commanding shout', 1, 'commanding shout [h:object|action] [c:do commanding shout|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior commanding shout|commanding shout] with relevance (20.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:warrior commanding shout|commanding shout] with relevance (20.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:warrior commanding shout|commanding shout] with relevance (20.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1307, 'action:warrior devastate', 1, 'devastate [h:object|action] [c:do devastate|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior sunder armor|sunder armor] with relevance (13.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior sunder armor|sunder armor] with relevance (13.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior sunder armor|sunder armor] with relevance (13.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1308, 'action:warrior shield block', 1, 'shield block [h:object|action] [c:do shield block|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior shield block|shield block] with relevance (32.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior shield block|shield block] with relevance (32.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior shield block|shield block] with relevance (32.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1309, 'action:warrior revenge', 1, 'revenge [h:object|action] [c:do revenge|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior revenge|revenge] with relevance (11.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior revenge|revenge] with relevance (11.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior revenge|revenge] with relevance (11.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1310, 'action:warrior shield bash', 1, 'shield bash [h:object|action] [c:do shield bash|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior shield bash|shield bash] with relevance (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:warrior shield bash|shield bash] with relevance (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:warrior shield bash|shield bash] with relevance (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1311, 'action:warrior heroic throw on snare target', 1, 'heroic throw on snare target [h:object|action] [c:do heroic throw on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior taunt on snare target|taunt on snare target] with relevance (30.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior taunt on snare target|taunt on snare target] with relevance (30.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:warrior taunt on snare target|taunt on snare target] with relevance (30.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1312, 'action:warrior last stand', 1, 'last stand [h:object|action] [c:do last stand|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1313, 'action:rogue kick on enemy healer', 1, 'kick on enemy healer [h:object|action] [c:do kick on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (1307, 'action:warrior devastate', 1, 'devastate [h:object|action] [c:do devastate|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior sunder armor|sunder armor] with relevance (22.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior sunder armor|sunder armor] with relevance (22.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior sunder armor|sunder armor] with relevance (22.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (1308, 'action:warrior shield block', 1, 'shield block [h:object|action] [c:do shield block|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior shield block|shield block] with relevance (23.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior shield block|shield block] with relevance (23.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior shield block|shield block] with relevance (23.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (1309, 'action:warrior revenge', 1, 'revenge [h:object|action] [c:do revenge|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior revenge|revenge] with relevance (21.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior revenge|revenge] with relevance (21.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior revenge|revenge] with relevance (21.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (1310, 'action:warrior shield bash', 1, 'shield bash [h:object|action] [c:do shield bash|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior shield bash|shield bash] with relevance (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:warrior shield bash|shield bash] with relevance (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:warrior shield bash|shield bash] with relevance (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]', '', '', '', '', '', '', '', '', '', 0), + (1311, 'action:warrior heroic throw on snare target', 1, 'heroic throw on snare target [h:object|action] [c:do heroic throw on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior taunt on snare target|taunt on snare target] with relevance (30.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:warrior taunt on snare target|taunt on snare target] with relevance (30.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:warrior taunt on snare target|taunt on snare target] with relevance (30.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (1312, 'action:warrior last stand', 1, 'last stand [h:object|action] [c:do last stand|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:warrior protection raid|protection raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (92.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (1313, 'action:rogue kick on enemy healer', 1, 'kick on enemy healer [h:object|action] [c:do kick on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nTriggers from: [h:trigger:rogue kick on enemy healer|kick on enemy healer] with relevance (42.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]', '', '', '', '', '', '', '', '', '', 0), (1314, 'action:warrior intervene', 1, 'intervene [h:object|action] [c:do intervene|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (90.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (90.000) for [h:strategy:warrior protection pve|protection pve]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (90.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1315, 'action:hunter aspect of the hawk', 1, 'aspect of the hawk [h:object|action] [c:do aspect of the hawk|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (10.000) for [h:strategy:hunter bdps|bdps]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (10.000) for [h:strategy:hunter bdps|bdps]', '', '', '', '', '', '', '', '', '', 0), - (1316, 'action:warrior shield bash on enemy healer', 1, 'shield bash on enemy healer [h:object|action] [c:do shield bash on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] with relevance (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] with relevance (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] with relevance (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1317, 'action:paladin divine favor', 1, 'divine favor [h:object|action] [c:do divine favor|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin divine favor|divine favor] with relevance (20.000) for [h:strategy:paladin buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:paladin divine favor|divine favor] with relevance (20.000) for [h:strategy:paladin buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:paladin divine favor|divine favor] with relevance (20.000) for [h:strategy:paladin buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (76.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (73.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (76.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (73.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (76.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (73.000) for [h:strategy:paladin holy raid|holy raid]', '', '', '', '', '', '', '', '', '', 0), + (1315, 'action:hunter aspect of the hawk', 1, 'aspect of the hawk [h:object|action] [c:do aspect of the hawk|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (25.000) for [h:strategy:hunter aspect survival pvp|aspect survival pvp]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (20.000) for [h:strategy:hunter aspect hawk|aspect hawk]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (25.000) for [h:strategy:hunter aspect marksmanship raid|aspect marksmanship raid]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (25.000) for [h:strategy:hunter aspect marksmanship pvp|aspect marksmanship pvp]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (25.000) for [h:strategy:hunter aspect beast mastery pve|aspect beast mastery pve]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (25.000) for [h:strategy:hunter aspect beast mastery pvp|aspect beast mastery pvp]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (25.000) for [h:strategy:hunter aspect beast mastery raid|aspect beast mastery raid]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (25.000) for [h:strategy:hunter aspect marksmanship pve|aspect marksmanship pve]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (25.000) for [h:strategy:hunter aspect survival pve|aspect survival pve]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (25.000) for [h:strategy:hunter aspect survival raid|aspect survival raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (10.000) for [h:strategy:hunter aspect survival pvp|aspect survival pvp]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (20.000) for [h:strategy:hunter aspect hawk|aspect hawk]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (10.000) for [h:strategy:hunter aspect marksmanship raid|aspect marksmanship raid]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (10.000) for [h:strategy:hunter aspect marksmanship pvp|aspect marksmanship pvp]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (10.000) for [h:strategy:hunter aspect beast mastery pve|aspect beast mastery pve]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (10.000) for [h:strategy:hunter aspect beast mastery pvp|aspect beast mastery pvp]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (10.000) for [h:strategy:hunter aspect beast mastery raid|aspect beast mastery raid]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (10.000) for [h:strategy:hunter aspect marksmanship pve|aspect marksmanship pve]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (10.000) for [h:strategy:hunter aspect survival pve|aspect survival pve]\r\nTriggers from: [h:trigger:hunter aspect of the hawk|aspect of the hawk] with relevance (10.000) for [h:strategy:hunter aspect survival raid|aspect survival raid]', '', '', '', '', '', '', '', '', '', 0), + (1316, 'action:warrior shield bash on enemy healer', 1, 'shield bash on enemy healer [h:object|action] [c:do shield bash on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] with relevance (40.000) for [h:strategy:warrior cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] with relevance (40.000) for [h:strategy:warrior cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] with relevance (40.000) for [h:strategy:warrior cc protection pvp|cc protection pvp]', '', '', '', '', '', '', '', '', '', 0), + (1317, 'action:paladin divine favor', 1, 'divine favor [h:object|action] [c:do divine favor|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin divine favor|divine favor] with relevance (20.000) for [h:strategy:paladin boost holy pvp|boost holy pvp]\r\nTriggers from: [h:trigger:paladin divine favor|divine favor] with relevance (20.000) for [h:strategy:paladin boost holy raid|boost holy raid]\r\nTriggers from: [h:trigger:paladin divine favor|divine favor] with relevance (20.000) for [h:strategy:paladin boost holy pve|boost holy pve]', '', '', '', '', '', '', '', '', '', 0), (1318, 'action:paladin devotion aura', 1, 'devotion aura [h:object|action] [c:do devotion aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin devotion aura|devotion aura] with relevance (10.000) for [h:strategy:paladin aura devotion|aura devotion]', '', '', '', '', '', '', '', '', '', 0), - (1319, 'action:paladin concentration aura', 1, 'concentration aura [h:object|action] [c:do concentration aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin concentration aura|concentration aura] with relevance (10.000) for [h:strategy:paladin aura concentration|aura concentration]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura holy pve|aura holy pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura holy pvp|aura holy pvp]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura holy raid|aura holy raid]', '', '', '', '', '', '', '', '', '', 0), - (1320, 'action:shaman strength of earth totem', 1, 'strength of earth totem [h:object|action] [c:do strength of earth totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totem earth strength|totem earth strength]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1319, 'action:paladin concentration aura', 1, 'concentration aura [h:object|action] [c:do concentration aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin concentration aura|concentration aura] with relevance (10.000) for [h:strategy:paladin aura concentration|aura concentration]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura holy pvp|aura holy pvp]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura holy pve|aura holy pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura holy raid|aura holy raid]', '', '', '', '', '', '', '', '', '', 0), + (1320, 'action:shaman strength of earth totem', 1, 'strength of earth totem [h:object|action] [c:do strength of earth totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totem earth strength|totem earth strength]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), (1321, 'action:paladin fire resistance aura', 1, 'fire resistance aura [h:object|action] [c:do fire resistance aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin fire resistance aura|fire resistance aura] with relevance (10.000) for [h:strategy:paladin aura fire|aura fire]', '', '', '', '', '', '', '', '', '', 0), (1322, 'value:rage', 1, 'rage [h:object|value] [c:cdebug values rage|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1323, 'action:paladin blessing of kings on party', 1, 'blessing of kings on party [h:object|action] [c:do blessing of kings on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of kings on party|blessing of kings on party] with relevance (12.000) for [h:strategy:paladin blessing kings|blessing kings]', '', '', '', '', '', '', '', '', '', 0), (1324, 'action:paladin crusader aura', 1, 'crusader aura [h:object|action] [c:do crusader aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin crusader aura|crusader aura] with relevance (10.000) for [h:strategy:paladin aura crusader|aura crusader]', '', '', '', '', '', '', '', '', '', 0), - (1325, 'action:paladin sanctity aura', 1, 'sanctity aura [h:object|action] [c:do sanctity aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin sanctity aura|sanctity aura] with relevance (10.000) for [h:strategy:paladin aura sanctity|aura sanctity]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura retribution pve|aura retribution pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura retribution raid|aura retribution raid]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura retribution pvp|aura retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (1325, 'action:paladin sanctity aura', 1, 'sanctity aura [h:object|action] [c:do sanctity aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura retribution pve|aura retribution pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura retribution pvp|aura retribution pvp]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (11.000) for [h:strategy:paladin aura retribution raid|aura retribution raid]\r\nTriggers from: [h:trigger:paladin sanctity aura|sanctity aura] with relevance (10.000) for [h:strategy:paladin aura sanctity|aura sanctity]', '', '', '', '', '', '', '', '', '', 0), (1326, 'action:paladin blessing of might on party', 1, 'blessing of might on party [h:object|action] [c:do blessing of might on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of might on party|blessing of might on party] with relevance (12.000) for [h:strategy:paladin blessing might|blessing might]', '', '', '', '', '', '', '', '', '', 0), (1327, 'action:paladin shadow resistance aura', 1, 'shadow resistance aura [h:object|action] [c:do shadow resistance aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin shadow resistance aura|shadow resistance aura] with relevance (10.000) for [h:strategy:paladin aura shadow|aura shadow]', '', '', '', '', '', '', '', '', '', 0), - (1328, 'action:mage arcane intellect on party', 1, 'arcane intellect on party [h:object|action] [c:do arcane intellect on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1329, 'action:paladin divine shield', 1, 'divine shield [h:object|action] [c:do divine shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1328, 'action:mage arcane intellect on party', 1, 'arcane intellect on party [h:object|action] [c:do arcane intellect on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage arcane intellect on party|arcane intellect on party] with relevance (13.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1329, 'action:paladin divine shield', 1, 'divine shield [h:object|action] [c:do divine shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), (1330, 'action:paladin holy shock', 1, 'holy shock [h:object|action] [c:do holy shock|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (72.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (72.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (72.000) for [h:strategy:paladin holy raid|holy raid]', '', '', '', '', '', '', '', '', '', 0), - (1331, 'action:paladin lay on hands on party', 1, 'lay on hands on party [h:object|action] [c:do lay on hands on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1331, 'action:paladin lay on hands on party', 1, 'lay on hands on party [h:object|action] [c:do lay on hands on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:paladin offheal raid|offheal raid]', '', '', '', '', '', '', '', '', '', 0), (1332, 'value:RTSC saved location', 1, 'RTSC saved location [h:object|value] [c:cdebug values RTSC saved location|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1333, 'action:paladin hammer of justice on enemy healer', 1, 'hammer of justice on enemy healer [h:object|action] [c:do hammer of justice on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), - (1334, 'action:paladin hammer of justice on snare target', 1, 'hammer of justice on snare target [h:object|action] [c:do hammer of justice on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), - (1335, 'action:paladin blessing of protection', 1, 'blessing of protection [h:object|action] [c:do blessing of protection|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (1336, 'action:paladin blessing of freedom', 1, 'blessing of freedom [h:object|action] [c:do blessing of freedom|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1333, 'action:paladin hammer of justice on enemy healer', 1, 'hammer of justice on enemy healer [h:object|action] [c:do hammer of justice on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1334, 'action:paladin hammer of justice on snare target', 1, 'hammer of justice on snare target [h:object|action] [c:do hammer of justice on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nTriggers from: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1335, 'action:paladin blessing of protection', 1, 'blessing of protection [h:object|action] [c:do blessing of protection|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin offheal pve|offheal pve]\r\nTriggers from: [h:trigger:protect party member|protect party member] with relevance (80.000) for [h:strategy:paladin offheal raid|offheal raid]', '', '', '', '', '', '', '', '', '', 0), + (1336, 'action:paladin blessing of freedom', 1, 'blessing of freedom [h:object|action] [c:do blessing of freedom|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:party member rooted|party member rooted] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), (1337, 'value:group ready', 1, 'group ready [h:object|value] [c:cdebug values group ready|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1338, 'action:paladin divine illumination', 1, 'divine illumination [h:object|action] [c:do divine illumination|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin divine illumination|divine illumination] with relevance (25.000) for [h:strategy:paladin heal|heal]', '', '', '', '', '', '', '', '', '', 0), (1339, 'action:mage fireball', 1, 'fireball [h:object|action] [c:do fireball|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage fireball|fireball] with relevance (10.000) for [h:strategy:mage fire|fire]\r\nDefault action with relevance (6.000) for [h:strategy:mage fire|fire]', '', '', '', '', '', '', '', '', '', 0), (1340, 'action:paladin judgement of light', 1, 'judgement of light [h:object|action] [c:do judgement of light|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin judgement of light|judgement of light] with relevance (11.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:paladin judgement of light|judgement of light] with relevance (10.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:paladin judgement of light|judgement of light] with relevance (10.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:paladin judgement of light|judgement of light] with relevance (10.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:paladin judgement of light|judgement of light] with relevance (11.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:paladin judgement of light|judgement of light] with relevance (11.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (1341, 'action:paladin judgement', 1, 'judgement [h:object|action] [c:do judgement|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin judgement|judgement] with relevance (30.000) for [h:strategy:paladin dps|dps]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (30.000) for [h:strategy:paladin heal|heal]\r\nTriggers from: [h:trigger:paladin judgement|judgement] with relevance (30.000) for [h:strategy:paladin tank|tank]', '', '', '', '', '', '', '', '', '', 0), - (1342, 'action:paladin flash of light on party', 1, 'flash of light on party [h:object|action] [c:do flash of light on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]', '', '', '', '', '', '', '', '', '', 0), + (1341, 'action:paladin judgement', 1, 'judgement [h:object|action] [c:do judgement|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin judgement|judgement] with relevance (11.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:paladin judgement|judgement] with relevance (12.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:paladin judgement|judgement] with relevance (12.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (10.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (10.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (10.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:paladin judgement|judgement] with relevance (11.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:paladin judgement|judgement] with relevance (11.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:paladin judgement|judgement] with relevance (12.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (1342, 'action:paladin flash of light on party', 1, 'flash of light on party [h:object|action] [c:do flash of light on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]', '', '', '', '', '', '', '', '', '', 0), (1343, 'action:paladin holy shock on party', 1, 'holy shock on party [h:object|action] [c:do holy shock on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (75.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (75.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (75.000) for [h:strategy:paladin holy raid|holy raid]', '', '', '', '', '', '', '', '', '', 0), - (1344, 'action:paladin holy light on party', 1, 'holy light on party [h:object|action] [c:do holy light on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (74.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (74.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (74.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1344, 'action:paladin holy light on party', 1, 'holy light on party [h:object|action] [c:do holy light on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin offheal raid|offheal raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin holy raid|holy raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:paladin offheal raid|offheal raid]', '', '', '', '', '', '', '', '', '', 0), (1345, 'action:paladin blessing of sanctuary', 1, 'blessing of sanctuary [h:object|action] [c:do blessing of sanctuary|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of sanctuary|blessing of sanctuary] with relevance (10.000) for [h:strategy:paladin blessing sanctuary|blessing sanctuary]', '', '', '', '', '', '', '', '', '', 0), - (1346, 'action:paladin turn undead', 1, 'turn undead [h:object|action] [c:do turn undead|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), - (1347, 'action:paladin cleanse disease on party', 1, 'cleanse disease on party [h:object|action] [c:do cleanse disease on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (1348, 'action:paladin cleanse magic on party', 1, 'cleanse magic on party [h:object|action] [c:do cleanse magic on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1346, 'action:paladin turn undead', 1, 'turn undead [h:object|action] [c:do turn undead|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc holy pve|cc holy pve]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc holy pvp|cc holy pvp]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc holy raid|cc holy raid]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc protection pve|cc protection pve]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc protection pvp|cc protection pvp]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc protection raid|cc protection raid]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nTriggers from: [h:trigger:paladin turn undead|turn undead] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1347, 'action:paladin cleanse disease on party', 1, 'cleanse disease on party [h:object|action] [c:do cleanse disease on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1348, 'action:paladin cleanse magic on party', 1, 'cleanse magic on party [h:object|action] [c:do cleanse magic on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nTriggers from: [h:trigger:paladin cleanse|cleanse] with relevance (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), (1349, 'action:paladin judgement of wisdom', 1, 'judgement of wisdom [h:object|action] [c:do judgement of wisdom|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin judgement of wisdom|judgement of wisdom] with relevance (12.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (22.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (22.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:medium mana|medium mana] with relevance (22.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:paladin judgement of wisdom|judgement of wisdom] with relevance (12.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:paladin judgement of wisdom|judgement of wisdom] with relevance (12.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (1350, 'action:paladin consecration', 1, 'consecration [h:object|action] [c:do consecration|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe retribution pve|aoe retribution pve]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe protection raid|aoe protection raid]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe retribution pvp|aoe retribution pvp]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe retribution raid|aoe retribution raid]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (14.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (14.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), - (1351, 'action:paladin repentance on enemy healer', 1, 'repentance on enemy healer [h:object|action] [c:do repentance on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]\r\nTriggers from: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (1350, 'action:paladin consecration', 1, 'consecration [h:object|action] [c:do consecration|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin consecration|consecration] with relevance (20.000) for [h:strategy:paladin aoe protection raid|aoe protection raid]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe protection raid|aoe protection raid]\r\nTriggers from: [h:trigger:paladin consecration|consecration] with relevance (20.000) for [h:strategy:paladin aoe retribution pve|aoe retribution pve]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe retribution pve|aoe retribution pve]\r\nTriggers from: [h:trigger:paladin consecration|consecration] with relevance (20.000) for [h:strategy:paladin aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:paladin consecration|consecration] with relevance (20.000) for [h:strategy:paladin aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:paladin consecration|consecration] with relevance (20.000) for [h:strategy:paladin aoe retribution pvp|aoe retribution pvp]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe retribution pvp|aoe retribution pvp]\r\nTriggers from: [h:trigger:paladin consecration|consecration] with relevance (20.000) for [h:strategy:paladin aoe retribution raid|aoe retribution raid]\r\nTriggers from: [h:trigger:paladin aoe|aoe] with relevance (21.000) for [h:strategy:paladin aoe retribution raid|aoe retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1351, 'action:paladin repentance on enemy healer', 1, 'repentance on enemy healer [h:object|action] [c:do repentance on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution pvp|cc retribution pvp]\r\nTriggers from: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution pve|cc retribution pve]\r\nTriggers from: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] with relevance (40.000) for [h:strategy:paladin cc retribution raid|cc retribution raid]', '', '', '', '', '', '', '', '', '', 0), (1352, 'action:deathknight death pact', 1, 'death pact [h:object|action] [c:do death pact|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), (1353, 'action:paladin divine storm', 1, 'divine storm [h:object|action] [c:do divine storm|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (10.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (10.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (10.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (1354, 'action:shaman healing wave on party', 1, 'healing wave on party [h:object|action] [c:do healing wave on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (60.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (1355, 'action:paladin hammer of wrath', 1, 'hammer of wrath [h:object|action] [c:do hammer of wrath|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin target low health|target low health] with relevance (20.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:paladin target low health|target low health] with relevance (20.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:paladin target low health|target low health] with relevance (20.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:paladin target low health|target low health] with relevance (20.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:paladin target low health|target low health] with relevance (20.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:paladin target low health|target low health] with relevance (20.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (1354, 'action:shaman healing wave on party', 1, 'healing wave on party [h:object|action] [c:do healing wave on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:shaman offheal raid|offheal raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:shaman offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:shaman offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (81.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:shaman offheal raid|offheal raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:shaman offheal pve|offheal pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (70.000) for [h:strategy:shaman offheal pvp|offheal pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member critical health|party member critical health] with relevance (80.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member medium health|party member medium health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1355, 'action:paladin hammer of wrath', 1, 'hammer of wrath [h:object|action] [c:do hammer of wrath|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin target low health|target low health] with relevance (20.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:paladin target low health|target low health] with relevance (20.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:paladin target low health|target low health] with relevance (20.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:paladin target low health|target low health] with relevance (20.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:paladin target low health|target low health] with relevance (20.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), (1356, 'action:paladin avenging wrath', 1, 'avenging wrath [h:object|action] [c:do avenging wrath|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:often|often] with relevance (21.000) for [h:strategy:paladin buff holy pvp|buff holy pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (21.000) for [h:strategy:paladin buff protection raid|buff protection raid]\r\nTriggers from: [h:trigger:often|often] with relevance (21.000) for [h:strategy:paladin buff retribution pve|buff retribution pve]\r\nTriggers from: [h:trigger:often|often] with relevance (21.000) for [h:strategy:paladin buff holy pve|buff holy pve]\r\nTriggers from: [h:trigger:often|often] with relevance (21.000) for [h:strategy:paladin buff holy raid|buff holy raid]\r\nTriggers from: [h:trigger:often|often] with relevance (21.000) for [h:strategy:paladin buff protection pve|buff protection pve]\r\nTriggers from: [h:trigger:often|often] with relevance (21.000) for [h:strategy:paladin buff protection pvp|buff protection pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (21.000) for [h:strategy:paladin buff retribution pvp|buff retribution pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (21.000) for [h:strategy:paladin buff retribution raid|buff retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (1357, 'action:paladin seal of vengeance', 1, 'seal of vengeance [h:object|action] [c:do seal of vengeance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin seal of justice|seal of justice] with relevance (12.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:paladin seal of justice|seal of justice] with relevance (12.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:paladin seal of justice|seal of justice] with relevance (12.000) for [h:strategy:paladin protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), + (1357, 'action:paladin seal of vengeance', 1, 'seal of vengeance [h:object|action] [c:do seal of vengeance|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin seal|seal] with relevance (12.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:paladin seal|seal] with relevance (12.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:paladin seal|seal] with relevance (12.000) for [h:strategy:paladin protection pvp|protection pvp]', '', '', '', '', '', '', '', '', '', 0), (1358, 'action:shaman ghost wolf', 1, 'ghost wolf [h:object|action] [c:do ghost wolf|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (1359, 'action:paladin hand of reckoning', 1, 'hand of reckoning [h:object|action] [c:do hand of reckoning|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (90.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (90.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (90.000) for [h:strategy:paladin protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1360, 'action:deathknight icy touch', 1, 'icy touch [h:object|action] [c:do icy touch|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight icy touch|icy touch] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] with relevance (21.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight icy touch|icy touch] with relevance (21.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight icy touch|icy touch] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] with relevance (21.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight icy touch|icy touch] with relevance (21.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (1361, 'action:deathknight death grip', 1, 'death grip [h:object|action] [c:do death grip|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (1362, 'action:warlock curse of agony on attacker', 1, 'curse of agony on attacker [h:object|action] [c:do curse of agony on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse demonology pve|curse demonology pve]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse affliction pve|curse affliction pve]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse destruction pvp|curse destruction pvp]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse affliction pvp|curse affliction pvp]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse affliction raid|curse affliction raid]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse demonology pvp|curse demonology pvp]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse demonology raid|curse demonology raid]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse destruction pve|curse destruction pve]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse destruction raid|curse destruction raid]', '', '', '', '', '', '', '', '', '', 0), - (1363, 'action:deathknight anti magic shell', 1, 'anti magic shell [h:object|action] [c:do anti magic shell|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), + (1359, 'action:paladin hand of reckoning', 1, 'hand of reckoning [h:object|action] [c:do hand of reckoning|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (30.000) for [h:strategy:paladin protection raid|protection raid]\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (30.000) for [h:strategy:paladin protection pve|protection pve]\r\nTriggers from: [h:trigger:lose aggro|lose aggro] with relevance (30.000) for [h:strategy:paladin protection pvp|protection pvp]', '', '', '', '', '', '', '', '', '', 0), + (1360, 'action:deathknight icy touch', 1, 'icy touch [h:object|action] [c:do icy touch|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight icy touch|icy touch] with relevance (21.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] with relevance (21.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight icy touch|icy touch] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight icy touch|icy touch] with relevance (21.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] with relevance (21.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight icy touch|icy touch] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight icy touch on attacker|icy touch on attacker] with relevance (21.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (1361, 'action:deathknight death grip', 1, 'death grip [h:object|action] [c:do death grip|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight enemy out of melee range|enemy out of melee range] with relevance (19.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (1362, 'action:warlock curse of agony on attacker', 1, 'curse of agony on attacker [h:object|action] [c:do curse of agony on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of agony on attacker|curse of agony on attacker] with relevance (21.000) for [h:strategy:warlock curse agony|curse agony]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse demonology pve|curse demonology pve]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse affliction pvp|curse affliction pvp]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse affliction pve|curse affliction pve]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse affliction raid|curse affliction raid]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse demonology pvp|curse demonology pvp]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse demonology raid|curse demonology raid]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse destruction pve|curse destruction pve]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse destruction pvp|curse destruction pvp]\r\nTriggers from: [h:trigger:warlock no curse on attacker|no curse on attacker] with relevance (21.000) for [h:strategy:warlock curse destruction raid|curse destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1363, 'action:deathknight anti magic shell', 1, 'anti magic shell [h:object|action] [c:do anti magic shell|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (13.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), (1364, 'value:can accept quest npc', 1, 'can accept quest npc [h:object|value] [c:cdebug values can accept quest npc|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1365, 'action:deathknight unholy blight', 1, 'unholy blight [h:object|action] [c:do unholy blight|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (16.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (16.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (16.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (16.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (1366, 'action:deathknight pestilence', 1, 'pestilence [h:object|action] [c:do pestilence|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), + (1365, 'action:deathknight unholy blight', 1, 'unholy blight [h:object|action] [c:do unholy blight|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (16.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (16.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (16.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (16.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (1366, 'action:deathknight pestilence', 1, 'pestilence [h:object|action] [c:do pestilence|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight aoe|aoe] with relevance (14.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), (1367, 'value:spell cast useful', 1, 'spell cast useful [h:object|value] [c:cdebug values spell cast useful|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1368, 'action:deathknight horn of winter', 1, 'horn of winter [h:object|action] [c:do horn of winter|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight horn of winter|horn of winter] with relevance (11.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight horn of winter|horn of winter] with relevance (11.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight horn of winter|horn of winter] with relevance (11.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight horn of winter|horn of winter] with relevance (11.000) for [h:strategy:deathknight unholy|unholy]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:deathknight horn of winter|horn of winter] with relevance (21.000) for [h:strategy:deathknight nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1369, 'action:deathknight death coill', 1, 'death coill [h:object|action] [c:do death coill|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight death coil|death coil] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight death coil|death coil] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight death coil|death coil] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight death coil|death coil] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (1370, 'action:deathknight raise dead', 1, 'raise dead [h:object|action] [c:do raise dead|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (15.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (15.000) for [h:strategy:deathknight unholy|unholy]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:deathknight raise dead|raise dead] with relevance (11.000) for [h:strategy:deathknight nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1371, 'action:deathknight mind freeze', 1, 'mind freeze [h:object|action] [c:do mind freeze|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight mind freeze|mind freeze] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight mind freeze|mind freeze] with relevance (21.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight mind freeze|mind freeze] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight mind freeze|mind freeze] with relevance (21.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), - (1372, 'action:deathknight icebound fortitude', 1, 'icebound fortitude [h:object|action] [c:do icebound fortitude|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (25.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:low health|low health] with relevance (25.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:low health|low health] with relevance (25.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:low health|low health] with relevance (25.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), + (1368, 'action:deathknight horn of winter', 1, 'horn of winter [h:object|action] [c:do horn of winter|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight horn of winter|horn of winter] with relevance (11.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight horn of winter|horn of winter] with relevance (11.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight horn of winter|horn of winter] with relevance (11.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight horn of winter|horn of winter] with relevance (11.000) for [h:strategy:deathknight blood|blood]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:deathknight horn of winter|horn of winter] with relevance (21.000) for [h:strategy:deathknight nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (1369, 'action:deathknight death coill', 1, 'death coill [h:object|action] [c:do death coill|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight death coil|death coil] with relevance (13.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight death coil|death coil] with relevance (13.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight death coil|death coil] with relevance (13.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight death coil|death coil] with relevance (13.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (1370, 'action:deathknight raise dead', 1, 'raise dead [h:object|action] [c:do raise dead|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (15.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (15.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (15.000) for [h:strategy:deathknight blood|blood]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:deathknight raise dead|raise dead] with relevance (11.000) for [h:strategy:deathknight nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (1371, 'action:deathknight mind freeze', 1, 'mind freeze [h:object|action] [c:do mind freeze|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight mind freeze|mind freeze] with relevance (21.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight mind freeze|mind freeze] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight mind freeze|mind freeze] with relevance (21.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight mind freeze|mind freeze] with relevance (21.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), + (1372, 'action:deathknight icebound fortitude', 1, 'icebound fortitude [h:object|action] [c:do icebound fortitude|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (25.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:low health|low health] with relevance (25.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:low health|low health] with relevance (25.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:low health|low health] with relevance (25.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), (1373, 'action:deathknight vampiric blood', 1, 'vampiric blood [h:object|action] [c:do vampiric blood|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (23.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:low health|low health] with relevance (23.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), (1374, 'action:druid hibernate on cc', 1, 'hibernate on cc [h:object|action] [c:do hibernate on cc|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (23.000) for [h:strategy:druid cc|cc]', '', '', '', '', '', '', '', '', '', 0), - (1375, 'action:deathknight plague strike', 1, 'plague strike [h:object|action] [c:do plague strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight plague strike|plague strike] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight plague strike|plague strike] with relevance (21.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] with relevance (21.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight plague strike|plague strike] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight plague strike|plague strike] with relevance (21.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] with relevance (21.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), + (1375, 'action:deathknight plague strike', 1, 'plague strike [h:object|action] [c:do plague strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] with relevance (21.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight plague strike|plague strike] with relevance (21.000) for [h:strategy:deathknight frost|frost]\r\nTriggers from: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight plague strike|plague strike] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] with relevance (21.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight plague strike|plague strike] with relevance (21.000) for [h:strategy:deathknight unholy|unholy]\r\nTriggers from: [h:trigger:deathknight plague strike on attacker|plague strike on attacker] with relevance (21.000) for [h:strategy:deathknight blood|blood]\r\nTriggers from: [h:trigger:deathknight plague strike|plague strike] with relevance (21.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), (1376, 'value:mana', 1, 'mana [h:object|value] [c:cdebug values mana|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1377, 'action:deathknight ghoul frenzy', 1, 'ghoul frenzy [h:object|action] [c:do ghoul frenzy|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:often|often] with relevance (12.000) for [h:strategy:deathknight unholy|unholy]', '', '', '', '', '', '', '', '', '', 0), (1378, 'value:rti cc', 1, 'rti cc [h:object|value] [c:cdebug values rti cc|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1379, 'value:party member without item', 1, 'party member without item [h:object|value] [c:cdebug values party member without item|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1380, 'action:hunter rapid fire', 1, 'rapid fire [h:object|action] [c:do rapid fire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter rapid fire|rapid fire] with relevance (16.000) for [h:strategy:hunter boost|boost]', '', '', '', '', '', '', '', '', '', 0), + (1380, 'action:hunter rapid fire', 1, 'rapid fire [h:object|action] [c:do rapid fire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter rapid fire|rapid fire] with relevance (25.000) for [h:strategy:hunter boost beast mastery raid|boost beast mastery raid]\r\nTriggers from: [h:trigger:hunter rapid fire|rapid fire] with relevance (25.000) for [h:strategy:hunter boost survival pvp|boost survival pvp]\r\nTriggers from: [h:trigger:hunter rapid fire|rapid fire] with relevance (25.000) for [h:strategy:hunter boost beast mastery pve|boost beast mastery pve]\r\nTriggers from: [h:trigger:hunter rapid fire|rapid fire] with relevance (25.000) for [h:strategy:hunter boost beast mastery pvp|boost beast mastery pvp]\r\nTriggers from: [h:trigger:hunter rapid fire|rapid fire] with relevance (25.000) for [h:strategy:hunter boost marksmanship pve|boost marksmanship pve]\r\nTriggers from: [h:trigger:hunter rapid fire|rapid fire] with relevance (25.000) for [h:strategy:hunter boost marksmanship pvp|boost marksmanship pvp]\r\nTriggers from: [h:trigger:hunter rapid fire|rapid fire] with relevance (25.000) for [h:strategy:hunter boost marksmanship raid|boost marksmanship raid]\r\nTriggers from: [h:trigger:hunter rapid fire|rapid fire] with relevance (25.000) for [h:strategy:hunter boost survival pve|boost survival pve]\r\nTriggers from: [h:trigger:hunter rapid fire|rapid fire] with relevance (25.000) for [h:strategy:hunter boost survival raid|boost survival raid]', '', '', '', '', '', '', '', '', '', 0), (1381, 'action:shaman water shield', 1, 'water shield [h:object|action] [c:do water shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (20.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (20.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (20.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (20.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (20.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (20.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman water shield|water shield] with relevance (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (1382, 'action:hunter serpent sting', 1, 'serpent sting [h:object|action] [c:do serpent sting|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (23.000) for [h:strategy:hunter dps debuff|dps debuff]', '', '', '', '', '', '', '', '', '', 0), - (1383, 'action:hunter aspect of the pack', 1, 'aspect of the pack [h:object|action] [c:do aspect of the pack|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the pack|aspect of the pack] with relevance (10.000) for [h:strategy:hunter bspeed|bspeed]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the pack|aspect of the pack] with relevance (10.000) for [h:strategy:hunter bspeed|bspeed]', '', '', '', '', '', '', '', '', '', 0), - (1384, 'action:hunter serpent sting on attacker', 1, 'serpent sting on attacker [h:object|action] [c:do serpent sting on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] with relevance (17.000) for [h:strategy:hunter aoe|aoe]', '', '', '', '', '', '', '', '', '', 0), - (1385, 'action:hunter aspect of the viper', 1, 'aspect of the viper [h:object|action] [c:do aspect of the viper|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the viper|aspect of the viper] with relevance (10.000) for [h:strategy:hunter bmana|bmana]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the viper|aspect of the viper] with relevance (10.000) for [h:strategy:hunter bmana|bmana]', '', '', '', '', '', '', '', '', '', 0), + (1382, 'action:hunter serpent sting', 1, 'serpent sting [h:object|action] [c:do serpent sting|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (14.000) for [h:strategy:hunter sting beast mastery pve|sting beast mastery pve]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (14.000) for [h:strategy:hunter sting beast mastery pvp|sting beast mastery pvp]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (14.000) for [h:strategy:hunter sting marksmanship pve|sting marksmanship pve]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (14.000) for [h:strategy:hunter sting marksmanship pvp|sting marksmanship pvp]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (20.000) for [h:strategy:hunter sting serpent|sting serpent]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (14.000) for [h:strategy:hunter sting survival pve|sting survival pve]\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (14.000) for [h:strategy:hunter sting survival pvp|sting survival pvp]', '', '', '', '', '', '', '', '', '', 0), + (1383, 'action:hunter aspect of the pack', 1, 'aspect of the pack [h:object|action] [c:do aspect of the pack|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the pack|aspect of the pack] with relevance (20.000) for [h:strategy:hunter aspect pack|aspect pack]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the pack|aspect of the pack] with relevance (20.000) for [h:strategy:hunter aspect pack|aspect pack]', '', '', '', '', '', '', '', '', '', 0), + (1384, 'action:hunter serpent sting on attacker', 1, 'serpent sting on attacker [h:object|action] [c:do serpent sting on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] with relevance (22.000) for [h:strategy:hunter sting beast mastery pve|sting beast mastery pve]\r\nTriggers from: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] with relevance (22.000) for [h:strategy:hunter sting beast mastery pvp|sting beast mastery pvp]\r\nTriggers from: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] with relevance (22.000) for [h:strategy:hunter sting beast mastery raid|sting beast mastery raid]\r\nTriggers from: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] with relevance (22.000) for [h:strategy:hunter sting marksmanship pve|sting marksmanship pve]\r\nTriggers from: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] with relevance (22.000) for [h:strategy:hunter sting marksmanship pvp|sting marksmanship pvp]\r\nTriggers from: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] with relevance (22.000) for [h:strategy:hunter sting marksmanship raid|sting marksmanship raid]\r\nTriggers from: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] with relevance (21.000) for [h:strategy:hunter sting serpent|sting serpent]\r\nTriggers from: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] with relevance (22.000) for [h:strategy:hunter sting survival pve|sting survival pve]\r\nTriggers from: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] with relevance (22.000) for [h:strategy:hunter sting survival pvp|sting survival pvp]\r\nTriggers from: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] with relevance (22.000) for [h:strategy:hunter sting survival raid|sting survival raid]', '', '', '', '', '', '', '', '', '', 0), + (1385, 'action:hunter aspect of the viper', 1, 'aspect of the viper [h:object|action] [c:do aspect of the viper|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the viper|aspect of the viper] with relevance (20.000) for [h:strategy:hunter aspect viper|aspect viper]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the viper|aspect of the viper] with relevance (20.000) for [h:strategy:hunter aspect viper|aspect viper]', '', '', '', '', '', '', '', '', '', 0), (1386, 'action:hunter scare beast on cc', 1, 'scare beast on cc [h:object|action] [c:do scare beast on cc|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter scare beast|scare beast] with relevance (23.000) for [h:strategy:hunter cc|cc]', '', '', '', '', '', '', '', '', '', 0), (1387, 'action:hunter black arrow', 1, 'black arrow [h:object|action] [c:do black arrow|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter black arrow|black arrow] with relevance (15.000) for [h:strategy:hunter dps|dps]\r\nTriggers from: [h:trigger:hunter black arrow on snare target|black arrow on snare target] with relevance (59.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (1388, 'action:hunter freezing trap', 1, 'freezing trap [h:object|action] [c:do freezing trap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (63.000) for [h:strategy:hunter dps|dps]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter feign death|feign death] with relevance (90.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), (1389, 'action:hunter concussive shot on snare target', 1, 'concussive shot on snare target [h:object|action] [c:do concussive shot on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter concussive shot on snare target|concussive shot on snare target] with relevance (62.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (1390, 'action:shadowmeld', 1, 'shadowmeld [h:object|action] [c:do shadowmeld|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:high threat|high threat] with relevance (40.000) for [h:strategy:hunter dps|dps]\r\nTriggers from: [h:trigger:hunter my attacker count|my attacker count] with relevance (40.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (1391, 'value:current cc target', 1, 'current cc target [h:object|value] [c:cdebug values current cc target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1392, 'action:hunter mend pet', 1, 'mend pet [h:object|action] [c:do mend pet|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (20.000) for [h:strategy:hunter dps|dps]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (2.000) for [h:strategy:hunter pet|pet]', '', '', '', '', '', '', '', '', '', 0), + (1392, 'action:hunter mend pet', 1, 'mend pet [h:object|action] [c:do mend pet|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (20.000) for [h:strategy:hunter pet|pet]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (11.000) for [h:strategy:hunter pet|pet]', '', '', '', '', '', '', '', '', '', 0), (1393, 'action:hunter explosive trap', 1, 'explosive trap [h:object|action] [c:do explosive trap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aoe|aoe] with relevance (21.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), - (1394, 'action:hunter bestial wrath', 1, 'bestial wrath [h:object|action] [c:do bestial wrath|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter bestial wrath|bestial wrath] with relevance (16.000) for [h:strategy:hunter boost|boost]', '', '', '', '', '', '', '', '', '', 0), - (1395, 'action:hunter aimed shot', 1, 'aimed shot [h:object|action] [c:do aimed shot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aimed shot|aimed shot] with relevance (19.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), + (1394, 'action:hunter bestial wrath', 1, 'bestial wrath [h:object|action] [c:do bestial wrath|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter bestial wrath|bestial wrath] with relevance (26.000) for [h:strategy:hunter boost beast mastery raid|boost beast mastery raid]\r\nTriggers from: [h:trigger:hunter bestial wrath|bestial wrath] with relevance (26.000) for [h:strategy:hunter boost beast mastery pve|boost beast mastery pve]\r\nTriggers from: [h:trigger:hunter bestial wrath|bestial wrath] with relevance (26.000) for [h:strategy:hunter boost beast mastery pvp|boost beast mastery pvp]', '', '', '', '', '', '', '', '', '', 0), + (1395, 'action:hunter aimed shot', 1, 'aimed shot [h:object|action] [c:do aimed shot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aimed shot|aimed shot] with relevance (12.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nTriggers from: [h:trigger:hunter aimed shot|aimed shot] with relevance (12.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nTriggers from: [h:trigger:hunter aimed shot|aimed shot] with relevance (12.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nTriggers from: [h:trigger:hunter aimed shot|aimed shot] with relevance (12.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nTriggers from: [h:trigger:hunter aimed shot|aimed shot] with relevance (12.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nTriggers from: [h:trigger:hunter aimed shot|aimed shot] with relevance (12.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nTriggers from: [h:trigger:hunter aimed shot|aimed shot] with relevance (12.000) for [h:strategy:hunter survival pve|survival pve]\r\nTriggers from: [h:trigger:hunter aimed shot|aimed shot] with relevance (12.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nTriggers from: [h:trigger:hunter aimed shot|aimed shot] with relevance (12.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), (1396, 'action:hunter wyvern sting on snare target', 1, 'wyvern sting on snare target [h:object|action] [c:do wyvern sting on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter wyvern sting on snare target|wyvern sting on snare target] with relevance (26.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (1397, 'action:hunter intimidation', 1, 'intimidation [h:object|action] [c:do intimidation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter intimidation on snare target|intimidation on snare target] with relevance (25.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (1398, 'value:vehicle spell id', 1, 'vehicle spell id [h:object|value] [c:cdebug values vehicle spell id|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1399, 'action:hunter silencing shot', 1, 'silencing shot [h:object|action] [c:do silencing shot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter silencing shot|silencing shot] with relevance (40.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (1400, 'action:hunter silencing shot on enemy healer', 1, 'silencing shot on enemy healer [h:object|action] [c:do silencing shot on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter silencing shot on enemy healer|silencing shot on enemy healer] with relevance (40.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), (1401, 'value:tank target', 1, 'tank target [h:object|value] [c:cdebug values tank target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1402, 'action:hunter aspect of the cheetah', 1, 'aspect of the cheetah [h:object|action] [c:do aspect of the cheetah|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (91.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), + (1402, 'action:hunter aspect of the cheetah', 1, 'aspect of the cheetah [h:object|action] [c:do aspect of the cheetah|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (26.000) for [h:strategy:hunter aspect survival pvp|aspect survival pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (26.000) for [h:strategy:hunter aspect marksmanship pvp|aspect marksmanship pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (26.000) for [h:strategy:hunter aspect beast mastery pvp|aspect beast mastery pvp]\r\nTriggers from: [h:trigger:hunter aspect of the cheetah|aspect of the cheetah] with relevance (20.000) for [h:strategy:hunter aspect cheetah|aspect cheetah]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (26.000) for [h:strategy:hunter aspect survival pvp|aspect survival pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (26.000) for [h:strategy:hunter aspect marksmanship pvp|aspect marksmanship pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (26.000) for [h:strategy:hunter aspect beast mastery pvp|aspect beast mastery pvp]\r\nTriggers from: [h:trigger:hunter aspect of the cheetah|aspect of the cheetah] with relevance (20.000) for [h:strategy:hunter aspect cheetah|aspect cheetah]', '', '', '', '', '', '', '', '', '', 0), (1403, 'value:generic is facing', 1, 'facing [h:object|value] [c:cdebug values facing|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1404, 'action:mage pyroblast', 1, 'pyroblast [h:object|action] [c:do pyroblast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage hot streak|hot streak] with relevance (12.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage hot streak|hot streak] with relevance (12.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage hot streak|hot streak] with relevance (12.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), - (1405, 'action:hunter remove aspect of the cheetah', 1, 'remove aspect of the cheetah [h:object|action] [c:do remove aspect of the cheetah|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter attackers count|attackers count] with relevance (91.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1406, 'action:hunter call pet', 1, 'call pet [h:object|action] [c:do call pet|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (1.000) for [h:strategy:hunter pet|pet]', '', '', '', '', '', '', '', '', '', 0), - (1407, 'action:hunter feed pet', 1, 'feed pet [h:object|action] [c:do feed pet|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (2.000) for [h:strategy:hunter pet|pet]', '', '', '', '', '', '', '', '', '', 0), - (1408, 'action:hunter revive pet', 1, 'revive pet [h:object|action] [c:do revive pet|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (1.000) for [h:strategy:hunter pet|pet]', '', '', '', '', '', '', '', '', '', 0), - (1409, 'action:rogue eviscerate', 1, 'eviscerate [h:object|action] [c:do eviscerate|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (21.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (21.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (21.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0); -INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `template_text`, `text`, `text_loc1`, `text_loc2`, `text_loc3`, `text_loc4`, `text_loc5`, `text_loc6`, `text_loc7`, `text_loc8`, `locs_updated`) VALUES - (1410, 'action:rogue unstealth', 1, 'unstealth [h:object|action] [c:do unstealth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (1411, 'action:rogue evasion', 1, 'evasion [h:object|action] [c:do evasion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (1412, 'action:rogue vanish', 1, 'vanish [h:object|action] [c:do vanish|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (1413, 'action:rogue kick', 1, 'kick [h:object|action] [c:do kick|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (1414, 'action:rogue sprint', 1, 'sprint [h:object|action] [c:do sprint|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue subtlety raid|subtlety raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]', '', '', '', '', '', '', '', '', '', 0), + (1404, 'action:mage pyroblast', 1, 'pyroblast [h:object|action] [c:do pyroblast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage pyroblast|pyroblast] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage pyroblast|pyroblast] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage pyroblast|pyroblast] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), + (1405, 'action:hunter remove aspect of the cheetah', 1, 'remove aspect of the cheetah [h:object|action] [c:do remove aspect of the cheetah|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (27.000) for [h:strategy:hunter aspect survival pvp|aspect survival pvp]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (27.000) for [h:strategy:hunter aspect marksmanship pvp|aspect marksmanship pvp]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (27.000) for [h:strategy:hunter aspect beast mastery pvp|aspect beast mastery pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (27.000) for [h:strategy:hunter aspect survival pvp|aspect survival pvp]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (27.000) for [h:strategy:hunter aspect marksmanship pvp|aspect marksmanship pvp]\r\nTriggers from: [h:trigger:target of attacker|target of attacker] with relevance (27.000) for [h:strategy:hunter aspect beast mastery pvp|aspect beast mastery pvp]', '', '', '', '', '', '', '', '', '', 0), + (1406, 'action:hunter call pet', 1, 'call pet [h:object|action] [c:do call pet|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (12.000) for [h:strategy:hunter pet|pet]', '', '', '', '', '', '', '', '', '', 0), + (1407, 'action:hunter feed pet', 1, 'feed pet [h:object|action] [c:do feed pet|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (11.000) for [h:strategy:hunter pet|pet]', '', '', '', '', '', '', '', '', '', 0), + (1408, 'action:hunter revive pet', 1, 'revive pet [h:object|action] [c:do revive pet|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (11.000) for [h:strategy:hunter pet|pet]', '', '', '', '', '', '', '', '', '', 0), + (1409, 'action:rogue eviscerate', 1, 'eviscerate [h:object|action] [c:do eviscerate|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (21.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (21.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (21.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:combo points available|combo points available] with relevance (22.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (1410, 'action:rogue unstealth', 1, 'unstealth [h:object|action] [c:do unstealth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat raid|stealth combat raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth assassination raid|stealth assassination raid]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat pve|stealth combat pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue stealth|stealth] with relevance (10.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (1411, 'action:rogue evasion', 1, 'evasion [h:object|action] [c:do evasion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (90.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (1412, 'action:rogue vanish', 1, 'vanish [h:object|action] [c:do vanish|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:high threat|high threat] with relevance (90.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:high threat|high threat] with relevance (90.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:rogue subtlety raid|subtlety raid]\r\nTriggers from: [h:trigger:high threat|high threat] with relevance (90.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (1413, 'action:rogue kick', 1, 'kick [h:object|action] [c:do kick|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc subtlety pve|cc subtlety pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc combat raid|cc combat raid]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc assassination raid|cc assassination raid]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc assassination pve|cc assassination pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc subtlety pvp|cc subtlety pvp]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc assassination pvp|cc assassination pvp]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc subtlety raid|cc subtlety raid]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc combat pve|cc combat pve]\r\nTriggers from: [h:trigger:rogue kick|kick] with relevance (41.000) for [h:strategy:rogue cc combat pvp|cc combat pvp]', '', '', '', '', '', '', '', '', '', 0), + (1414, 'action:rogue sprint', 1, 'sprint [h:object|action] [c:do sprint|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth assassination pvp|stealth assassination pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth combat pvp|stealth combat pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:rogue sprint|sprint] with relevance (21.000) for [h:strategy:rogue subtlety raid|subtlety raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:player has flag|player has flag] with relevance (20.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]', '', '', '', '', '', '', '', '', '', 0), (1415, 'action:rogue cloak of shadows', 1, 'cloak of shadows [h:object|action] [c:do cloak of shadows|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue cloak of shadows|cloak of shadows] with relevance (42.000) for [h:strategy:rogue assassination pve|assassination pve]\r\nTriggers from: [h:trigger:rogue cloak of shadows|cloak of shadows] with relevance (42.000) for [h:strategy:rogue assassination pvp|assassination pvp]\r\nTriggers from: [h:trigger:rogue cloak of shadows|cloak of shadows] with relevance (42.000) for [h:strategy:rogue assassination raid|assassination raid]\r\nTriggers from: [h:trigger:rogue cloak of shadows|cloak of shadows] with relevance (42.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue cloak of shadows|cloak of shadows] with relevance (42.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:rogue cloak of shadows|cloak of shadows] with relevance (42.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:rogue cloak of shadows|cloak of shadows] with relevance (42.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:rogue cloak of shadows|cloak of shadows] with relevance (42.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:rogue cloak of shadows|cloak of shadows] with relevance (42.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (1416, 'action:rogue backstab', 1, 'backstab [h:object|action] [c:do backstab|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (23.000) for [h:strategy:rogue assassin|assassin]', '', '', '', '', '', '', '', '', '', 0), - (1417, 'action:druid swipe (cat)', 1, 'swipe (cat) [h:object|action] [c:do swipe (cat)|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (22.000) for [h:strategy:druid cat aoe|cat aoe]', '', '', '', '', '', '', '', '', '', 0), - (1418, 'action:rogue adrenaline rush', 1, 'adrenaline rush [h:object|action] [c:do adrenaline rush|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue adrenaline rush|adrenaline rush] with relevance (26.000) for [h:strategy:rogue buff combat pvp|buff combat pvp]\r\nTriggers from: [h:trigger:rogue adrenaline rush|adrenaline rush] with relevance (26.000) for [h:strategy:rogue buff combat pve|buff combat pve]\r\nTriggers from: [h:trigger:rogue adrenaline rush|adrenaline rush] with relevance (26.000) for [h:strategy:rogue buff combat raid|buff combat raid]', '', '', '', '', '', '', '', '', '', 0), + (1417, 'action:druid swipe (cat)', 1, 'swipe (cat) [h:object|action] [c:do swipe (cat)|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe dps feral raid|aoe dps feral raid]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe dps feral pve|aoe dps feral pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe dps feral pvp|aoe dps feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1418, 'action:rogue adrenaline rush', 1, 'adrenaline rush [h:object|action] [c:do adrenaline rush|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue adrenaline rush|adrenaline rush] with relevance (25.000) for [h:strategy:rogue boost combat pve|boost combat pve]\r\nTriggers from: [h:trigger:rogue adrenaline rush|adrenaline rush] with relevance (25.000) for [h:strategy:rogue boost combat pvp|boost combat pvp]\r\nTriggers from: [h:trigger:rogue adrenaline rush|adrenaline rush] with relevance (25.000) for [h:strategy:rogue boost combat raid|boost combat raid]', '', '', '', '', '', '', '', '', '', 0), (1419, 'action:rogue premeditation', 1, 'premeditation [h:object|action] [c:do premeditation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (21.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (21.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (21.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (1420, 'action:rogue ghostly strike', 1, 'ghostly strike [h:object|action] [c:do ghostly strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:rogue trigger|trigger] with relevance (12.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (1421, 'action:rogue shadowstep', 1, 'shadowstep [h:object|action] [c:do shadowstep|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue enemy out of melee range|enemy out of melee range] with relevance (23.000) for [h:strategy:rogue subtlety pve|subtlety pve]\r\nTriggers from: [h:trigger:rogue enemy out of melee range|enemy out of melee range] with relevance (22.000) for [h:strategy:rogue stealth subtlety pve|stealth subtlety pve]\r\nTriggers from: [h:trigger:rogue enemy out of melee range|enemy out of melee range] with relevance (22.000) for [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\nTriggers from: [h:trigger:rogue enemy out of melee range|enemy out of melee range] with relevance (22.000) for [h:strategy:rogue stealth subtlety raid|stealth subtlety raid]\r\nTriggers from: [h:trigger:rogue enemy out of melee range|enemy out of melee range] with relevance (23.000) for [h:strategy:rogue subtlety pvp|subtlety pvp]\r\nTriggers from: [h:trigger:rogue enemy out of melee range|enemy out of melee range] with relevance (23.000) for [h:strategy:rogue subtlety raid|subtlety raid]', '', '', '', '', '', '', '', '', '', 0), - (1422, 'action:rogue preparation', 1, 'preparation [h:object|action] [c:do preparation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:random|random] with relevance (21.000) for [h:strategy:rogue subtlety|subtlety]', '', '', '', '', '', '', '', '', '', 0), + (1422, 'action:rogue preparation', 1, 'preparation [h:object|action] [c:do preparation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (23.000) for [h:strategy:rogue boost subtlety pve|boost subtlety pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (23.000) for [h:strategy:rogue boost subtlety pvp|boost subtlety pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (23.000) for [h:strategy:rogue boost subtlety raid|boost subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (1423, 'action:apply poison', 1, 'apply poison [h:object|action] [c:do apply poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:often|often] with relevance (1.000) for [h:strategy:rogue nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1424, 'action:rogue sinister strike', 1, 'sinister strike [h:object|action] [c:do sinister strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue sinister strike|sinister strike] with relevance (10.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue sinister strike|sinister strike] with relevance (10.000) for [h:strategy:rogue combat pve|combat pve]\r\nTriggers from: [h:trigger:rogue sinister strike|sinister strike] with relevance (10.000) for [h:strategy:rogue combat raid|combat raid]', '', '', '', '', '', '', '', '', '', 0), + (1424, 'action:rogue sinister strike', 1, 'sinister strike [h:object|action] [c:do sinister strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rogue sinister strike|sinister strike] with relevance (10.000) for [h:strategy:rogue combat raid|combat raid]\r\nTriggers from: [h:trigger:rogue sinister strike|sinister strike] with relevance (10.000) for [h:strategy:rogue combat pvp|combat pvp]\r\nTriggers from: [h:trigger:rogue sinister strike|sinister strike] with relevance (10.000) for [h:strategy:rogue combat pve|combat pve]', '', '', '', '', '', '', '', '', '', 0), (1425, 'value:party member without aura', 1, 'party member without aura [h:object|value] [c:cdebug values party member without aura|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1426, 'action:druid wrath', 1, 'wrath [h:object|action] [c:do wrath|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid eclipse (solar)|eclipse (solar)] with relevance (16.000) for [h:strategy:druid caster|caster]\r\nDefault action with relevance (11.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), - (1427, 'action:shaman magma totem', 1, 'magma totem [h:object|action] [c:do magma totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totem fire magma|totem fire magma]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]', '', '', '', '', '', '', '', '', '', 0), - (1428, 'action:shaman fire nova', 1, 'fire nova [h:object|action] [c:do fire nova|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement raid|aoe enhancement raid]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement pve|aoe enhancement pve]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement pvp|aoe enhancement pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totem fire nova|totem fire nova]', '', '', '', '', '', '', '', '', '', 0), - (1429, 'action:shaman lightning shield', 1, 'lightning shield [h:object|action] [c:do lightning shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (20.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (20.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (20.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]', '', '', '', '', '', '', '', '', '', 0), - (1430, 'action:shaman lesser healing wave', 1, 'lesser healing wave [h:object|action] [c:do lesser healing wave|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (1431, 'action:shaman wind shear', 1, 'wind shear [h:object|action] [c:do wind shear|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (1432, 'action:shaman lesser healing wave on party', 1, 'lesser healing wave on party [h:object|action] [c:do lesser healing wave on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (1433, 'action:warlock curse of agony', 1, 'curse of agony [h:object|action] [c:do curse of agony|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of agony|curse of agony] with relevance (20.000) for [h:strategy:warlock curse agony|curse agony]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse demonology pve|curse demonology pve]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse affliction pve|curse affliction pve]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse destruction pvp|curse destruction pvp]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse affliction pvp|curse affliction pvp]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse affliction raid|curse affliction raid]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse demonology pvp|curse demonology pvp]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse demonology raid|curse demonology raid]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse destruction pve|curse destruction pve]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse destruction raid|curse destruction raid]', '', '', '', '', '', '', '', '', '', 0), - (1434, 'action:shaman riptide on party', 1, 'riptide on party [h:object|action] [c:do riptide on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (80.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (80.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (80.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (1435, 'action:druid abolish poison', 1, 'abolish poison [h:object|action] [c:do abolish poison|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (52.000) for [h:strategy:druid cure|cure]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (52.000) for [h:strategy:druid cure|cure]', '', '', '', '', '', '', '', '', '', 0), - (1436, 'action:shaman earth shock', 1, 'earth shock [h:object|action] [c:do earth shock|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman enhancement raid|enhancement raid]', '', '', '', '', '', '', '', '', '', 0), + (1427, 'action:shaman magma totem', 1, 'magma totem [h:object|action] [c:do magma totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totem fire magma|totem fire magma]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] with relevance (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]', '', '', '', '', '', '', '', '', '', 0), + (1428, 'action:shaman fire nova', 1, 'fire nova [h:object|action] [c:do fire nova|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (20.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement pvp|aoe enhancement pvp]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement raid|aoe enhancement raid]\r\nTriggers from: [h:trigger:shaman aoe|aoe] with relevance (20.000) for [h:strategy:shaman aoe enhancement pve|aoe enhancement pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totem fire nova|totem fire nova]', '', '', '', '', '', '', '', '', '', 0), + (1429, 'action:shaman lightning shield', 1, 'lightning shield [h:object|action] [c:do lightning shield|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman lightning shield|lightning shield] with relevance (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]', '', '', '', '', '', '', '', '', '', 0), + (1430, 'action:shaman lesser healing wave', 1, 'lesser healing wave [h:object|action] [c:do lesser healing wave|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (60.000) for [h:strategy:shaman restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1431, 'action:shaman wind shear', 1, 'wind shear [h:object|action] [c:do wind shear|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman cc enhancement pve|cc enhancement pve]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman cc elemental raid|cc elemental raid]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman cc elemental pve|cc elemental pve]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman cc elemental pvp|cc elemental pvp]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman cc enhancement pvp|cc enhancement pvp]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman cc enhancement raid|cc enhancement raid]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman cc restoration pve|cc restoration pve]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman cc restoration pvp|cc restoration pvp]\r\nTriggers from: [h:trigger:shaman wind shear|wind shear] with relevance (40.000) for [h:strategy:shaman cc restoration raid|cc restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1432, 'action:shaman lesser healing wave on party', 1, 'lesser healing wave on party [h:object|action] [c:do lesser healing wave on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:shaman restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1433, 'action:warlock curse of agony', 1, 'curse of agony [h:object|action] [c:do curse of agony|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of agony|curse of agony] with relevance (20.000) for [h:strategy:warlock curse agony|curse agony]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse demonology pve|curse demonology pve]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse affliction pvp|curse affliction pvp]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse affliction pve|curse affliction pve]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse affliction raid|curse affliction raid]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse demonology pvp|curse demonology pvp]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse demonology raid|curse demonology raid]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse destruction pve|curse destruction pve]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse destruction pvp|curse destruction pvp]\r\nTriggers from: [h:trigger:warlock no curse|no curse] with relevance (12.000) for [h:strategy:warlock curse destruction raid|curse destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1434, 'action:shaman riptide on party', 1, 'riptide on party [h:object|action] [c:do riptide on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (80.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (80.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member low health|party member low health] with relevance (80.000) for [h:strategy:shaman restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1435, 'action:druid abolish poison', 1, 'abolish poison [h:object|action] [c:do abolish poison|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1436, 'action:shaman earth shock', 1, 'earth shock [h:object|action] [c:do earth shock|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:shaman earth shock|earth shock] with relevance (10.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]', '', '', '', '', '', '', '', '', '', 0), (1437, 'action:shaman windfury weapon', 1, 'windfury weapon [h:object|action] [c:do windfury weapon|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]', '', '', '', '', '', '', '', '', '', 0), - (1438, 'action:shaman cure poison', 1, 'cure poison [h:object|action] [c:do cure poison|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]', '', '', '', '', '', '', '', '', '', 0), + (1438, 'action:shaman cure poison', 1, 'cure poison [h:object|action] [c:do cure poison|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:shaman cure poison|cure poison] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]', '', '', '', '', '', '', '', '', '', 0), (1439, 'action:shaman cleanse spirit disease on party', 1, 'cleanse spirit disease on party [h:object|action] [c:do cleanse spirit disease on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]', '', '', '', '', '', '', '', '', '', 0), (1440, 'action:shaman cleanse spirit curse on party', 1, 'cleanse spirit curse on party [h:object|action] [c:do cleanse spirit curse on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pve|cure elemental pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure elemental raid|cure elemental raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement pvp|cure enhancement pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\nTriggers from: [h:trigger:shaman cleanse spirit|cleanse spirit] with relevance (50.000) for [h:strategy:shaman cure restoration pve|cure restoration pve]', '', '', '', '', '', '', '', '', '', 0), - (1441, 'action:shaman mana tide totem', 1, 'mana tide totem [h:object|action] [c:do mana tide totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (95.000) for [h:strategy:shaman heal|heal]', '', '', '', '', '', '', '', '', '', 0), - (1442, 'action:warlock siphon life', 1, 'siphon life [h:object|action] [c:do siphon life|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock siphon life|siphon life] with relevance (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock siphon life|siphon life] with relevance (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock siphon life|siphon life] with relevance (10.000) for [h:strategy:warlock affliction raid|affliction raid]', '', '', '', '', '', '', '', '', '', 0), - (1443, 'action:shaman water breathing on party', 1, 'water breathing on party [h:object|action] [c:do water breathing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (1444, 'action:shaman healing wave', 1, 'healing wave [h:object|action] [c:do healing wave|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (1445, 'action:mage arcane power', 1, 'arcane power [h:object|action] [c:do arcane power|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage arcane power|arcane power] with relevance (22.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage arcane power|arcane power] with relevance (22.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage arcane power|arcane power] with relevance (22.000) for [h:strategy:mage buff arcane raid|buff arcane raid]', '', '', '', '', '', '', '', '', '', 0), - (1446, 'action:mage presence of mind', 1, 'presence of mind [h:object|action] [c:do presence of mind|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage buff arcane raid|buff arcane raid]', '', '', '', '', '', '', '', '', '', 0), - (1447, 'action:mage frost nova', 1, 'frost nova [h:object|action] [c:do frost nova|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc frost pvp|cc frost pvp]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc frost raid|cc frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1448, 'action:mage ice block', 1, 'ice block [h:object|action] [c:do ice block|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1449, 'action:mage invisibility', 1, 'invisibility [h:object|action] [c:do invisibility|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:high threat|high threat] with relevance (40.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage my attacker count|my attacker count] with relevance (40.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:high threat|high threat] with relevance (40.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage my attacker count|my attacker count] with relevance (40.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:high threat|high threat] with relevance (40.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:mage my attacker count|my attacker count] with relevance (40.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1450, 'action:mage fire ward', 1, 'fire ward [h:object|action] [c:do fire ward|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1441, 'action:shaman mana tide totem', 1, 'mana tide totem [h:object|action] [c:do mana tide totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (90.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (90.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (90.000) for [h:strategy:shaman restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1442, 'action:warlock siphon life', 1, 'siphon life [h:object|action] [c:do siphon life|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock siphon life|siphon life] with relevance (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock siphon life|siphon life] with relevance (10.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock siphon life|siphon life] with relevance (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]', '', '', '', '', '', '', '', '', '', 0), + (1443, 'action:shaman water breathing on party', 1, 'water breathing on party [h:object|action] [c:do water breathing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement pve|buff enhancement pve]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement pvp|buff enhancement pvp]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\nTriggers from: [h:trigger:shaman water breathing on party on party|water breathing on party on party] with relevance (10.000) for [h:strategy:shaman buff restoration pve|buff restoration pve]', '', '', '', '', '', '', '', '', '', 0), + (1444, 'action:shaman healing wave', 1, 'healing wave [h:object|action] [c:do healing wave|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (80.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:shaman restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1445, 'action:mage arcane power', 1, 'arcane power [h:object|action] [c:do arcane power|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage arcane power|arcane power] with relevance (22.000) for [h:strategy:mage boost arcane pve|boost arcane pve]\r\nTriggers from: [h:trigger:mage arcane power|arcane power] with relevance (22.000) for [h:strategy:mage boost arcane raid|boost arcane raid]\r\nTriggers from: [h:trigger:mage arcane power|arcane power] with relevance (22.000) for [h:strategy:mage boost arcane pvp|boost arcane pvp]', '', '', '', '', '', '', '', '', '', 0), + (1446, 'action:mage presence of mind', 1, 'presence of mind [h:object|action] [c:do presence of mind|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage boost arcane pve|boost arcane pve]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage boost arcane raid|boost arcane raid]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (21.000) for [h:strategy:mage boost arcane pvp|boost arcane pvp]', '', '', '', '', '', '', '', '', '', 0), + (1447, 'action:mage frost nova', 1, 'frost nova [h:object|action] [c:do frost nova|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc frost raid|cc frost raid]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (90.000) for [h:strategy:mage cc frost pvp|cc frost pvp]', '', '', '', '', '', '', '', '', '', 0), + (1448, 'action:mage ice block', 1, 'ice block [h:object|action] [c:do ice block|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), + (1449, 'action:mage invisibility', 1, 'invisibility [h:object|action] [c:do invisibility|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:high threat|high threat] with relevance (40.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:mage my attacker count|my attacker count] with relevance (40.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:high threat|high threat] with relevance (40.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage my attacker count|my attacker count] with relevance (40.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:high threat|high threat] with relevance (40.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage my attacker count|my attacker count] with relevance (40.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), + (1450, 'action:mage fire ward', 1, 'fire ward [h:object|action] [c:do fire ward|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage fire ward|fire ward] with relevance (20.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (1451, 'action:mage arcane blast', 1, 'arcane blast [h:object|action] [c:do arcane blast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage arcane blast|arcane blast] with relevance (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage arcane blast|arcane blast] with relevance (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage arcane blast|arcane blast] with relevance (11.000) for [h:strategy:mage arcane pvp|arcane pvp]', '', '', '', '', '', '', '', '', '', 0), (1452, 'value:trainable spell map', 1, 'trainable spell map [h:object|value] [c:cdebug values trainable spell map|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1453, 'action:mage arcane missiles', 1, 'arcane missiles [h:object|action] [c:do arcane missiles|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage missile barrage|missile barrage] with relevance (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nDefault action with relevance (1.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage missile barrage|missile barrage] with relevance (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nDefault action with relevance (1.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage missile barrage|missile barrage] with relevance (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nDefault action with relevance (1.000) for [h:strategy:mage arcane pvp|arcane pvp]', '', '', '', '', '', '', '', '', '', 0), - (1454, 'action:mage mana shield', 1, 'mana shield [h:object|action] [c:do mana shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage mana shield|mana shield] with relevance (20.000) for [h:strategy:mage arcane|arcane]\r\nTriggers from: [h:trigger:mage mana shield|mana shield] with relevance (15.000) for [h:strategy:mage fire|fire]', '', '', '', '', '', '', '', '', '', 0), - (1455, 'action:mage polymorph', 1, 'polymorph [h:object|action] [c:do polymorph|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc frost pvp|cc frost pvp]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc frost raid|cc frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1454, 'action:mage mana shield', 1, 'mana shield [h:object|action] [c:do mana shield|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (20.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (20.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (20.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1455, 'action:mage polymorph', 1, 'polymorph [h:object|action] [c:do polymorph|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc arcane pve|cc arcane pve]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc frost pve|cc frost pve]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc frost raid|cc frost raid]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc arcane raid|cc arcane raid]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc fire raid|cc fire raid]\r\nTriggers from: [h:trigger:mage polymorph|polymorph] with relevance (40.000) for [h:strategy:mage cc frost pvp|cc frost pvp]', '', '', '', '', '', '', '', '', '', 0), (1456, 'action:mage molten armor', 1, 'molten armor [h:object|action] [c:do molten armor|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage molten armor|molten armor] with relevance (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage molten armor|molten armor] with relevance (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage molten armor|molten armor] with relevance (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage molten armor|molten armor] with relevance (10.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage molten armor|molten armor] with relevance (10.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage molten armor|molten armor] with relevance (10.000) for [h:strategy:mage buff frost pve|buff frost pve]', '', '', '', '', '', '', '', '', '', 0), (1457, 'chatfilter:level', 1, 'level [h:object|chatfilter]\r\nThis filter selects bots based on level.\r\nExamples:\r\n@60: All bots that are level 60.\r\n@10-20: All bots ranging from level 10 to 20.', '', '', '', '', '', '', '', '', '', 0), - (1458, 'action:give water', 1, 'give water [h:object|action] [c:do give water|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:give water|give water] with relevance (12.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:give water|give water] with relevance (12.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:give water|give water] with relevance (12.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:give water|give water] with relevance (12.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:give water|give water] with relevance (12.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:give water|give water] with relevance (12.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:give water|give water] with relevance (12.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:give water|give water] with relevance (12.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:give water|give water] with relevance (12.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1459, 'action:give food', 1, 'give food [h:object|action] [c:do give food|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:give food|give food] with relevance (12.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:give food|give food] with relevance (12.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:give food|give food] with relevance (12.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:give food|give food] with relevance (12.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:give food|give food] with relevance (12.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:give food|give food] with relevance (12.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:give food|give food] with relevance (12.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:give food|give food] with relevance (12.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:give food|give food] with relevance (12.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1460, 'action:mage combustion', 1, 'combustion [h:object|action] [c:do combustion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage combustion|combustion] with relevance (21.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage combustion|combustion] with relevance (21.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage combustion|combustion] with relevance (21.000) for [h:strategy:mage buff fire raid|buff fire raid]', '', '', '', '', '', '', '', '', '', 0), + (1458, 'action:give water', 1, 'give water [h:object|action] [c:do give water|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:give water|give water] with relevance (11.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:give water|give water] with relevance (11.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:give water|give water] with relevance (11.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:give water|give water] with relevance (11.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:give water|give water] with relevance (11.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:give water|give water] with relevance (11.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:give water|give water] with relevance (11.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:give water|give water] with relevance (11.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:give water|give water] with relevance (11.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1459, 'action:give food', 1, 'give food [h:object|action] [c:do give food|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:give food|give food] with relevance (11.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:give food|give food] with relevance (11.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:give food|give food] with relevance (11.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:give food|give food] with relevance (11.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:give food|give food] with relevance (11.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:give food|give food] with relevance (11.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:give food|give food] with relevance (11.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:give food|give food] with relevance (11.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:give food|give food] with relevance (11.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1460, 'action:mage combustion', 1, 'combustion [h:object|action] [c:do combustion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage combustion|combustion] with relevance (21.000) for [h:strategy:mage boost fire pve|boost fire pve]\r\nTriggers from: [h:trigger:mage combustion|combustion] with relevance (21.000) for [h:strategy:mage boost fire pvp|boost fire pvp]\r\nTriggers from: [h:trigger:mage combustion|combustion] with relevance (21.000) for [h:strategy:mage boost fire raid|boost fire raid]', '', '', '', '', '', '', '', '', '', 0), (1461, 'action:mage dragon\'s breath', 1, 'dragon\'s breath [h:object|action] [c:do dragon\'s breath|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy too close for spell|enemy too close for spell] with relevance (90.000) for [h:strategy:mage cc fire pve|cc fire pve]\r\nTriggers from: [h:trigger:enemy too close for spell|enemy too close for spell] with relevance (90.000) for [h:strategy:mage cc fire pvp|cc fire pvp]\r\nTriggers from: [h:trigger:enemy too close for spell|enemy too close for spell] with relevance (90.000) for [h:strategy:mage cc fire raid|cc fire raid]', '', '', '', '', '', '', '', '', '', 0), (1462, 'action:mage living bomb', 1, 'living bomb [h:object|action] [c:do living bomb|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage living bomb|living bomb] with relevance (22.000) for [h:strategy:mage aoe fire pve|aoe fire pve]\r\nTriggers from: [h:trigger:mage living bomb|living bomb] with relevance (22.000) for [h:strategy:mage aoe fire raid|aoe fire raid]\r\nTriggers from: [h:trigger:mage living bomb|living bomb] with relevance (22.000) for [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\nTriggers from: [h:trigger:mage living bomb|living bomb] with relevance (13.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage living bomb|living bomb] with relevance (13.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage living bomb|living bomb] with relevance (13.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), (1463, 'action:mage icy veins', 1, 'icy veins [h:object|action] [c:do icy veins|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage icy veins|icy veins] with relevance (21.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage icy veins|icy veins] with relevance (21.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage icy veins|icy veins] with relevance (21.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (1464, 'action:mage ice barrier', 1, 'ice barrier [h:object|action] [c:do ice barrier|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage ice barrier|ice barrier] with relevance (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage ice barrier|ice barrier] with relevance (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage ice barrier|ice barrier] with relevance (20.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1465, 'action:mage blizzard', 1, 'blizzard [h:object|action] [c:do blizzard|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (20.000) for [h:strategy:mage aoe fire pve|aoe fire pve]\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (20.000) for [h:strategy:mage aoe fire raid|aoe fire raid]\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (20.000) for [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe frost pve|aoe frost pve]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe frost pvp|aoe frost pvp]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe frost raid|aoe frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1466, 'action:mage arcane intellect', 1, 'arcane intellect [h:object|action] [c:do arcane intellect|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (11.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (11.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (11.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (11.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (11.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (11.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (11.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (11.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (11.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1467, 'action:mage conjure water', 1, 'conjure water [h:object|action] [c:do conjure water|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1468, 'action:warlock corruption on attacker', 1, 'corruption on attacker [h:object|action] [c:do corruption on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe demonology pvp|aoe demonology pvp]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe demonology raid|aoe demonology raid]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe destruction pve|aoe destruction pve]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe destruction raid|aoe destruction raid]', '', '', '', '', '', '', '', '', '', 0), - (1469, 'action:warlock siphon life on attacker', 1, 'siphon life on attacker [h:object|action] [c:do siphon life on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock siphon life on attacker|siphon life on attacker] with relevance (23.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nTriggers from: [h:trigger:warlock siphon life on attacker|siphon life on attacker] with relevance (23.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nTriggers from: [h:trigger:warlock siphon life on attacker|siphon life on attacker] with relevance (23.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]', '', '', '', '', '', '', '', '', '', 0), - (1470, 'action:warlock amplify curse', 1, 'amplify curse [h:object|action] [c:do amplify curse|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock buff affliction pvp|buff affliction pvp]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock buff destruction raid|buff destruction raid]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock buff affliction pve|buff affliction pve]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock buff affliction raid|buff affliction raid]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock buff demonology pve|buff demonology pve]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock buff demonology pvp|buff demonology pvp]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock buff demonology raid|buff demonology raid]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock buff destruction pve|buff destruction pve]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock buff destruction pvp|buff destruction pvp]', '', '', '', '', '', '', '', '', '', 0), - (1471, 'action:warlock summon felguard', 1, 'summon felguard [h:object|action] [c:do summon felguard|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (12.000) for [h:strategy:warlock pet demonology pve|pet demonology pve]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (12.000) for [h:strategy:warlock pet demonology pvp|pet demonology pvp]\r\nTriggers from: [h:trigger:warlock no felguard|no felguard] with relevance (20.000) for [h:strategy:warlock pet felguard|pet felguard]', '', '', '', '', '', '', '', '', '', 0), - (1472, 'action:warlock create healthstone', 1, 'create healthstone [h:object|action] [c:do create healthstone|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), - (1473, 'action:warlock fel armor', 1, 'fel armor [h:object|action] [c:do fel armor|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (11.000) for [h:strategy:warlock buff affliction pvp|buff affliction pvp]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (11.000) for [h:strategy:warlock buff destruction raid|buff destruction raid]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (11.000) for [h:strategy:warlock buff affliction pve|buff affliction pve]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (11.000) for [h:strategy:warlock buff affliction raid|buff affliction raid]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (11.000) for [h:strategy:warlock buff demonology pve|buff demonology pve]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (11.000) for [h:strategy:warlock buff demonology pvp|buff demonology pvp]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (11.000) for [h:strategy:warlock buff demonology raid|buff demonology raid]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (11.000) for [h:strategy:warlock buff destruction pve|buff destruction pve]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (11.000) for [h:strategy:warlock buff destruction pvp|buff destruction pvp]', '', '', '', '', '', '', '', '', '', 0), - (1474, 'action:warlock life tap', 1, 'life tap [h:object|action] [c:do life tap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), - (1475, 'action:warlock death coil', 1, 'death coil [h:object|action] [c:do death coil|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), + (1465, 'action:mage blizzard', 1, 'blizzard [h:object|action] [c:do blizzard|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (20.000) for [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe frost pve|aoe frost pve]\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (20.000) for [h:strategy:mage aoe fire raid|aoe fire raid]\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (20.000) for [h:strategy:mage aoe fire pve|aoe fire pve]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe frost pvp|aoe frost pvp]\r\nTriggers from: [h:trigger:mage aoe|aoe] with relevance (21.000) for [h:strategy:mage aoe frost raid|aoe frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1466, 'action:mage arcane intellect', 1, 'arcane intellect [h:object|action] [c:do arcane intellect|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (12.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (12.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (12.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (12.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (12.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (12.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (12.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (12.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage arcane intellect|arcane intellect] with relevance (12.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1467, 'action:mage conjure water', 1, 'conjure water [h:object|action] [c:do conjure water|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage no drink trigger|no drink trigger] with relevance (10.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), + (1468, 'action:warlock corruption on attacker', 1, 'corruption on attacker [h:object|action] [c:do corruption on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe demonology pvp|aoe demonology pvp]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe demonology raid|aoe demonology raid]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe destruction pve|aoe destruction pve]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (21.000) for [h:strategy:warlock aoe destruction raid|aoe destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1469, 'action:warlock siphon life on attacker', 1, 'siphon life on attacker [h:object|action] [c:do siphon life on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock siphon life on attacker|siphon life on attacker] with relevance (23.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nTriggers from: [h:trigger:warlock siphon life on attacker|siphon life on attacker] with relevance (23.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nTriggers from: [h:trigger:warlock siphon life on attacker|siphon life on attacker] with relevance (23.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]', '', '', '', '', '', '', '', '', '', 0), + (1470, 'action:warlock amplify curse', 1, 'amplify curse [h:object|action] [c:do amplify curse|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock boost affliction pve|boost affliction pve]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock boost affliction raid|boost affliction raid]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock boost affliction pvp|boost affliction pvp]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock boost demonology pve|boost demonology pve]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock boost demonology pvp|boost demonology pvp]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock boost demonology raid|boost demonology raid]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock boost destruction pve|boost destruction pve]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock boost destruction pvp|boost destruction pvp]\r\nTriggers from: [h:trigger:warlock amplify curse|amplify curse] with relevance (20.000) for [h:strategy:warlock boost destruction raid|boost destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1471, 'action:warlock summon felguard', 1, 'summon felguard [h:object|action] [c:do summon felguard|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:warlock no felguard|no felguard] with relevance (20.000) for [h:strategy:warlock pet felguard|pet felguard]', '', '', '', '', '', '', '', '', '', 0), + (1472, 'action:warlock create healthstone', 1, 'create healthstone [h:object|action] [c:do create healthstone|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock item count|item count] with relevance (10.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1473, 'action:warlock fel armor', 1, 'fel armor [h:object|action] [c:do fel armor|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (12.000) for [h:strategy:warlock buff affliction pvp|buff affliction pvp]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (12.000) for [h:strategy:warlock buff demonology pve|buff demonology pve]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (12.000) for [h:strategy:warlock buff affliction pve|buff affliction pve]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (12.000) for [h:strategy:warlock buff affliction raid|buff affliction raid]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (12.000) for [h:strategy:warlock buff demonology pvp|buff demonology pvp]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (12.000) for [h:strategy:warlock buff demonology raid|buff demonology raid]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (12.000) for [h:strategy:warlock buff destruction pve|buff destruction pve]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (12.000) for [h:strategy:warlock buff destruction pvp|buff destruction pvp]\r\nTriggers from: [h:trigger:warlock demon armor|demon armor] with relevance (12.000) for [h:strategy:warlock buff destruction raid|buff destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1474, 'action:warlock life tap', 1, 'life tap [h:object|action] [c:do life tap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock life tap|life tap] with relevance (23.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1475, 'action:warlock death coil', 1, 'death coil [h:object|action] [c:do death coil|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:warlock death coil|death coil] with relevance (45.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), (1476, 'value:aoe count', 1, 'aoe count [h:object|value] [c:cdebug values aoe count|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1477, 'action:warlock death coil on snare target', 1, 'death coil on snare target [h:object|action] [c:do death coil on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), + (1477, 'action:warlock death coil on snare target', 1, 'death coil on snare target [h:object|action] [c:do death coil on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:warlock death coil on snare target|death coil on snare target] with relevance (43.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), (1478, 'action:warlock shadowfury', 1, 'shadowfury [h:object|action] [c:do shadowfury|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock shadowfury|shadowfury] with relevance (41.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock shadowfury|shadowfury] with relevance (41.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock shadowfury|shadowfury] with relevance (41.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), (1479, 'action:warlock shadowfury on snare target', 1, 'shadowfury on snare target [h:object|action] [c:do shadowfury on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock shadowfury on snare target|shadowfury on snare target] with relevance (40.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock shadowfury on snare target|shadowfury on snare target] with relevance (40.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock shadowfury on snare target|shadowfury on snare target] with relevance (40.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), - (1480, 'action:warlock drain soul', 1, 'drain soul [h:object|action] [c:do drain soul|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), - (1481, 'action:warlock shadowburn', 1, 'shadowburn [h:object|action] [c:do shadowburn|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), - (1482, 'action:warlock conflagrate', 1, 'conflagrate [h:object|action] [c:do conflagrate|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock conflagrate|conflagrate] with relevance (12.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:warlock conflagrate|conflagrate] with relevance (12.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock conflagrate|conflagrate] with relevance (12.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), + (1480, 'action:warlock drain soul', 1, 'drain soul [h:object|action] [c:do drain soul|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock drain soul|drain soul] with relevance (21.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1481, 'action:warlock shadowburn', 1, 'shadowburn [h:object|action] [c:do shadowburn|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (20.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock target low health|target low health] with relevance (20.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1482, 'action:warlock conflagrate', 1, 'conflagrate [h:object|action] [c:do conflagrate|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock conflagrate|conflagrate] with relevance (12.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:warlock conflagrate|conflagrate] with relevance (12.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock conflagrate|conflagrate] with relevance (12.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), (1483, 'value:lfg proposal', 1, 'lfg proposal [h:object|value] [c:cdebug values lfg proposal|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1484, 'value:grind target', 1, 'grind target [h:object|value] [c:cdebug values grind target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1485, 'action:warlock howl of terror', 1, 'howl of terror [h:object|action] [c:do howl of terror|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), + (1485, 'action:warlock howl of terror', 1, 'howl of terror [h:object|action] [c:do howl of terror|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), (1486, 'action:warlock soul shatter', 1, 'soul shatter [h:object|action] [c:do soul shatter|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock my attacker count|my attacker count] with relevance (55.000) for [h:strategy:warlock dps|dps]\r\nTriggers from: [h:trigger:warlock my attacker count|my attacker count] with relevance (55.000) for [h:strategy:warlock tank|tank]', '', '', '', '', '', '', '', '', '', 0), - (1487, 'action:warlock banish', 1, 'banish [h:object|action] [c:do banish|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), - (1488, 'action:druid faerie fire', 1, 'faerie fire [h:object|action] [c:do faerie fire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid faerie fire|faerie fire] with relevance (20.000) for [h:strategy:druid caster debuff|caster debuff]\r\nDefault action with relevance (11.000) for [h:strategy:druid melee|melee]\r\nTriggers from: [h:trigger:druid faerie fire|faerie fire] with relevance (20.000) for [h:strategy:druid caster debuff|caster debuff]', '', '', '', '', '', '', '', '', '', 0), - (1489, 'action:druid regrowth', 1, 'regrowth [h:object|action] [c:do regrowth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (82.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:low health|low health] with relevance (72.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (82.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:low health|low health] with relevance (72.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (72.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (82.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:low health|low health] with relevance (72.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (82.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:low health|low health] with relevance (72.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (82.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:low health|low health] with relevance (72.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (72.000) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (82.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:low health|low health] with relevance (72.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (1487, 'action:warlock banish', 1, 'banish [h:object|action] [c:do banish|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:warlock banish|banish] with relevance (42.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), + (1488, 'action:druid faerie fire', 1, 'faerie fire [h:object|action] [c:do faerie fire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid faerie fire|faerie fire] with relevance (13.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:druid faerie fire|faerie fire] with relevance (13.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:druid faerie fire|faerie fire] with relevance (13.000) for [h:strategy:druid balance raid|balance raid]', '', '', '', '', '', '', '', '', '', 0), + (1489, 'action:druid regrowth', 1, 'regrowth [h:object|action] [c:do regrowth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (71.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (71.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:medium health|medium health] with relevance (71.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (81.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (70.000) for [h:strategy:druid tank feral pvp|tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (1490, 'value:possible adds', 1, 'possible adds [h:object|value] [c:cdebug values possible adds|current value]\r\nThis value returns true if any of the targets the bot wants to attack could agro adds.\r\nUsed values:\r\n[h:value|possible targets no los] [h:value|possible attack targets] ', '', '', '', '', '', '', '', '', '', 0), - (1491, 'action:druid dire bear form', 1, 'dire bear form [h:object|action] [c:do dire bear form|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid bear form|bear form] with relevance (65.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid bear form|bear form] with relevance (65.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (1491, 'action:druid dire bear form', 1, 'dire bear form [h:object|action] [c:do dire bear form|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid bear form|bear form] with relevance (39.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nTriggers from: [h:trigger:druid bear form|bear form] with relevance (39.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nTriggers from: [h:trigger:druid bear form|bear form] with relevance (39.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (1492, 'action:druid survival instincts', 1, 'survival instincts [h:object|action] [c:do survival instincts|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (91.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (1493, 'action:druid omen of clarity', 1, 'omen of clarity [h:object|action] [c:do omen of clarity|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid omen of clarity|omen of clarity] with relevance (66.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid omen of clarity|omen of clarity] with relevance (66.000) for [h:strategy:druid melee|melee]\r\nTriggers from: [h:trigger:druid omen of clarity|omen of clarity] with relevance (66.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid omen of clarity|omen of clarity] with relevance (66.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid omen of clarity|omen of clarity] with relevance (66.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (1494, 'action:druid thorns', 1, 'thorns [h:object|action] [c:do thorns|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (66.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (66.000) for [h:strategy:druid bear|bear]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (12.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (1495, 'action:druid faerie fire (feral)', 1, 'faerie fire (feral) [h:object|action] [c:do faerie fire (feral)|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] with relevance (27.000) for [h:strategy:druid bear|bear]\r\nDefault action with relevance (11.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] with relevance (21.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] with relevance (21.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] with relevance (27.000) for [h:strategy:druid bear|bear]\r\nDefault action with relevance (11.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (1496, 'action:druid bash', 1, 'bash [h:object|action] [c:do bash|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid bash|bash] with relevance (42.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid bash|bash] with relevance (42.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (1497, 'action:druid bash on enemy healer', 1, 'bash on enemy healer [h:object|action] [c:do bash on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid bash on enemy healer|bash on enemy healer] with relevance (41.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid bash on enemy healer|bash on enemy healer] with relevance (41.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (1498, 'action:druid rejuvenation on party', 1, 'rejuvenation on party [h:object|action] [c:do rejuvenation on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (61.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (61.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), - (1499, 'action:druid nature\'s swiftness', 1, 'nature\'s swiftness [h:object|action] [c:do nature\'s swiftness|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] with relevance (29.000) for [h:strategy:druid boost|boost]', '', '', '', '', '', '', '', '', '', 0), - (1500, 'action:druid rake', 1, 'rake [h:object|action] [c:do rake|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid rake|rake] with relevance (15.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid rake|rake] with relevance (15.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), - (1501, 'action:druid cat form', 1, 'cat form [h:object|action] [c:do cat form|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid cat form|cat form] with relevance (65.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid cat form|cat form] with relevance (65.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), - (1502, 'action:druid cower', 1, 'cower [h:object|action] [c:do cower|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (91.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (91.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), - (1503, 'action:druid pounce', 1, 'pounce [h:object|action] [c:do pounce|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (25.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (25.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), - (1504, 'action:druid prowl', 1, 'prowl [h:object|action] [c:do prowl|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid enemy out of melee range|enemy out of melee range] with relevance (90.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid enemy out of melee range|enemy out of melee range] with relevance (90.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), - (1505, 'action:druid gift of the wild on party', 1, 'gift of the wild on party [h:object|action] [c:do gift of the wild on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (14.000) for [h:strategy:druid buff|buff]', '', '', '', '', '', '', '', '', '', 0), + (1493, 'action:druid omen of clarity', 1, 'omen of clarity [h:object|action] [c:do omen of clarity|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid omen of clarity|omen of clarity] with relevance (10.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nTriggers from: [h:trigger:druid omen of clarity|omen of clarity] with relevance (10.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nTriggers from: [h:trigger:druid omen of clarity|omen of clarity] with relevance (10.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nTriggers from: [h:trigger:druid omen of clarity|omen of clarity] with relevance (10.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nTriggers from: [h:trigger:druid omen of clarity|omen of clarity] with relevance (10.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nTriggers from: [h:trigger:druid omen of clarity|omen of clarity] with relevance (10.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1494, 'action:druid thorns', 1, 'thorns [h:object|action] [c:do thorns|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nTriggers from: [h:trigger:druid thorns|thorns] with relevance (11.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1495, 'action:druid faerie fire (feral)', 1, 'faerie fire (feral) [h:object|action] [c:do faerie fire (feral)|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] with relevance (15.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] with relevance (15.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] with relevance (15.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] with relevance (20.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] with relevance (20.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] with relevance (20.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1496, 'action:druid bash', 1, 'bash [h:object|action] [c:do bash|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid bash|bash] with relevance (40.000) for [h:strategy:druid cc tank feral pvp|cc tank feral pvp]\r\nTriggers from: [h:trigger:druid bash|bash] with relevance (40.000) for [h:strategy:druid cc tank feral pve|cc tank feral pve]\r\nTriggers from: [h:trigger:druid bash|bash] with relevance (40.000) for [h:strategy:druid cc tank feral raid|cc tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1497, 'action:druid bash on enemy healer', 1, 'bash on enemy healer [h:object|action] [c:do bash on enemy healer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid bash on enemy healer|bash on enemy healer] with relevance (40.000) for [h:strategy:druid cc tank feral pvp|cc tank feral pvp]\r\nTriggers from: [h:trigger:druid bash on enemy healer|bash on enemy healer] with relevance (40.000) for [h:strategy:druid cc tank feral pve|cc tank feral pve]\r\nTriggers from: [h:trigger:druid bash on enemy healer|bash on enemy healer] with relevance (40.000) for [h:strategy:druid cc tank feral raid|cc tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1498, 'action:druid rejuvenation on party', 1, 'rejuvenation on party [h:object|action] [c:do rejuvenation on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:party member almost full health|party member almost full health] with relevance (60.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1499, 'action:druid nature\'s swiftness', 1, 'nature\'s swiftness [h:object|action] [c:do nature\'s swiftness|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] with relevance (20.000) for [h:strategy:druid boost balance raid|boost balance raid]\r\nTriggers from: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] with relevance (20.000) for [h:strategy:druid boost balance pve|boost balance pve]\r\nTriggers from: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] with relevance (20.000) for [h:strategy:druid boost balance pvp|boost balance pvp]\r\nTriggers from: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] with relevance (20.000) for [h:strategy:druid boost restoration pve|boost restoration pve]\r\nTriggers from: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] with relevance (20.000) for [h:strategy:druid boost restoration pvp|boost restoration pvp]\r\nTriggers from: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] with relevance (20.000) for [h:strategy:druid boost restoration raid|boost restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1500, 'action:druid rake', 1, 'rake [h:object|action] [c:do rake|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid rake|rake] with relevance (12.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:druid rake|rake] with relevance (12.000) for [h:strategy:druid dps feral pvp|dps feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1501, 'action:druid cat form', 1, 'cat form [h:object|action] [c:do cat form|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid cat form|cat form] with relevance (30.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nTriggers from: [h:trigger:druid cat form|cat form] with relevance (30.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nTriggers from: [h:trigger:druid cat form|cat form] with relevance (30.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (1502, 'action:druid cower', 1, 'cower [h:object|action] [c:do cower|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (20.000) for [h:strategy:druid dps feral raid|dps feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1503, 'action:druid pounce', 1, 'pounce [h:object|action] [c:do pounce|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (13.000) for [h:strategy:druid stealth dps feral pve|stealth dps feral pve]\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (13.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (13.000) for [h:strategy:druid stealth dps feral raid|stealth dps feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1504, 'action:druid prowl', 1, 'prowl [h:object|action] [c:do prowl|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (90.000) for [h:strategy:druid stealth dps feral pve|stealth dps feral pve]\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (90.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (90.000) for [h:strategy:druid stealth dps feral raid|stealth dps feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1505, 'action:druid gift of the wild on party', 1, 'gift of the wild on party [h:object|action] [c:do gift of the wild on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nTriggers from: [h:trigger:druid gift of the wild on party|gift of the wild on party] with relevance (13.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), (1506, 'action:druid entangling roots on snare target', 1, 'entangling roots on snare target [h:object|action] [c:do entangling roots on snare target|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid entangling roots on snare target|entangling roots on snare target] with relevance (25.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), - (1507, 'action:druid rejuvenation', 1, 'rejuvenation [h:object|action] [c:do rejuvenation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (62.000) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (62.000) for [h:strategy:druid heal|heal]', '', '', '', '', '', '', '', '', '', 0), - (1508, 'action:druid starfire', 1, 'starfire [h:object|action] [c:do starfire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid eclipse (lunar)|eclipse (lunar)] with relevance (16.000) for [h:strategy:druid caster|caster]\r\nDefault action with relevance (12.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), - (1509, 'action:druid nature\'s grasp', 1, 'nature\'s grasp [h:object|action] [c:do nature\'s grasp|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (90.000) for [h:strategy:druid caster|caster]', '', '', '', '', '', '', '', '', '', 0), - (1510, 'action:druid starfall', 1, 'starfall [h:object|action] [c:do starfall|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid caster aoe|caster aoe]', '', '', '', '', '', '', '', '', '', 0), - (1511, 'action:druid abolish poison on party', 1, 'abolish poison on party [h:object|action] [c:do abolish poison on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (51.000) for [h:strategy:druid cure|cure]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (51.000) for [h:strategy:druid cure|cure]', '', '', '', '', '', '', '', '', '', 0), - (1512, 'action:druid remove curse on party', 1, 'remove curse on party [h:object|action] [c:do remove curse on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (73.000) for [h:strategy:druid cure|cure]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (73.000) for [h:strategy:druid cure|cure]', '', '', '', '', '', '', '', '', '', 0), + (1507, 'action:druid rejuvenation', 1, 'rejuvenation [h:object|action] [c:do rejuvenation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (61.000) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (61.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:almost full health|almost full health] with relevance (61.000) for [h:strategy:druid restoration raid|restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (1508, 'action:druid starfire', 1, 'starfire [h:object|action] [c:do starfire|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (10.000) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (10.000) for [h:strategy:druid balance pvp|balance pvp]\r\nDefault action with relevance (1.000) for [h:strategy:druid balance raid|balance raid]', '', '', '', '', '', '', '', '', '', 0), + (1509, 'action:druid nature\'s grasp', 1, 'nature\'s grasp [h:object|action] [c:do nature\'s grasp|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (20.000) for [h:strategy:druid cc restoration raid|cc restoration raid]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (20.000) for [h:strategy:druid cc balance pve|cc balance pve]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (20.000) for [h:strategy:druid cc balance pvp|cc balance pvp]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (20.000) for [h:strategy:druid cc balance raid|cc balance raid]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (20.000) for [h:strategy:druid cc restoration pve|cc restoration pve]\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (20.000) for [h:strategy:druid cc restoration pvp|cc restoration pvp]', '', '', '', '', '', '', '', '', '', 0), + (1510, 'action:druid starfall', 1, 'starfall [h:object|action] [c:do starfall|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe balance pvp|aoe balance pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe balance pve|aoe balance pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe balance raid|aoe balance raid]', '', '', '', '', '', '', '', '', '', 0), + (1511, 'action:druid abolish poison on party', 1, 'abolish poison on party [h:object|action] [c:do abolish poison on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nTriggers from: [h:trigger:druid cure poison|cure poison] with relevance (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1512, 'action:druid remove curse on party', 1, 'remove curse on party [h:object|action] [c:do remove curse on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nTriggers from: [h:trigger:druid remove curse|remove curse] with relevance (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (1513, 'action:druid revive', 1, 'revive [h:object|action] [c:do revive|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:resurrect|resurrect] with relevance (22.000) for [h:strategy:druid nc|nc]', '', '', '', '', '', '', '', '', '', 0), (1514, 'value:RTSC next spell action', 1, 'RTSC next spell action [h:object|value] [c:cdebug values RTSC next spell action|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1515, 'value:active spell', 1, 'active spell [h:object|value] [c:cdebug values active spell|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (1515, 'value:active spell', 1, 'active spell [h:object|value] [c:cdebug values active spell|current value]\r\nThis value contains the spell id of the spell that the bot is currently casting.', '', '', '', '', '', '', '', '', '', 0), (1516, 'value:already seen players', 1, 'already seen players [h:object|value] [c:cdebug values already seen players|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1517, 'value:always loot list', 1, 'always loot list [h:object|value] [c:cdebug values always loot list|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (1517, 'value:always loot list', 1, 'always loot list [h:object|value] [c:cdebug values always loot list|current value]\r\nThis value contains a list of item ids that should always be looted.', '', '', '', '', '', '', '', '', '', 0), (1518, 'value:generic bool and', 1, 'and [h:object|value] [c:cdebug values and|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1519, 'value:aoe heal', 1, 'aoe heal [h:object|value] [c:cdebug values aoe heal|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1520, 'value:arena type', 1, 'arena type [h:object|value] [c:cdebug values arena type|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), @@ -1582,7 +1582,7 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1561, 'value:has mana', 1, 'has mana [h:object|value] [c:cdebug values has mana|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1562, 'value:has possible attack targets', 1, 'has possible attack targets [h:object|value] [c:cdebug values has possible attack targets|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1563, 'value:has totem', 1, 'has totem [h:object|value] [c:cdebug values has totem|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1564, 'value:has upgrade', 1, 'has upgrade [h:object|value] [c:cdebug values has upgrade|current value]\r\nThis value checks if a specific creature or game object drops an item that is an equipment upgrade for the bot.\r\nUsed values:\r\n[h:value|entry loot usage] ', '', '', '', '', '', '', '', '', '', 0), + (1564, 'value:has upgrade', 1, 'has upgrade [h:object|value] [c:cdebug values has upgrade|current value]\r\nThis value checks if a specific creature or game object drops an item that is an equipment upgrade for the bot.\r\nUsed values:\r\n[h:value|entry loot list] ', '', '', '', '', '', '', '', '', '', 0), (1565, 'value:have any totem', 1, 'have any totem [h:object|value] [c:cdebug values have any totem|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1566, 'value:money needed for', 1, 'money needed for [h:object|value] [c:cdebug values money needed for|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1567, 'value:health', 1, 'health [h:object|value] [c:cdebug values health|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), @@ -1638,7 +1638,7 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1617, 'chatfilter:class', 1, 'class [h:object|chatfilter]\r\nThis filter selects bots have a certain class.\r\nExamples:\r\n@rogue: All rogue bots.\r\n@warlock: All warlock bots.', '', '', '', '', '', '', '', '', '', 0), (1618, 'chatfilter:guild', 1, 'guild [h:object|chatfilter]\r\nThis filter selects bots based on their guild.\r\nExamples:\r\n@guild: All bots in a guild.\r\n@rank=Initiate: All bots that have rank Initiate in their guild.\r\n@guild=raiders: All bots in guild raiders.\r\n@noguild: All bots not in a guild.\r\n@gleader: All bots that are a guild leader.', '', '', '', '', '', '', '', '', '', 0), (1619, 'chatfilter:state', 1, 'state [h:object|chatfilter]\r\nThis filter selects bots based on their state.\r\nExamples:\r\n@outside: All bots that are outside of an instance.\r\n@needrepair: All bots that have durability below 20%.\r\n@inside: All bots that are inside an instance.', '', '', '', '', '', '', '', '', '', 0), - (1620, 'action:roll', 1, 'roll [h:object|action] [c:do roll|execute]\r\nThis will make the bot roll a certain way on a specific item.\r\nUsage: roll [itemlink].\r\nTypes are need, greed, pass and auto.\r\nWhen no itemlink is provided bots will roll on all current rollable loot.\r\nExamples:\r\nroll greed [item]\r\nroll auto\r\nSee also strategies [h:strategy|roll] and [h:strategy|delayed roll].\r\n\r\nUsed values:\r\n[h:value|item usage] [h:value|force item usage] \r\nCombat behavior:\r\nTriggers from: [h:trigger|roll] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|roll] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|roll] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|roll] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (1620, 'action:roll', 1, 'roll [h:object|action] [c:do roll|execute]\r\nThis will make the bot roll a certain way on a specific item.\r\nUsage: roll [itemlink].\r\nTypes are need, greed, pass, emote and auto.\r\nWhen no itemlink is provided bots will roll on all current rollable loot.\r\nExamples:\r\nroll greed [item]\r\nroll auto\r\nSee also strategies [h:strategy|roll] and [h:strategy|delayed roll].\r\n\r\nUsed values:\r\n[h:value|item usage] [h:value|force item usage] \r\nCombat behavior:\r\nTriggers from: [h:trigger|roll] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|roll] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|roll] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|roll] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1621, 'trigger:loot start roll', 1, 'loot start roll [h:object|trigger] [c:loot start roll|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|loot start roll] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|loot start roll] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|loot start roll] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (1622, 'chatfilter:role', 1, 'role [h:object|chatfilter]\r\nThis filter selects bots with a specific role or weapon range.\r\nExamples:\r\n@tank: All bots that have a tank spec.\r\n@ranged: All bots that use ranged attacks.\r\n@dps: All bots that do not have a tank or healing spec.\r\n@heal: All bots that have a healing spec.\r\n@notank: All bots that do not have a tank spec.\r\n@melee: All bots that use melee attacks.\r\n@nodps: All bots that have a tank or healing spec.\r\n@noheal: All bots that do not have a healing spec.', '', '', '', '', '', '', '', '', '', 0), (1623, 'trigger:keep', 1, 'keep [h:object|trigger] [c:keep|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|keep] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|keep] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|keep] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|keep] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), @@ -1649,17 +1649,17 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1628, 'action:keep', 1, 'keep [h:object|action] [c:do keep|execute]\r\nThis command will force bots to keep an item in their inventory.\r\nThe command has an optional parameter to specify what the bot should do with the items\r\nUsage: keep [itemlink or item qualifier]\r\nExample: keep equip gear\r\nExample: keep ? all\r\nExample: keep need [itemlink]\r\ntypes:\r\n?: list item and their forced usage.\r\nnone: the item will not be kept by the bot.\r\nkeep: the item will not be sold or destroyed.\r\nequip: the item will be equipped over other items.\r\ngreed: the bot will try to get more of this item and roll greed.\r\nneed: the bot will try to get more of this item and roll need.\r\n\r\nUsed values:\r\n[h:value|force item usage] \r\nCombat behavior:\r\nTriggers from: [h:trigger|keep] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|keep] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|keep] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|keep] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1629, 'action:loot start roll', 1, 'loot start roll [h:object|action] [c:do loot start roll|execute]\r\nThis is a WorldPacket action which will stores rollable item to be rolled on later.\r\n\r\nUsed values:\r\n[h:value|active rolls] \r\nCombat behavior:\r\nTriggers from: [h:trigger|loot start roll] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|loot start roll] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|loot start roll] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), (1630, 'value:active rolls', 1, 'active rolls [h:object|value] [c:cdebug values active rolls|current value]\r\nThis value contains the active rolls a bot has.\r\nThis value is filled and emptied when bots see and do rolls.\r\nUsed in actions:\r\n[h:action|loot start roll] ', '', '', '', '', '', '', '', '', '', 0), - (1631, 'value:force item usage', 1, 'force item usage [h:object|value] [c:cdebug values force item usage|current value]\r\nThis value overrides some reasons why a bot finds an item useful\r\nBased on this value bots will no longer sell/ah/destroy/unequip items.\r\nUsed in actions:\r\n[h:action|auto loot roll] [h:action|keep] [h:action|destroy] [h:action|roll] [h:action|loot roll] [h:action|smart destroy] ', '', '', '', '', '', '', '', '', '', 0), + (1631, 'value:force item usage', 1, 'force item usage [h:object|value] [c:cdebug values force item usage|current value]\r\nThis value overrides some reasons why a bot finds an item useful\r\nBased on this value bots will no longer sell/ah/destroy/unequip items.\r\nUsed in actions:\r\n[h:action|smart destroy] [h:action|destroy] [h:action|roll] [h:action|keep] [h:action|loot roll] [h:action|auto loot roll] ', '', '', '', '', '', '', '', '', '', 0), (1632, 'chatfilter:usage', 1, 'usage [h:object|chatfilter]\r\nThis filter selects bots based on the use they have for a specific item.\r\nExamples:\r\n@use=[itemlink]: All bots that have some use for this item.\r\n@need=[itemlink]: All bots that will roll need on this item.\r\n@sell=[itemlink]: All bots that will vendor or AH this item.\r\n@greed=[itemlink]: All bots that will roll greed on this item.', '', '', '', '', '', '', '', '', '', 0), (1633, 'action:rocket boots', 1, 'rocket boots [h:object|action] [c:do rocket boots|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|player has flag] with relevance (81.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|player has flag] with relevance (81.000) for [h:strategy|warsong]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|player has flag] with relevance (81.000) for [h:strategy|eye]\r\nTriggers from: [h:trigger|player has flag] with relevance (81.000) for [h:strategy|warsong]', '', '', '', '', '', '', '', '', '', 0), (1634, 'chatfilter:random', 1, 'random [h:object|chatfilter]\r\nThis filter selects random bots.\r\nExamples:\r\n@random: 50% chance the bot responds.\r\n@random=25: 25% chance the bot responds.\r\n@fixedrandom: 50% chance the bot responds. But always the same bots.\r\n@fixedrandom=25: 25% chance the bot responds. But always the same bots.', '', '', '', '', '', '', '', '', '', 0), - (1635, 'action:druid shred', 1, 'shred [h:object|action] [c:do shred|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (20.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (20.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), + (1635, 'action:druid shred', 1, 'shred [h:object|action] [c:do shred|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (11.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (11.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (11.000) for [h:strategy:druid dps feral raid|dps feral raid]', '', '', '', '', '', '', '', '', '', 0), (1636, 'value:not', 1, 'not [h:object|value] [c:cdebug values not|current value]\r\nThis value will return false if any of the values included in the qualifier return true.', '', '', '', '', '', '', '', '', '', 0), - (1637, 'trigger:hunter viper sting on attacker', 1, 'viper sting on attacker [h:object|trigger] [c:viper sting on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter viper sting on attacker|viper sting on attacker] (18.000) for [h:strategy:hunter aoe|aoe]', '', '', '', '', '', '', '', '', '', 0), + (1637, 'trigger:hunter viper sting on attacker', 1, 'viper sting on attacker [h:object|trigger] [c:viper sting on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000) for [h:strategy:hunter sting beast mastery pve|sting beast mastery pve]\r\nExecutes: [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000) for [h:strategy:hunter sting beast mastery pvp|sting beast mastery pvp]\r\nExecutes: [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000) for [h:strategy:hunter sting beast mastery raid|sting beast mastery raid]\r\nExecutes: [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000) for [h:strategy:hunter sting marksmanship pve|sting marksmanship pve]\r\nExecutes: [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000) for [h:strategy:hunter sting marksmanship pvp|sting marksmanship pvp]\r\nExecutes: [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000) for [h:strategy:hunter sting marksmanship raid|sting marksmanship raid]\r\nExecutes: [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000) for [h:strategy:hunter sting survival pve|sting survival pve]\r\nExecutes: [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000) for [h:strategy:hunter sting survival pvp|sting survival pvp]\r\nExecutes: [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000) for [h:strategy:hunter sting survival raid|sting survival raid]\r\nExecutes: [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000) for [h:strategy:hunter sting viper|sting viper]', '', '', '', '', '', '', '', '', '', 0), (1638, 'trigger:reset values', 1, 'reset values [h:object|trigger] [c:reset values|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|reset values] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|reset values] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|reset values] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|reset values] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1639, 'action:pull action', 1, 'pull action [h:object|action] [c:do pull action|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:pull start|pull start] with relevance (60.000) for [h:strategy:druid pull|pull]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:pull start|pull start] with relevance (60.000) for [h:strategy:druid pull|pull]', '', '', '', '', '', '', '', '', '', 0), + (1639, 'action:pull action', 1, 'pull action [h:object|action] [c:do pull action|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:pull start|pull start] with relevance (30.000) for [h:strategy:druid pull|pull]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:pull start|pull start] with relevance (30.000) for [h:strategy:druid pull|pull]', '', '', '', '', '', '', '', '', '', 0), (1640, 'value:gos close', 1, 'gos close [h:object|value] [c:cdebug values gos close|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1641, 'action:hunter concussive shot', 1, 'concussive shot [h:object|action] [c:do concussive shot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy fifteen yards|enemy fifteen yards] with relevance (61.000) for [h:strategy:hunter dps|dps]\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (61.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), + (1641, 'action:hunter concussive shot', 1, 'concussive shot [h:object|action] [c:do concussive shot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy fifteen yards|enemy fifteen yards] with relevance (21.000) for [h:strategy:hunter cc beast mastery pvp|cc beast mastery pvp]\r\nTriggers from: [h:trigger:enemy fifteen yards|enemy fifteen yards] with relevance (21.000) for [h:strategy:hunter cc marksmanship pvp|cc marksmanship pvp]\r\nTriggers from: [h:trigger:enemy fifteen yards|enemy fifteen yards] with relevance (21.000) for [h:strategy:hunter cc marksmanship pve|cc marksmanship pve]\r\nTriggers from: [h:trigger:enemy fifteen yards|enemy fifteen yards] with relevance (21.000) for [h:strategy:hunter cc beast mastery pve|cc beast mastery pve]\r\nTriggers from: [h:trigger:enemy fifteen yards|enemy fifteen yards] with relevance (21.000) for [h:strategy:hunter cc survival pve|cc survival pve]\r\nTriggers from: [h:trigger:enemy fifteen yards|enemy fifteen yards] with relevance (21.000) for [h:strategy:hunter cc survival pvp|cc survival pvp]', '', '', '', '', '', '', '', '', '', 0), (1642, 'action:druid claw', 1, 'claw [h:object|action] [c:do claw|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (20.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (20.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), (1643, 'action:go', 1, 'go [h:object|action] [c:do go|execute]\r\nThis will make the bot move to a specific location.\r\nExamples:\r\ngo [game object] : Move to the specified game object.\r\ngo : Move to specified player or npc.\r\ngo x;y : Move to gps location.\r\ngo where : Ask the bot where it wants to go.\r\ngo to : Travel up to specified object\r\n or while following explain how to get there.\r\ngo travel : Set the bots current travel destination\r\n to specified object and travel (up to) that location.\r\n\r\nUsed values:\r\n[h:value|travel target] [h:value|nearest npcs] [h:value|nearest friendly players] [h:value|position] \r\nCombat behavior:\r\nTriggers from: [h:trigger|go] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|go] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|go] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|go] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1644, 'trigger:mc rune close', 1, 'mc rune close [h:object|trigger] [c:mc rune close|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|douse mc rune] (1.000) for [h:strategy|molten core]', '', '', '', '', '', '', '', '', '', 0), @@ -1667,14 +1667,14 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1646, 'action:reset values', 1, 'reset values [h:object|action] [c:do reset values|execute]\r\nReset the settings of the bot to the default values.\r\nSaved values will be cleared.\r\nUsed actions:\r\n[h:action|reset ai] \r\nCombat behavior:\r\nTriggers from: [h:trigger|reset values] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|reset values] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|reset values] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|reset values] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1647, 'strategy:travel once', 1, 'travel once [h:object|strategy] [c:co ~travel once|toggle combat][c:nc ~travel once|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|far from travel target] do [h:action|check mount state] (1.000)[h:action|move to travel target] (1.000)\r\nOn: [h:trigger|no travel target] do [h:action|choose travel target] (6.000)\r\nDefault:[h:action|travel] (1.000)', '', '', '', '', '', '', '', '', '', 0), (1648, 'trigger:mc rune in sight', 1, 'mc rune in sight [h:object|trigger] [c:mc rune in sight|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|name] (1.000) for [h:strategy|molten core]', '', '', '', '', '', '', '', '', '', 0), - (1649, 'trigger:pull start', 1, 'pull start [h:object|trigger] [c:pull start|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000) for [h:strategy:druid pull|pull]\r\nNon combat behavior:\r\nExecutes: [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000) for [h:strategy:druid pull|pull]', '', '', '', '', '', '', '', '', '', 0), - (1650, 'trigger:enemy fifteen yards', 1, 'enemy fifteen yards [h:object|trigger] [c:enemy fifteen yards|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter concussive shot|concussive shot] (61.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), + (1649, 'trigger:pull start', 1, 'pull start [h:object|trigger] [c:pull start|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000) for [h:strategy:druid pull|pull]\r\nNon combat behavior:\r\nExecutes: [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000) for [h:strategy:druid pull|pull]', '', '', '', '', '', '', '', '', '', 0), + (1650, 'trigger:enemy fifteen yards', 1, 'enemy fifteen yards [h:object|trigger] [c:enemy fifteen yards|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter concussive shot|concussive shot] (21.000) for [h:strategy:hunter cc beast mastery pvp|cc beast mastery pvp]\r\nExecutes: [h:action:hunter concussive shot|concussive shot] (21.000) for [h:strategy:hunter cc marksmanship pvp|cc marksmanship pvp]\r\nExecutes: [h:action:hunter concussive shot|concussive shot] (21.000) for [h:strategy:hunter cc marksmanship pve|cc marksmanship pve]\r\nExecutes: [h:action:hunter concussive shot|concussive shot] (21.000) for [h:strategy:hunter cc beast mastery pve|cc beast mastery pve]\r\nExecutes: [h:action:hunter concussive shot|concussive shot] (21.000) for [h:strategy:hunter cc survival pve|cc survival pve]\r\nExecutes: [h:action:hunter concussive shot|concussive shot] (21.000) for [h:strategy:hunter cc survival pvp|cc survival pvp]', '', '', '', '', '', '', '', '', '', 0), (1651, 'action:reset strats', 1, 'reset strats [h:object|action] [c:do reset strats|execute]\r\nReset the strategies of the bot to the standard values.\r\nSaved strategies will be cleared.\r\nUsed actions:\r\n[h:action|reset ai] \r\nCombat behavior:\r\nTriggers from: [h:trigger|reset strats] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|reset strats] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|reset strats] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|reset strats] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1652, 'action:name', 1, 'name [h:object|action] [c:do name|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|mc rune in sight] with relevance (1.000) for [h:strategy|molten core]', '', '', '', '', '', '', '', '', '', 0), (1653, 'action:douse mc rune', 1, 'douse mc rune [h:object|action] [c:do douse mc rune|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|mc rune close] with relevance (1.000) for [h:strategy|molten core]', '', '', '', '', '', '', '', '', '', 0), - (1654, 'action:pull start', 1, 'pull start [h:object|action] [c:do pull start|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:pull start|pull start] with relevance (60.000) for [h:strategy:druid pull|pull]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:pull start|pull start] with relevance (60.000) for [h:strategy:druid pull|pull]', '', '', '', '', '', '', '', '', '', 0), - (1655, 'action:hunter viper sting on attacker', 1, 'viper sting on attacker [h:object|action] [c:do viper sting on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter viper sting on attacker|viper sting on attacker] with relevance (18.000) for [h:strategy:hunter aoe|aoe]', '', '', '', '', '', '', '', '', '', 0), - (1656, 'action:druid rip', 1, 'rip [h:object|action] [c:do rip|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid rake|rake] with relevance (24.000) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:druid rake|rake] with relevance (24.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), + (1654, 'action:pull start', 1, 'pull start [h:object|action] [c:do pull start|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:pull start|pull start] with relevance (30.000) for [h:strategy:druid pull|pull]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:pull start|pull start] with relevance (30.000) for [h:strategy:druid pull|pull]', '', '', '', '', '', '', '', '', '', 0), + (1655, 'action:hunter viper sting on attacker', 1, 'viper sting on attacker [h:object|action] [c:do viper sting on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter viper sting on attacker|viper sting on attacker] with relevance (21.000) for [h:strategy:hunter sting beast mastery pve|sting beast mastery pve]\r\nTriggers from: [h:trigger:hunter viper sting on attacker|viper sting on attacker] with relevance (21.000) for [h:strategy:hunter sting beast mastery pvp|sting beast mastery pvp]\r\nTriggers from: [h:trigger:hunter viper sting on attacker|viper sting on attacker] with relevance (21.000) for [h:strategy:hunter sting beast mastery raid|sting beast mastery raid]\r\nTriggers from: [h:trigger:hunter viper sting on attacker|viper sting on attacker] with relevance (21.000) for [h:strategy:hunter sting marksmanship pve|sting marksmanship pve]\r\nTriggers from: [h:trigger:hunter viper sting on attacker|viper sting on attacker] with relevance (21.000) for [h:strategy:hunter sting marksmanship pvp|sting marksmanship pvp]\r\nTriggers from: [h:trigger:hunter viper sting on attacker|viper sting on attacker] with relevance (21.000) for [h:strategy:hunter sting marksmanship raid|sting marksmanship raid]\r\nTriggers from: [h:trigger:hunter viper sting on attacker|viper sting on attacker] with relevance (21.000) for [h:strategy:hunter sting survival pve|sting survival pve]\r\nTriggers from: [h:trigger:hunter viper sting on attacker|viper sting on attacker] with relevance (21.000) for [h:strategy:hunter sting survival pvp|sting survival pvp]\r\nTriggers from: [h:trigger:hunter viper sting on attacker|viper sting on attacker] with relevance (21.000) for [h:strategy:hunter sting survival raid|sting survival raid]\r\nTriggers from: [h:trigger:hunter viper sting on attacker|viper sting on attacker] with relevance (21.000) for [h:strategy:hunter sting viper|sting viper]', '', '', '', '', '', '', '', '', '', 0), + (1656, 'action:druid rip', 1, 'rip [h:object|action] [c:do rip|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid rip|rip] with relevance (14.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:druid rip|rip] with relevance (14.000) for [h:strategy:druid dps feral pvp|dps feral pvp]', '', '', '', '', '', '', '', '', '', 0), (1657, 'value:action possible', 1, 'action possible [h:object|value] [c:cdebug values action possible|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1658, 'value:entry filter', 1, 'entry filter [h:object|value] [c:cdebug values entry filter|current value]\r\nThis value will returns only the ObjectGuids of specific entries.', '', '', '', '', '', '', '', '', '', 0), (1659, 'value:go trapped filter', 1, 'go trapped filter [h:object|value] [c:cdebug values go trapped filter|current value]\r\nThis value will returns only the ObjectGuids that are not trapped.', '', '', '', '', '', '', '', '', '', 0), @@ -1686,34 +1686,34 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1665, 'value:range filter', 1, 'range filter [h:object|value] [c:cdebug values range filter|current value]\r\nThis value will returns only the ObjectGuids within a specific range.', '', '', '', '', '', '', '', '', '', 0), (1666, 'chatfilter:talent spec', 1, 'talent spec [h:object|chatfilter]\r\nThis filter selects bots based on their primary talent specialisation.\r\nExamples:\r\n@frost: All bots that have frost spec.\r\n@holy: All bots that have holy spec.', '', '', '', '', '', '', '', '', '', 0), (1667, 'chatfilter:location', 1, 'location [h:object|chatfilter]\r\nThis filter selects bots based on map or zone name.\r\nExamples:\r\n@azeroth: All bots in azeroth overworld.\r\n@eastern kingdoms: All bots in eastern kingdoms overworld.\r\n@dun morogh: All bots in the dun morogh zone.', '', '', '', '', '', '', '', '', '', 0), - (1668, 'list:druid strategy', 1, 'druid strategies : \r\n[h:strategy:druid bear|bear] [h:strategy:druid bear|bear] [h:strategy:druid boost|boost] [h:strategy:druid buff|buff] [h:strategy:druid caster aoe|caster aoe] [h:strategy:druid caster debuff|caster debuff] [h:strategy:druid caster debuff|caster debuff]\r\n[h:strategy:druid caster|caster] [h:strategy:druid cat aoe|cat aoe] [h:strategy:druid cat|cat] [h:strategy:druid cat|cat] [h:strategy:druid cc|cc] [h:strategy:druid cure|cure] [h:strategy:druid heal|heal] [h:strategy:druid melee|melee]\r\n[h:strategy:druid nc|nc] [h:strategy:druid pull|pull] [h:strategy:druid react|react] ', '', '', '', '', '', '', '', '', '', 0), + (1668, 'list:druid strategy', 1, 'druid strategies : \r\n[h:strategy:druid aoe balance pve|aoe balance pve] [h:strategy:druid aoe balance pvp|aoe balance pvp] [h:strategy:druid aoe balance raid|aoe balance raid] [h:strategy:druid aoe dps feral pve|aoe dps feral pve]\r\n[h:strategy:druid aoe dps feral pvp|aoe dps feral pvp] [h:strategy:druid aoe dps feral raid|aoe dps feral raid] [h:strategy:druid aoe restoration pve|aoe restoration pve] [h:strategy:druid aoe restoration pvp|aoe restoration pvp]\r\n[h:strategy:druid aoe restoration raid|aoe restoration raid] [h:strategy:druid aoe tank feral pve|aoe tank feral pve] [h:strategy:druid aoe tank feral pvp|aoe tank feral pvp] [h:strategy:druid aoe tank feral raid|aoe tank feral raid]\r\n[h:strategy:druid aoe|aoe] [h:strategy:druid balance pve|balance pve] [h:strategy:druid balance pvp|balance pvp] [h:strategy:druid balance raid|balance raid] [h:strategy:druid balance|balance] [h:strategy:druid boost balance pve|boost balance pve]\r\n[h:strategy:druid boost balance pvp|boost balance pvp] [h:strategy:druid boost balance raid|boost balance raid] [h:strategy:druid boost dps feral pve|boost dps feral pve] [h:strategy:druid boost dps feral pvp|boost dps feral pvp]\r\n[h:strategy:druid boost dps feral raid|boost dps feral raid] [h:strategy:druid boost restoration pve|boost restoration pve] [h:strategy:druid boost restoration pvp|boost restoration pvp] [h:strategy:druid boost restoration raid|boost restoration raid]\r\n[h:strategy:druid boost tank feral pve|boost tank feral pve] [h:strategy:druid boost tank feral pvp|boost tank feral pvp] [h:strategy:druid boost tank feral raid|boost tank feral raid] [h:strategy:druid boost|boost]\r\n[h:strategy:druid buff balance pve|buff balance pve] [h:strategy:druid buff balance pvp|buff balance pvp] [h:strategy:druid buff balance raid|buff balance raid] [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\n[h:strategy:druid buff dps feral pvp|buff dps feral pvp] [h:strategy:druid buff dps feral raid|buff dps feral raid] [h:strategy:druid buff restoration pve|buff restoration pve] [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\n[h:strategy:druid buff restoration raid|buff restoration raid] [h:strategy:druid buff tank feral pve|buff tank feral pve] [h:strategy:druid buff tank feral pvp|buff tank feral pvp] [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\n[h:strategy:druid buff|buff] [h:strategy:druid cc balance pve|cc balance pve] [h:strategy:druid cc balance pvp|cc balance pvp] [h:strategy:druid cc balance raid|cc balance raid] [h:strategy:druid cc dps feral pve|cc dps feral pve]\r\n[h:strategy:druid cc dps feral pvp|cc dps feral pvp] [h:strategy:druid cc dps feral raid|cc dps feral raid] [h:strategy:druid cc restoration pve|cc restoration pve] [h:strategy:druid cc restoration pvp|cc restoration pvp]\r\n[h:strategy:druid cc restoration raid|cc restoration raid] [h:strategy:druid cc tank feral pve|cc tank feral pve] [h:strategy:druid cc tank feral pvp|cc tank feral pvp] [h:strategy:druid cc tank feral raid|cc tank feral raid] [h:strategy:druid cc|cc]\r\n[h:strategy:druid cure balance pve|cure balance pve] [h:strategy:druid cure balance pvp|cure balance pvp] [h:strategy:druid cure balance raid|cure balance raid] [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\n[h:strategy:druid cure dps feral pvp|cure dps feral pvp] [h:strategy:druid cure dps feral raid|cure dps feral raid] [h:strategy:druid cure restoration pve|cure restoration pve] [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\n[h:strategy:druid cure restoration raid|cure restoration raid] [h:strategy:druid cure tank feral pve|cure tank feral pve] [h:strategy:druid cure tank feral pvp|cure tank feral pvp] [h:strategy:druid cure tank feral raid|cure tank feral raid]\r\n[h:strategy:druid cure|cure] [h:strategy:druid dps feral pve|dps feral pve] [h:strategy:druid dps feral pvp|dps feral pvp] [h:strategy:druid dps feral raid|dps feral raid] [h:strategy:druid dps feral|dps feral] [h:strategy:druid dps feral|dps feral]\r\n[h:strategy:druid offheal pve|offheal pve] [h:strategy:druid offheal pvp|offheal pvp] [h:strategy:druid offheal raid|offheal raid] [h:strategy:druid offheal|offheal] [h:strategy:druid powershift|powershift] [h:strategy:druid pull|pull]\r\n[h:strategy:druid restoration pve|restoration pve] [h:strategy:druid restoration pvp|restoration pvp] [h:strategy:druid restoration raid|restoration raid] [h:strategy:druid restoration|restoration] [h:strategy:druid restoration|restoration]\r\n[h:strategy:druid stealth dps feral pve|stealth dps feral pve] [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp] [h:strategy:druid stealth dps feral raid|stealth dps feral raid] [h:strategy:druid stealthed|stealthed]\r\n[h:strategy:druid stealth|stealth] [h:strategy:druid tank feral pve|tank feral pve] [h:strategy:druid tank feral pvp|tank feral pvp] [h:strategy:druid tank feral raid|tank feral raid] [h:strategy:druid tank feral|tank feral]\r\n[h:strategy:druid tank feral|tank feral] [h:strategy:druid tank feral|tank feral] ', '', '', '', '', '', '', '', '', '', 0), (1669, 'trigger:mana tap', 1, 'mana tap [h:object|trigger] [c:mana tap|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|mana tap] (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nExecutes: [h:action|mana tap] (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (1670, 'action:shaman totemic recall', 1, 'totemic recall [h:object|action] [c:do totemic recall|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman ready to remove totems|ready to remove totems] with relevance (10.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nTriggers from: [h:trigger:shaman ready to remove totems|ready to remove totems] with relevance (10.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nTriggers from: [h:trigger:shaman ready to remove totems|ready to remove totems] with relevance (10.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nTriggers from: [h:trigger:shaman ready to remove totems|ready to remove totems] with relevance (10.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nTriggers from: [h:trigger:shaman ready to remove totems|ready to remove totems] with relevance (10.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nTriggers from: [h:trigger:shaman ready to remove totems|ready to remove totems] with relevance (10.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:shaman ready to remove totems|ready to remove totems] with relevance (10.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:shaman ready to remove totems|ready to remove totems] with relevance (10.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:shaman ready to remove totems|ready to remove totems] with relevance (10.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), - (1671, 'list:priest strategy', 1, 'priest strategies : \r\n[h:strategy:priest boost|boost] [h:strategy:priest buff|buff] [h:strategy:priest cc|cc] [h:strategy:priest cure|cure] [h:strategy:priest heal|heal] [h:strategy:priest holy|holy] [h:strategy:priest nc|nc] [h:strategy:priest pull|pull]\r\n[h:strategy:priest react|react] [h:strategy:priest rshadow|rshadow] [h:strategy:priest shadow aoe|shadow aoe] [h:strategy:priest shadow aoe|shadow aoe] [h:strategy:priest shadow debuff|shadow debuff] [h:strategy:priest shadow debuff|shadow debuff]\r\n[h:strategy:priest shadow|shadow] [h:strategy:priest shadow|shadow] ', '', '', '', '', '', '', '', '', '', 0), - (1672, 'list:warrior strategy', 1, 'warrior strategies : \r\n[h:strategy:warrior aoe arms pve|aoe arms pve] [h:strategy:warrior aoe arms pvp|aoe arms pvp] [h:strategy:warrior aoe arms raid|aoe arms raid] [h:strategy:warrior aoe fury pve|aoe fury pve] [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\n[h:strategy:warrior aoe fury raid|aoe fury raid] [h:strategy:warrior aoe protection pve|aoe protection pve] [h:strategy:warrior aoe protection pvp|aoe protection pvp] [h:strategy:warrior aoe protection raid|aoe protection raid]\r\n[h:strategy:warrior aoe|aoe] [h:strategy:warrior arms pve|arms pve] [h:strategy:warrior arms pvp|arms pvp] [h:strategy:warrior arms raid|arms raid] [h:strategy:warrior arms|arms] [h:strategy:warrior buff arms pve|buff arms pve]\r\n[h:strategy:warrior buff arms pvp|buff arms pvp] [h:strategy:warrior buff arms raid|buff arms raid] [h:strategy:warrior buff fury pve|buff fury pve] [h:strategy:warrior buff fury pvp|buff fury pvp] [h:strategy:warrior buff fury raid|buff fury raid]\r\n[h:strategy:warrior buff protection pve|buff protection pve] [h:strategy:warrior buff protection pvp|buff protection pvp] [h:strategy:warrior buff protection raid|buff protection raid] [h:strategy:warrior buff|buff]\r\n[h:strategy:warrior cc arms pve|cc arms pve] [h:strategy:warrior cc arms pvp|cc arms pvp] [h:strategy:warrior cc arms raid|cc arms raid] [h:strategy:warrior cc fury pve|cc fury pve] [h:strategy:warrior cc fury pvp|cc fury pvp]\r\n[h:strategy:warrior cc fury raid|cc fury raid] [h:strategy:warrior cc protection pve|cc protection pve] [h:strategy:warrior cc protection pvp|cc protection pvp] [h:strategy:warrior cc protection raid|cc protection raid] [h:strategy:warrior cc|cc]\r\n[h:strategy:warrior fury pve|fury pve] [h:strategy:warrior fury pvp|fury pvp] [h:strategy:warrior fury raid|fury raid] [h:strategy:warrior fury|fury] [h:strategy:warrior protection pve|protection pve] [h:strategy:warrior protection pvp|protection pvp]\r\n[h:strategy:warrior protection raid|protection raid] [h:strategy:warrior protection|protection] [h:strategy:warrior protection|protection] [h:strategy:warrior pull|pull] ', '', '', '', '', '', '', '', '', '', 0), - (1673, 'list:paladin strategy', 1, 'paladin strategies : \r\n[h:strategy:paladin aoe holy pve|aoe holy pve] [h:strategy:paladin aoe holy pvp|aoe holy pvp] [h:strategy:paladin aoe holy raid|aoe holy raid] [h:strategy:paladin aoe protection pve|aoe protection pve]\r\n[h:strategy:paladin aoe protection pvp|aoe protection pvp] [h:strategy:paladin aoe protection raid|aoe protection raid] [h:strategy:paladin aoe retribution pve|aoe retribution pve] [h:strategy:paladin aoe retribution pvp|aoe retribution pvp]\r\n[h:strategy:paladin aoe retribution raid|aoe retribution raid] [h:strategy:paladin aoe|aoe] [h:strategy:paladin aura concentration|aura concentration] [h:strategy:paladin aura crusader|aura crusader] [h:strategy:paladin aura devotion|aura devotion]\r\n[h:strategy:paladin aura fire|aura fire] [h:strategy:paladin aura frost|aura frost] [h:strategy:paladin aura holy pve|aura holy pve] [h:strategy:paladin aura holy pvp|aura holy pvp] [h:strategy:paladin aura holy raid|aura holy raid]\r\n[h:strategy:paladin aura protection pve|aura protection pve] [h:strategy:paladin aura protection pvp|aura protection pvp] [h:strategy:paladin aura protection raid|aura protection raid] [h:strategy:paladin aura retribution pve|aura retribution pve]\r\n[h:strategy:paladin aura retribution pvp|aura retribution pvp] [h:strategy:paladin aura retribution raid|aura retribution raid] [h:strategy:paladin aura retribution|aura retribution] [h:strategy:paladin aura sanctity|aura sanctity]\r\n[h:strategy:paladin aura shadow|aura shadow] [h:strategy:paladin aura|aura] [h:strategy:paladin blessing holy pve|blessing holy pve] [h:strategy:paladin blessing holy pvp|blessing holy pvp] [h:strategy:paladin blessing holy raid|blessing holy raid]\r\n[h:strategy:paladin blessing kings|blessing kings] [h:strategy:paladin blessing light|blessing light] [h:strategy:paladin blessing might|blessing might] [h:strategy:paladin blessing protection pve|blessing protection pve]\r\n[h:strategy:paladin blessing protection pvp|blessing protection pvp] [h:strategy:paladin blessing protection raid|blessing protection raid] [h:strategy:paladin blessing retribution pve|blessing retribution pve]\r\n[h:strategy:paladin blessing retribution pvp|blessing retribution pvp] [h:strategy:paladin blessing retribution raid|blessing retribution raid] [h:strategy:paladin blessing salvation|blessing salvation]\r\n[h:strategy:paladin blessing sanctuary|blessing sanctuary] [h:strategy:paladin blessing wisdom|blessing wisdom] [h:strategy:paladin blessing|blessing] [h:strategy:paladin buff holy pve|buff holy pve] [h:strategy:paladin buff holy pvp|buff holy pvp]\r\n[h:strategy:paladin buff holy raid|buff holy raid] [h:strategy:paladin buff protection pve|buff protection pve] [h:strategy:paladin buff protection pvp|buff protection pvp] [h:strategy:paladin buff protection raid|buff protection raid]\r\n[h:strategy:paladin buff retribution pve|buff retribution pve] [h:strategy:paladin buff retribution pvp|buff retribution pvp] [h:strategy:paladin buff retribution raid|buff retribution raid] [h:strategy:paladin buff|buff]\r\n[h:strategy:paladin cc holy pve|cc holy pve] [h:strategy:paladin cc holy pvp|cc holy pvp] [h:strategy:paladin cc holy raid|cc holy raid] [h:strategy:paladin cc protection pve|cc protection pve] [h:strategy:paladin cc protection pvp|cc protection pvp]\r\n[h:strategy:paladin cc protection raid|cc protection raid] [h:strategy:paladin cc retribution pve|cc retribution pve] [h:strategy:paladin cc retribution pvp|cc retribution pvp] [h:strategy:paladin cc retribution raid|cc retribution raid]\r\n[h:strategy:paladin cc|cc] [h:strategy:paladin cure holy pve|cure holy pve] [h:strategy:paladin cure holy pvp|cure holy pvp] [h:strategy:paladin cure holy raid|cure holy raid] [h:strategy:paladin cure protection pve|cure protection pve]\r\n[h:strategy:paladin cure protection pvp|cure protection pvp] [h:strategy:paladin cure protection raid|cure protection raid] [h:strategy:paladin cure retribution pve|cure retribution pve] [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\n[h:strategy:paladin cure retribution raid|cure retribution raid] [h:strategy:paladin cure|cure] [h:strategy:paladin holy pve|holy pve] [h:strategy:paladin holy pvp|holy pvp] [h:strategy:paladin holy raid|holy raid] [h:strategy:paladin holy|holy]\r\n[h:strategy:paladin protection pve|protection pve] [h:strategy:paladin protection pvp|protection pvp] [h:strategy:paladin protection raid|protection raid] [h:strategy:paladin protection|protection] [h:strategy:paladin protection|protection]\r\n[h:strategy:paladin pull|pull] [h:strategy:paladin retribution pve|retribution pve] [h:strategy:paladin retribution pvp|retribution pvp] [h:strategy:paladin retribution raid|retribution raid] [h:strategy:paladin retribution|retribution] ', '', '', '', '', '', '', '', '', '', 0), - (1674, 'list:hunter strategy', 1, 'hunter strategies : \r\n[h:strategy:hunter aoe|aoe] [h:strategy:hunter bdps|bdps] [h:strategy:hunter bmana|bmana] [h:strategy:hunter boost|boost] [h:strategy:hunter bspeed|bspeed] [h:strategy:hunter cc|cc] [h:strategy:hunter dps debuff|dps debuff] [h:strategy:hunter dps|dps]\r\n[h:strategy:hunter nc|nc] [h:strategy:hunter pet|pet] [h:strategy:hunter pull|pull] [h:strategy:hunter react|react] [h:strategy:hunter rnature|rnature] ', '', '', '', '', '', '', '', '', '', 0), - (1675, 'list:warlock strategy', 1, 'warlock strategies : \r\n[h:strategy:warlock affliction pve|affliction pve] [h:strategy:warlock affliction pvp|affliction pvp] [h:strategy:warlock affliction raid|affliction raid] [h:strategy:warlock affliction|affliction]\r\n[h:strategy:warlock aoe affliction pve|aoe affliction pve] [h:strategy:warlock aoe affliction pvp|aoe affliction pvp] [h:strategy:warlock aoe affliction raid|aoe affliction raid] [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\n[h:strategy:warlock aoe demonology pvp|aoe demonology pvp] [h:strategy:warlock aoe demonology raid|aoe demonology raid] [h:strategy:warlock aoe destruction pve|aoe destruction pve] [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\n[h:strategy:warlock aoe destruction raid|aoe destruction raid] [h:strategy:warlock aoe|aoe] [h:strategy:warlock buff affliction pve|buff affliction pve] [h:strategy:warlock buff affliction pvp|buff affliction pvp]\r\n[h:strategy:warlock buff affliction raid|buff affliction raid] [h:strategy:warlock buff demonology pve|buff demonology pve] [h:strategy:warlock buff demonology pvp|buff demonology pvp] [h:strategy:warlock buff demonology raid|buff demonology raid]\r\n[h:strategy:warlock buff destruction pve|buff destruction pve] [h:strategy:warlock buff destruction pvp|buff destruction pvp] [h:strategy:warlock buff destruction raid|buff destruction raid] [h:strategy:warlock buff|buff]\r\n[h:strategy:warlock cc affliction pve|cc affliction pve] [h:strategy:warlock cc affliction pvp|cc affliction pvp] [h:strategy:warlock cc affliction raid|cc affliction raid] [h:strategy:warlock cc demonology pve|cc demonology pve]\r\n[h:strategy:warlock cc demonology pvp|cc demonology pvp] [h:strategy:warlock cc demonology raid|cc demonology raid] [h:strategy:warlock cc destruction pve|cc destruction pve] [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\n[h:strategy:warlock cc destruction raid|cc destruction raid] [h:strategy:warlock cc|cc] [h:strategy:warlock curse affliction pve|curse affliction pve] [h:strategy:warlock curse affliction pvp|curse affliction pvp]\r\n[h:strategy:warlock curse affliction raid|curse affliction raid] [h:strategy:warlock curse agony|curse agony] [h:strategy:warlock curse demonology pve|curse demonology pve] [h:strategy:warlock curse demonology pvp|curse demonology pvp]\r\n[h:strategy:warlock curse demonology raid|curse demonology raid] [h:strategy:warlock curse destruction pve|curse destruction pve] [h:strategy:warlock curse destruction pvp|curse destruction pvp]\r\n[h:strategy:warlock curse destruction raid|curse destruction raid] [h:strategy:warlock curse doom|curse doom] [h:strategy:warlock curse elements|curse elements] [h:strategy:warlock curse recklessness|curse recklessness]\r\n[h:strategy:warlock curse shadow|curse shadow] [h:strategy:warlock curse tongues|curse tongues] [h:strategy:warlock curse weakness|curse weakness] [h:strategy:warlock curse|curse] [h:strategy:warlock demonology pve|demonology pve]\r\n[h:strategy:warlock demonology pvp|demonology pvp] [h:strategy:warlock demonology raid|demonology raid] [h:strategy:warlock demonology|demonology] [h:strategy:warlock destruction pve|destruction pve] [h:strategy:warlock destruction pvp|destruction pvp]\r\n[h:strategy:warlock destruction raid|destruction raid] [h:strategy:warlock destruction|destruction] [h:strategy:warlock pet affliction pve|pet affliction pve] [h:strategy:warlock pet affliction pvp|pet affliction pvp]\r\n[h:strategy:warlock pet affliction raid|pet affliction raid] [h:strategy:warlock pet demonology pve|pet demonology pve] [h:strategy:warlock pet demonology pvp|pet demonology pvp] [h:strategy:warlock pet demonology raid|pet demonology raid]\r\n[h:strategy:warlock pet destruction pve|pet destruction pve] [h:strategy:warlock pet destruction pvp|pet destruction pvp] [h:strategy:warlock pet destruction raid|pet destruction raid] [h:strategy:warlock pet felguard|pet felguard]\r\n[h:strategy:warlock pet felhunter|pet felhunter] [h:strategy:warlock pet imp|pet imp] [h:strategy:warlock pet succubus|pet succubus] [h:strategy:warlock pet voidwalker|pet voidwalker] [h:strategy:warlock pet|pet] [h:strategy:warlock pull|pull] ', '', '', '', '', '', '', '', '', '', 0), - (1676, 'list:rogue strategy', 1, 'rogue strategies : \r\n[h:strategy:rogue aoe assassination pve|aoe assassination pve] [h:strategy:rogue aoe assassination pvp|aoe assassination pvp] [h:strategy:rogue aoe assassination raid|aoe assassination raid] [h:strategy:rogue aoe combat pve|aoe combat pve]\r\n[h:strategy:rogue aoe combat pvp|aoe combat pvp] [h:strategy:rogue aoe combat raid|aoe combat raid] [h:strategy:rogue aoe subtlety pve|aoe subtlety pve] [h:strategy:rogue aoe subtlety pvp|aoe subtlety pvp]\r\n[h:strategy:rogue aoe subtlety raid|aoe subtlety raid] [h:strategy:rogue aoe|aoe] [h:strategy:rogue assassination pve|assassination pve] [h:strategy:rogue assassination pvp|assassination pvp] [h:strategy:rogue assassination raid|assassination raid]\r\n[h:strategy:rogue assassination|assassination] [h:strategy:rogue buff assassination pve|buff assassination pve] [h:strategy:rogue buff assassination pvp|buff assassination pvp] [h:strategy:rogue buff assassination raid|buff assassination raid]\r\n[h:strategy:rogue buff combat pve|buff combat pve] [h:strategy:rogue buff combat pvp|buff combat pvp] [h:strategy:rogue buff combat raid|buff combat raid] [h:strategy:rogue buff subtlety pve|buff subtlety pve]\r\n[h:strategy:rogue buff subtlety pvp|buff subtlety pvp] [h:strategy:rogue buff subtlety raid|buff subtlety raid] [h:strategy:rogue buff|buff] [h:strategy:rogue cc assassination pve|cc assassination pve]\r\n[h:strategy:rogue cc assassination pvp|cc assassination pvp] [h:strategy:rogue cc assassination raid|cc assassination raid] [h:strategy:rogue cc combat pve|cc combat pve] [h:strategy:rogue cc combat pvp|cc combat pvp]\r\n[h:strategy:rogue cc combat raid|cc combat raid] [h:strategy:rogue cc subtlety pve|cc subtlety pve] [h:strategy:rogue cc subtlety pvp|cc subtlety pvp] [h:strategy:rogue cc subtlety raid|cc subtlety raid] [h:strategy:rogue cc|cc]\r\n[h:strategy:rogue combat pve|combat pve] [h:strategy:rogue combat pvp|combat pvp] [h:strategy:rogue combat raid|combat raid] [h:strategy:rogue combat|combat] [h:strategy:rogue poison main anesthetic|poison main anesthetic]\r\n[h:strategy:rogue poison main crippling|poison main crippling] [h:strategy:rogue poison main deadly|poison main deadly] [h:strategy:rogue poison main instant|poison main instant] [h:strategy:rogue poison main mind|poison main mind]\r\n[h:strategy:rogue poison main wound|poison main wound] [h:strategy:rogue poison off anesthetic|poison off anesthetic] [h:strategy:rogue poison off crippling|poison off crippling] [h:strategy:rogue poison off deadly|poison off deadly]\r\n[h:strategy:rogue poison off instant|poison off instant] [h:strategy:rogue poison off mind|poison off mind] [h:strategy:rogue poison off wound|poison off wound] [h:strategy:rogue poisons assassination pve|poisons assassination pve]\r\n[h:strategy:rogue poisons assassination pvp|poisons assassination pvp] [h:strategy:rogue poisons assassination raid|poisons assassination raid] [h:strategy:rogue poisons combat pve|poisons combat pve]\r\n[h:strategy:rogue poisons combat pvp|poisons combat pvp] [h:strategy:rogue poisons combat raid|poisons combat raid] [h:strategy:rogue poisons subtlety pve|poisons subtlety pve] [h:strategy:rogue poisons subtlety pvp|poisons subtlety pvp]\r\n[h:strategy:rogue poisons subtlety raid|poisons subtlety raid] [h:strategy:rogue poisons|poisons] [h:strategy:rogue pull|pull] [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\n[h:strategy:rogue stealth assassination pvp|stealth assassination pvp] [h:strategy:rogue stealth assassination raid|stealth assassination raid] [h:strategy:rogue stealth combat pve|stealth combat pve]\r\n[h:strategy:rogue stealth combat pvp|stealth combat pvp] [h:strategy:rogue stealth combat raid|stealth combat raid] [h:strategy:rogue stealth subtlety pve|stealth subtlety pve] [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\n[h:strategy:rogue stealth subtlety raid|stealth subtlety raid] [h:strategy:rogue stealthed|stealthed] [h:strategy:rogue stealth|stealth] [h:strategy:rogue subtlety pve|subtlety pve] [h:strategy:rogue subtlety pvp|subtlety pvp]\r\n[h:strategy:rogue subtlety raid|subtlety raid] [h:strategy:rogue subtlety|subtlety] ', '', '', '', '', '', '', '', '', '', 0), - (1677, 'list:shaman strategy', 1, 'shaman strategies : \r\n[h:strategy:shaman aoe elemental pve|aoe elemental pve] [h:strategy:shaman aoe elemental pvp|aoe elemental pvp] [h:strategy:shaman aoe elemental raid|aoe elemental raid] [h:strategy:shaman aoe enhancement pve|aoe enhancement pve]\r\n[h:strategy:shaman aoe enhancement pvp|aoe enhancement pvp] [h:strategy:shaman aoe enhancement raid|aoe enhancement raid] [h:strategy:shaman aoe restoration pve|aoe restoration pve] [h:strategy:shaman aoe restoration pvp|aoe restoration pvp]\r\n[h:strategy:shaman aoe restoration raid|aoe restoration raid] [h:strategy:shaman aoe|aoe] [h:strategy:shaman buff elemental pve|buff elemental pve] [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\n[h:strategy:shaman buff elemental raid|buff elemental raid] [h:strategy:shaman buff enhancement pve|buff enhancement pve] [h:strategy:shaman buff enhancement pvp|buff enhancement pvp] [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\n[h:strategy:shaman buff restoration pve|buff restoration pve] [h:strategy:shaman buff restoration pvp|buff restoration pvp] [h:strategy:shaman buff restoration raid|buff restoration raid] [h:strategy:shaman buff|buff]\r\n[h:strategy:shaman cure elemental pve|cure elemental pve] [h:strategy:shaman cure elemental pvp|cure elemental pvp] [h:strategy:shaman cure elemental raid|cure elemental raid] [h:strategy:shaman cure enhancement pve|cure enhancement pve]\r\n[h:strategy:shaman cure enhancement pvp|cure enhancement pvp] [h:strategy:shaman cure enhancement raid|cure enhancement raid] [h:strategy:shaman cure restoration pve|cure restoration pve] [h:strategy:shaman cure restoration pvp|cure restoration pvp]\r\n[h:strategy:shaman cure restoration raid|cure restoration raid] [h:strategy:shaman cure|cure] [h:strategy:shaman elemental pve|elemental pve] [h:strategy:shaman elemental pvp|elemental pvp] [h:strategy:shaman elemental raid|elemental raid]\r\n[h:strategy:shaman elemental|elemental] [h:strategy:shaman enhancement pve|enhancement pve] [h:strategy:shaman enhancement pvp|enhancement pvp] [h:strategy:shaman enhancement raid|enhancement raid] [h:strategy:shaman enhancement|enhancement]\r\n[h:strategy:shaman pull|pull] [h:strategy:shaman restoration pve|restoration pve] [h:strategy:shaman restoration pvp|restoration pvp] [h:strategy:shaman restoration raid|restoration raid] [h:strategy:shaman restoration|restoration]\r\n[h:strategy:shaman totem air grace|totem air grace] [h:strategy:shaman totem air grounding|totem air grounding] [h:strategy:shaman totem air resistance|totem air resistance] [h:strategy:shaman totem air tranquil|totem air tranquil]\r\n[h:strategy:shaman totem air windfury|totem air windfury] [h:strategy:shaman totem air windwall|totem air windwall] [h:strategy:shaman totem air wrath|totem air wrath] [h:strategy:shaman totem earth earthbind|totem earth earthbind]\r\n[h:strategy:shaman totem earth stoneclaw|totem earth stoneclaw] [h:strategy:shaman totem earth stoneskin|totem earth stoneskin] [h:strategy:shaman totem earth strength|totem earth strength] [h:strategy:shaman totem earth tremor|totem earth tremor]\r\n[h:strategy:shaman totem fire flametongue|totem fire flametongue] [h:strategy:shaman totem fire magma|totem fire magma] [h:strategy:shaman totem fire nova|totem fire nova] [h:strategy:shaman totem fire resistance|totem fire resistance]\r\n[h:strategy:shaman totem fire searing|totem fire searing] [h:strategy:shaman totem water cleansing|totem water cleansing] [h:strategy:shaman totem water healing|totem water healing] [h:strategy:shaman totem water mana|totem water mana]\r\n[h:strategy:shaman totem water poison|totem water poison] [h:strategy:shaman totem water resistance|totem water resistance] [h:strategy:shaman totembar ancestors|totembar ancestors] [h:strategy:shaman totembar elements|totembar elements]\r\n[h:strategy:shaman totembar spirits|totembar spirits] [h:strategy:shaman totems elemental pve|totems elemental pve] [h:strategy:shaman totems elemental pvp|totems elemental pvp] [h:strategy:shaman totems elemental raid|totems elemental raid]\r\n[h:strategy:shaman totems enhancement pve|totems enhancement pve] [h:strategy:shaman totems enhancement pvp|totems enhancement pvp] [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\n[h:strategy:shaman totems restoration pve|totems restoration pve] [h:strategy:shaman totems restoration pvp|totems restoration pvp] [h:strategy:shaman totems restoration raid|totems restoration raid] [h:strategy:shaman totems|totems] ', '', '', '', '', '', '', '', '', '', 0), + (1671, 'list:priest strategy', 1, 'priest strategies : \r\n[h:strategy:priest aoe discipline pve|aoe discipline pve] [h:strategy:priest aoe discipline pvp|aoe discipline pvp] [h:strategy:priest aoe discipline raid|aoe discipline raid] [h:strategy:priest aoe holy pve|aoe holy pve]\r\n[h:strategy:priest aoe holy pvp|aoe holy pvp] [h:strategy:priest aoe holy raid|aoe holy raid] [h:strategy:priest aoe shadow pve|aoe shadow pve] [h:strategy:priest aoe shadow pvp|aoe shadow pvp] [h:strategy:priest aoe shadow raid|aoe shadow raid]\r\n[h:strategy:priest aoe|aoe] [h:strategy:priest boost discipline pve|boost discipline pve] [h:strategy:priest boost discipline pvp|boost discipline pvp] [h:strategy:priest boost discipline raid|boost discipline raid]\r\n[h:strategy:priest boost holy pve|boost holy pve] [h:strategy:priest boost holy pvp|boost holy pvp] [h:strategy:priest boost holy raid|boost holy raid] [h:strategy:priest boost shadow pve|boost shadow pve]\r\n[h:strategy:priest boost shadow pvp|boost shadow pvp] [h:strategy:priest boost shadow raid|boost shadow raid] [h:strategy:priest boost|boost] [h:strategy:priest buff discipline pve|buff discipline pve]\r\n[h:strategy:priest buff discipline pvp|buff discipline pvp] [h:strategy:priest buff discipline raid|buff discipline raid] [h:strategy:priest buff holy pve|buff holy pve] [h:strategy:priest buff holy pvp|buff holy pvp]\r\n[h:strategy:priest buff holy raid|buff holy raid] [h:strategy:priest buff shadow pve|buff shadow pve] [h:strategy:priest buff shadow pvp|buff shadow pvp] [h:strategy:priest buff shadow raid|buff shadow raid] [h:strategy:priest buff|buff]\r\n[h:strategy:priest cc discipline pve|cc discipline pve] [h:strategy:priest cc discipline pvp|cc discipline pvp] [h:strategy:priest cc discipline raid|cc discipline raid] [h:strategy:priest cc holy pve|cc holy pve]\r\n[h:strategy:priest cc holy pvp|cc holy pvp] [h:strategy:priest cc holy raid|cc holy raid] [h:strategy:priest cc shadow pve|cc shadow pve] [h:strategy:priest cc shadow pvp|cc shadow pvp] [h:strategy:priest cc shadow raid|cc shadow raid]\r\n[h:strategy:priest cc|cc] [h:strategy:priest cure discipline pve|cure discipline pve] [h:strategy:priest cure discipline pvp|cure discipline pvp] [h:strategy:priest cure discipline raid|cure discipline raid]\r\n[h:strategy:priest cure holy pve|cure holy pve] [h:strategy:priest cure holy pvp|cure holy pvp] [h:strategy:priest cure holy raid|cure holy raid] [h:strategy:priest cure shadow pve|cure shadow pve] [h:strategy:priest cure shadow pvp|cure shadow pvp]\r\n[h:strategy:priest cure shadow raid|cure shadow raid] [h:strategy:priest cure|cure] [h:strategy:priest discipline pve|discipline pve] [h:strategy:priest discipline pvp|discipline pvp] [h:strategy:priest discipline raid|discipline raid]\r\n[h:strategy:priest discipline|discipline] [h:strategy:priest holy pve|holy pve] [h:strategy:priest holy pvp|holy pvp] [h:strategy:priest holy raid|holy raid] [h:strategy:priest holy|holy] [h:strategy:priest holy|holy]\r\n[h:strategy:priest offdps pve|offdps pve] [h:strategy:priest offdps pvp|offdps pvp] [h:strategy:priest offdps raid|offdps raid] [h:strategy:priest offdps|offdps] [h:strategy:priest offheal pve|offheal pve] [h:strategy:priest offheal pvp|offheal pvp]\r\n[h:strategy:priest offheal raid|offheal raid] [h:strategy:priest offheal|offheal] [h:strategy:priest pull|pull] [h:strategy:priest shadow pve|shadow pve] [h:strategy:priest shadow pvp|shadow pvp] [h:strategy:priest shadow raid|shadow raid]\r\n[h:strategy:priest shadow|shadow] [h:strategy:priest shadow|shadow] ', '', '', '', '', '', '', '', '', '', 0), + (1672, 'list:warrior strategy', 1, 'warrior strategies : \r\n[h:strategy:warrior aoe arms pve|aoe arms pve] [h:strategy:warrior aoe arms pvp|aoe arms pvp] [h:strategy:warrior aoe arms raid|aoe arms raid] [h:strategy:warrior aoe fury pve|aoe fury pve] [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\n[h:strategy:warrior aoe fury raid|aoe fury raid] [h:strategy:warrior aoe protection pve|aoe protection pve] [h:strategy:warrior aoe protection pvp|aoe protection pvp] [h:strategy:warrior aoe protection raid|aoe protection raid]\r\n[h:strategy:warrior aoe|aoe] [h:strategy:warrior arms pve|arms pve] [h:strategy:warrior arms pvp|arms pvp] [h:strategy:warrior arms raid|arms raid] [h:strategy:warrior arms|arms] [h:strategy:warrior boost arms pve|boost arms pve]\r\n[h:strategy:warrior boost arms pvp|boost arms pvp] [h:strategy:warrior boost arms raid|boost arms raid] [h:strategy:warrior boost fury pve|boost fury pve] [h:strategy:warrior boost fury pvp|boost fury pvp]\r\n[h:strategy:warrior boost fury raid|boost fury raid] [h:strategy:warrior boost protection pve|boost protection pve] [h:strategy:warrior boost protection pvp|boost protection pvp] [h:strategy:warrior boost protection raid|boost protection raid]\r\n[h:strategy:warrior boost|boost] [h:strategy:warrior buff arms pve|buff arms pve] [h:strategy:warrior buff arms pvp|buff arms pvp] [h:strategy:warrior buff arms raid|buff arms raid] [h:strategy:warrior buff fury pve|buff fury pve]\r\n[h:strategy:warrior buff fury pvp|buff fury pvp] [h:strategy:warrior buff fury raid|buff fury raid] [h:strategy:warrior buff protection pve|buff protection pve] [h:strategy:warrior buff protection pvp|buff protection pvp]\r\n[h:strategy:warrior buff protection raid|buff protection raid] [h:strategy:warrior buff|buff] [h:strategy:warrior cc arms pve|cc arms pve] [h:strategy:warrior cc arms pvp|cc arms pvp] [h:strategy:warrior cc arms raid|cc arms raid]\r\n[h:strategy:warrior cc fury pve|cc fury pve] [h:strategy:warrior cc fury pvp|cc fury pvp] [h:strategy:warrior cc fury raid|cc fury raid] [h:strategy:warrior cc protection pve|cc protection pve] [h:strategy:warrior cc protection pvp|cc protection pvp]\r\n[h:strategy:warrior cc protection raid|cc protection raid] [h:strategy:warrior cc|cc] [h:strategy:warrior fury pve|fury pve] [h:strategy:warrior fury pvp|fury pvp] [h:strategy:warrior fury raid|fury raid] [h:strategy:warrior fury|fury]\r\n[h:strategy:warrior protection pve|protection pve] [h:strategy:warrior protection pvp|protection pvp] [h:strategy:warrior protection raid|protection raid] [h:strategy:warrior protection|protection] [h:strategy:warrior protection|protection]\r\n[h:strategy:warrior pull|pull] ', '', '', '', '', '', '', '', '', '', 0), + (1673, 'list:paladin strategy', 1, 'paladin strategies : \r\n[h:strategy:paladin aoe holy pve|aoe holy pve] [h:strategy:paladin aoe holy pvp|aoe holy pvp] [h:strategy:paladin aoe holy raid|aoe holy raid] [h:strategy:paladin aoe protection pve|aoe protection pve]\r\n[h:strategy:paladin aoe protection pvp|aoe protection pvp] [h:strategy:paladin aoe protection raid|aoe protection raid] [h:strategy:paladin aoe retribution pve|aoe retribution pve] [h:strategy:paladin aoe retribution pvp|aoe retribution pvp]\r\n[h:strategy:paladin aoe retribution raid|aoe retribution raid] [h:strategy:paladin aoe|aoe] [h:strategy:paladin aura concentration|aura concentration] [h:strategy:paladin aura crusader|aura crusader] [h:strategy:paladin aura devotion|aura devotion]\r\n[h:strategy:paladin aura fire|aura fire] [h:strategy:paladin aura frost|aura frost] [h:strategy:paladin aura holy pve|aura holy pve] [h:strategy:paladin aura holy pvp|aura holy pvp] [h:strategy:paladin aura holy raid|aura holy raid]\r\n[h:strategy:paladin aura protection pve|aura protection pve] [h:strategy:paladin aura protection pvp|aura protection pvp] [h:strategy:paladin aura protection raid|aura protection raid] [h:strategy:paladin aura retribution pve|aura retribution pve]\r\n[h:strategy:paladin aura retribution pvp|aura retribution pvp] [h:strategy:paladin aura retribution raid|aura retribution raid] [h:strategy:paladin aura retribution|aura retribution] [h:strategy:paladin aura sanctity|aura sanctity]\r\n[h:strategy:paladin aura shadow|aura shadow] [h:strategy:paladin aura|aura] [h:strategy:paladin blessing holy pve|blessing holy pve] [h:strategy:paladin blessing holy pvp|blessing holy pvp] [h:strategy:paladin blessing holy raid|blessing holy raid]\r\n[h:strategy:paladin blessing kings|blessing kings] [h:strategy:paladin blessing light|blessing light] [h:strategy:paladin blessing might|blessing might] [h:strategy:paladin blessing protection pve|blessing protection pve]\r\n[h:strategy:paladin blessing protection pvp|blessing protection pvp] [h:strategy:paladin blessing protection raid|blessing protection raid] [h:strategy:paladin blessing retribution pve|blessing retribution pve]\r\n[h:strategy:paladin blessing retribution pvp|blessing retribution pvp] [h:strategy:paladin blessing retribution raid|blessing retribution raid] [h:strategy:paladin blessing salvation|blessing salvation]\r\n[h:strategy:paladin blessing sanctuary|blessing sanctuary] [h:strategy:paladin blessing wisdom|blessing wisdom] [h:strategy:paladin blessing|blessing] [h:strategy:paladin boost holy pve|boost holy pve] [h:strategy:paladin boost holy pvp|boost holy pvp]\r\n[h:strategy:paladin boost holy raid|boost holy raid] [h:strategy:paladin boost protection pve|boost protection pve] [h:strategy:paladin boost protection pvp|boost protection pvp] [h:strategy:paladin boost protection raid|boost protection raid]\r\n[h:strategy:paladin boost retribution pve|boost retribution pve] [h:strategy:paladin boost retribution pvp|boost retribution pvp] [h:strategy:paladin boost retribution raid|boost retribution raid] [h:strategy:paladin boost|boost]\r\n[h:strategy:paladin buff holy pve|buff holy pve] [h:strategy:paladin buff holy pvp|buff holy pvp] [h:strategy:paladin buff holy raid|buff holy raid] [h:strategy:paladin buff protection pve|buff protection pve]\r\n[h:strategy:paladin buff protection pvp|buff protection pvp] [h:strategy:paladin buff protection raid|buff protection raid] [h:strategy:paladin buff retribution pve|buff retribution pve] [h:strategy:paladin buff retribution pvp|buff retribution pvp]\r\n[h:strategy:paladin buff retribution raid|buff retribution raid] [h:strategy:paladin buff|buff] [h:strategy:paladin cc holy pve|cc holy pve] [h:strategy:paladin cc holy pvp|cc holy pvp] [h:strategy:paladin cc holy raid|cc holy raid]\r\n[h:strategy:paladin cc protection pve|cc protection pve] [h:strategy:paladin cc protection pvp|cc protection pvp] [h:strategy:paladin cc protection raid|cc protection raid] [h:strategy:paladin cc retribution pve|cc retribution pve]\r\n[h:strategy:paladin cc retribution pvp|cc retribution pvp] [h:strategy:paladin cc retribution raid|cc retribution raid] [h:strategy:paladin cc|cc] [h:strategy:paladin cure holy pve|cure holy pve] [h:strategy:paladin cure holy pvp|cure holy pvp]\r\n[h:strategy:paladin cure holy raid|cure holy raid] [h:strategy:paladin cure protection pve|cure protection pve] [h:strategy:paladin cure protection pvp|cure protection pvp] [h:strategy:paladin cure protection raid|cure protection raid]\r\n[h:strategy:paladin cure retribution pve|cure retribution pve] [h:strategy:paladin cure retribution pvp|cure retribution pvp] [h:strategy:paladin cure retribution raid|cure retribution raid] [h:strategy:paladin cure|cure]\r\n[h:strategy:paladin holy pve|holy pve] [h:strategy:paladin holy pvp|holy pvp] [h:strategy:paladin holy raid|holy raid] [h:strategy:paladin holy|holy] [h:strategy:paladin holy|holy] [h:strategy:paladin offheal pve|offheal pve]\r\n[h:strategy:paladin offheal pvp|offheal pvp] [h:strategy:paladin offheal raid|offheal raid] [h:strategy:paladin offheal|offheal] [h:strategy:paladin protection pve|protection pve] [h:strategy:paladin protection pvp|protection pvp]\r\n[h:strategy:paladin protection raid|protection raid] [h:strategy:paladin protection|protection] [h:strategy:paladin protection|protection] [h:strategy:paladin pull|pull] [h:strategy:paladin retribution pve|retribution pve]\r\n[h:strategy:paladin retribution pvp|retribution pvp] [h:strategy:paladin retribution raid|retribution raid] [h:strategy:paladin retribution|retribution] ', '', '', '', '', '', '', '', '', '', 0), + (1674, 'list:hunter strategy', 1, 'hunter strategies : \r\n[h:strategy:hunter aoe beast mastery pve|aoe beast mastery pve] [h:strategy:hunter aoe beast mastery pvp|aoe beast mastery pvp] [h:strategy:hunter aoe beast mastery raid|aoe beast mastery raid]\r\n[h:strategy:hunter aoe marksmanship pve|aoe marksmanship pve] [h:strategy:hunter aoe marksmanship pvp|aoe marksmanship pvp] [h:strategy:hunter aoe marksmanship raid|aoe marksmanship raid] [h:strategy:hunter aoe survival pve|aoe survival pve]\r\n[h:strategy:hunter aoe survival pvp|aoe survival pvp] [h:strategy:hunter aoe survival raid|aoe survival raid] [h:strategy:hunter aoe|aoe] [h:strategy:hunter aspect beast mastery pve|aspect beast mastery pve]\r\n[h:strategy:hunter aspect beast mastery pvp|aspect beast mastery pvp] [h:strategy:hunter aspect beast mastery raid|aspect beast mastery raid] [h:strategy:hunter aspect beast|aspect beast] [h:strategy:hunter aspect cheetah|aspect cheetah]\r\n[h:strategy:hunter aspect dragonhawk|aspect dragonhawk] [h:strategy:hunter aspect hawk|aspect hawk] [h:strategy:hunter aspect marksmanship pve|aspect marksmanship pve] [h:strategy:hunter aspect marksmanship pvp|aspect marksmanship pvp]\r\n[h:strategy:hunter aspect marksmanship raid|aspect marksmanship raid] [h:strategy:hunter aspect monkey|aspect monkey] [h:strategy:hunter aspect pack|aspect pack] [h:strategy:hunter aspect survival pve|aspect survival pve]\r\n[h:strategy:hunter aspect survival pvp|aspect survival pvp] [h:strategy:hunter aspect survival raid|aspect survival raid] [h:strategy:hunter aspect viper|aspect viper] [h:strategy:hunter aspect wild|aspect wild] [h:strategy:hunter aspect|aspect]\r\n[h:strategy:hunter beast mastery pve|beast mastery pve] [h:strategy:hunter beast mastery pvp|beast mastery pvp] [h:strategy:hunter beast mastery raid|beast mastery raid] [h:strategy:hunter beast mastery|beast mastery]\r\n[h:strategy:hunter boost beast mastery pve|boost beast mastery pve] [h:strategy:hunter boost beast mastery pvp|boost beast mastery pvp] [h:strategy:hunter boost beast mastery raid|boost beast mastery raid]\r\n[h:strategy:hunter boost marksmanship pve|boost marksmanship pve] [h:strategy:hunter boost marksmanship pvp|boost marksmanship pvp] [h:strategy:hunter boost marksmanship raid|boost marksmanship raid]\r\n[h:strategy:hunter boost survival pve|boost survival pve] [h:strategy:hunter boost survival pvp|boost survival pvp] [h:strategy:hunter boost survival raid|boost survival raid] [h:strategy:hunter boost|boost]\r\n[h:strategy:hunter buff beast mastery pve|buff beast mastery pve] [h:strategy:hunter buff beast mastery pvp|buff beast mastery pvp] [h:strategy:hunter buff beast mastery raid|buff beast mastery raid]\r\n[h:strategy:hunter buff marksmanship pve|buff marksmanship pve] [h:strategy:hunter buff marksmanship pvp|buff marksmanship pvp] [h:strategy:hunter buff marksmanship raid|buff marksmanship raid] [h:strategy:hunter buff survival pve|buff survival pve]\r\n[h:strategy:hunter buff survival pvp|buff survival pvp] [h:strategy:hunter buff survival raid|buff survival raid] [h:strategy:hunter buff|buff] [h:strategy:hunter cc beast mastery pve|cc beast mastery pve]\r\n[h:strategy:hunter cc beast mastery pvp|cc beast mastery pvp] [h:strategy:hunter cc beast mastery raid|cc beast mastery raid] [h:strategy:hunter cc marksmanship pve|cc marksmanship pve] [h:strategy:hunter cc marksmanship pvp|cc marksmanship pvp]\r\n[h:strategy:hunter cc marksmanship raid|cc marksmanship raid] [h:strategy:hunter cc survival pve|cc survival pve] [h:strategy:hunter cc survival pvp|cc survival pvp] [h:strategy:hunter cc survival raid|cc survival raid] [h:strategy:hunter cc|cc]\r\n[h:strategy:hunter marksmanship pve|marksmanship pve] [h:strategy:hunter marksmanship pvp|marksmanship pvp] [h:strategy:hunter marksmanship raid|marksmanship raid] [h:strategy:hunter marksmanship|marksmanship] [h:strategy:hunter pet|pet]\r\n[h:strategy:hunter pull|pull] [h:strategy:hunter sting beast mastery pve|sting beast mastery pve] [h:strategy:hunter sting beast mastery pvp|sting beast mastery pvp] [h:strategy:hunter sting beast mastery raid|sting beast mastery raid]\r\n[h:strategy:hunter sting marksmanship pve|sting marksmanship pve] [h:strategy:hunter sting marksmanship pvp|sting marksmanship pvp] [h:strategy:hunter sting marksmanship raid|sting marksmanship raid] [h:strategy:hunter sting scorpid|sting scorpid]\r\n[h:strategy:hunter sting serpent|sting serpent] [h:strategy:hunter sting survival pve|sting survival pve] [h:strategy:hunter sting survival pvp|sting survival pvp] [h:strategy:hunter sting survival raid|sting survival raid]\r\n[h:strategy:hunter sting viper|sting viper] [h:strategy:hunter sting|sting] [h:strategy:hunter survival pve|survival pve] [h:strategy:hunter survival pvp|survival pvp] [h:strategy:hunter survival raid|survival raid] [h:strategy:hunter survival|survival] ', '', '', '', '', '', '', '', '', '', 0), + (1675, 'list:warlock strategy', 1, 'warlock strategies : \r\n[h:strategy:warlock affliction pve|affliction pve] [h:strategy:warlock affliction pvp|affliction pvp] [h:strategy:warlock affliction raid|affliction raid] [h:strategy:warlock affliction|affliction]\r\n[h:strategy:warlock aoe affliction pve|aoe affliction pve] [h:strategy:warlock aoe affliction pvp|aoe affliction pvp] [h:strategy:warlock aoe affliction raid|aoe affliction raid] [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\n[h:strategy:warlock aoe demonology pvp|aoe demonology pvp] [h:strategy:warlock aoe demonology raid|aoe demonology raid] [h:strategy:warlock aoe destruction pve|aoe destruction pve] [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\n[h:strategy:warlock aoe destruction raid|aoe destruction raid] [h:strategy:warlock aoe|aoe] [h:strategy:warlock boost affliction pve|boost affliction pve] [h:strategy:warlock boost affliction pvp|boost affliction pvp]\r\n[h:strategy:warlock boost affliction raid|boost affliction raid] [h:strategy:warlock boost demonology pve|boost demonology pve] [h:strategy:warlock boost demonology pvp|boost demonology pvp]\r\n[h:strategy:warlock boost demonology raid|boost demonology raid] [h:strategy:warlock boost destruction pve|boost destruction pve] [h:strategy:warlock boost destruction pvp|boost destruction pvp]\r\n[h:strategy:warlock boost destruction raid|boost destruction raid] [h:strategy:warlock boost|boost] [h:strategy:warlock buff affliction pve|buff affliction pve] [h:strategy:warlock buff affliction pvp|buff affliction pvp]\r\n[h:strategy:warlock buff affliction raid|buff affliction raid] [h:strategy:warlock buff demonology pve|buff demonology pve] [h:strategy:warlock buff demonology pvp|buff demonology pvp] [h:strategy:warlock buff demonology raid|buff demonology raid]\r\n[h:strategy:warlock buff destruction pve|buff destruction pve] [h:strategy:warlock buff destruction pvp|buff destruction pvp] [h:strategy:warlock buff destruction raid|buff destruction raid] [h:strategy:warlock buff|buff]\r\n[h:strategy:warlock cc affliction pve|cc affliction pve] [h:strategy:warlock cc affliction pvp|cc affliction pvp] [h:strategy:warlock cc affliction raid|cc affliction raid] [h:strategy:warlock cc demonology pve|cc demonology pve]\r\n[h:strategy:warlock cc demonology pvp|cc demonology pvp] [h:strategy:warlock cc demonology raid|cc demonology raid] [h:strategy:warlock cc destruction pve|cc destruction pve] [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\n[h:strategy:warlock cc destruction raid|cc destruction raid] [h:strategy:warlock cc|cc] [h:strategy:warlock curse affliction pve|curse affliction pve] [h:strategy:warlock curse affliction pvp|curse affliction pvp]\r\n[h:strategy:warlock curse affliction raid|curse affliction raid] [h:strategy:warlock curse agony|curse agony] [h:strategy:warlock curse demonology pve|curse demonology pve] [h:strategy:warlock curse demonology pvp|curse demonology pvp]\r\n[h:strategy:warlock curse demonology raid|curse demonology raid] [h:strategy:warlock curse destruction pve|curse destruction pve] [h:strategy:warlock curse destruction pvp|curse destruction pvp]\r\n[h:strategy:warlock curse destruction raid|curse destruction raid] [h:strategy:warlock curse doom|curse doom] [h:strategy:warlock curse elements|curse elements] [h:strategy:warlock curse recklessness|curse recklessness]\r\n[h:strategy:warlock curse shadow|curse shadow] [h:strategy:warlock curse tongues|curse tongues] [h:strategy:warlock curse weakness|curse weakness] [h:strategy:warlock curse|curse] [h:strategy:warlock demonology pve|demonology pve]\r\n[h:strategy:warlock demonology pvp|demonology pvp] [h:strategy:warlock demonology raid|demonology raid] [h:strategy:warlock demonology|demonology] [h:strategy:warlock destruction pve|destruction pve] [h:strategy:warlock destruction pvp|destruction pvp]\r\n[h:strategy:warlock destruction raid|destruction raid] [h:strategy:warlock destruction|destruction] [h:strategy:warlock pet affliction pve|pet affliction pve] [h:strategy:warlock pet affliction pvp|pet affliction pvp]\r\n[h:strategy:warlock pet affliction raid|pet affliction raid] [h:strategy:warlock pet demonology pve|pet demonology pve] [h:strategy:warlock pet demonology pvp|pet demonology pvp] [h:strategy:warlock pet demonology raid|pet demonology raid]\r\n[h:strategy:warlock pet destruction pve|pet destruction pve] [h:strategy:warlock pet destruction pvp|pet destruction pvp] [h:strategy:warlock pet destruction raid|pet destruction raid] [h:strategy:warlock pet felguard|pet felguard]\r\n[h:strategy:warlock pet felhunter|pet felhunter] [h:strategy:warlock pet imp|pet imp] [h:strategy:warlock pet succubus|pet succubus] [h:strategy:warlock pet voidwalker|pet voidwalker] [h:strategy:warlock pet|pet] [h:strategy:warlock pull|pull] ', '', '', '', '', '', '', '', '', '', 0), + (1676, 'list:rogue strategy', 1, 'rogue strategies : \r\n[h:strategy:rogue aoe assassination pve|aoe assassination pve] [h:strategy:rogue aoe assassination pvp|aoe assassination pvp] [h:strategy:rogue aoe assassination raid|aoe assassination raid] [h:strategy:rogue aoe combat pve|aoe combat pve]\r\n[h:strategy:rogue aoe combat pvp|aoe combat pvp] [h:strategy:rogue aoe combat raid|aoe combat raid] [h:strategy:rogue aoe subtlety pve|aoe subtlety pve] [h:strategy:rogue aoe subtlety pvp|aoe subtlety pvp]\r\n[h:strategy:rogue aoe subtlety raid|aoe subtlety raid] [h:strategy:rogue aoe|aoe] [h:strategy:rogue assassination pve|assassination pve] [h:strategy:rogue assassination pvp|assassination pvp] [h:strategy:rogue assassination raid|assassination raid]\r\n[h:strategy:rogue assassination|assassination] [h:strategy:rogue boost assassination pve|boost assassination pve] [h:strategy:rogue boost assassination pvp|boost assassination pvp] [h:strategy:rogue boost assassination raid|boost assassination raid]\r\n[h:strategy:rogue boost combat pve|boost combat pve] [h:strategy:rogue boost combat pvp|boost combat pvp] [h:strategy:rogue boost combat raid|boost combat raid] [h:strategy:rogue boost subtlety pve|boost subtlety pve]\r\n[h:strategy:rogue boost subtlety pvp|boost subtlety pvp] [h:strategy:rogue boost subtlety raid|boost subtlety raid] [h:strategy:rogue boost|boost] [h:strategy:rogue buff assassination pve|buff assassination pve]\r\n[h:strategy:rogue buff assassination pvp|buff assassination pvp] [h:strategy:rogue buff assassination raid|buff assassination raid] [h:strategy:rogue buff combat pve|buff combat pve] [h:strategy:rogue buff combat pvp|buff combat pvp]\r\n[h:strategy:rogue buff combat raid|buff combat raid] [h:strategy:rogue buff subtlety pve|buff subtlety pve] [h:strategy:rogue buff subtlety pvp|buff subtlety pvp] [h:strategy:rogue buff subtlety raid|buff subtlety raid] [h:strategy:rogue buff|buff]\r\n[h:strategy:rogue cc assassination pve|cc assassination pve] [h:strategy:rogue cc assassination pvp|cc assassination pvp] [h:strategy:rogue cc assassination raid|cc assassination raid] [h:strategy:rogue cc combat pve|cc combat pve]\r\n[h:strategy:rogue cc combat pvp|cc combat pvp] [h:strategy:rogue cc combat raid|cc combat raid] [h:strategy:rogue cc subtlety pve|cc subtlety pve] [h:strategy:rogue cc subtlety pvp|cc subtlety pvp] [h:strategy:rogue cc subtlety raid|cc subtlety raid]\r\n[h:strategy:rogue cc|cc] [h:strategy:rogue combat pve|combat pve] [h:strategy:rogue combat pvp|combat pvp] [h:strategy:rogue combat raid|combat raid] [h:strategy:rogue combat|combat] [h:strategy:rogue poison main anesthetic|poison main anesthetic]\r\n[h:strategy:rogue poison main crippling|poison main crippling] [h:strategy:rogue poison main deadly|poison main deadly] [h:strategy:rogue poison main instant|poison main instant] [h:strategy:rogue poison main mind|poison main mind]\r\n[h:strategy:rogue poison main wound|poison main wound] [h:strategy:rogue poison off anesthetic|poison off anesthetic] [h:strategy:rogue poison off crippling|poison off crippling] [h:strategy:rogue poison off deadly|poison off deadly]\r\n[h:strategy:rogue poison off instant|poison off instant] [h:strategy:rogue poison off mind|poison off mind] [h:strategy:rogue poison off wound|poison off wound] [h:strategy:rogue poisons assassination pve|poisons assassination pve]\r\n[h:strategy:rogue poisons assassination pvp|poisons assassination pvp] [h:strategy:rogue poisons assassination raid|poisons assassination raid] [h:strategy:rogue poisons combat pve|poisons combat pve]\r\n[h:strategy:rogue poisons combat pvp|poisons combat pvp] [h:strategy:rogue poisons combat raid|poisons combat raid] [h:strategy:rogue poisons subtlety pve|poisons subtlety pve] [h:strategy:rogue poisons subtlety pvp|poisons subtlety pvp]\r\n[h:strategy:rogue poisons subtlety raid|poisons subtlety raid] [h:strategy:rogue poisons|poisons] [h:strategy:rogue pull|pull] [h:strategy:rogue stealth assassination pve|stealth assassination pve]\r\n[h:strategy:rogue stealth assassination pvp|stealth assassination pvp] [h:strategy:rogue stealth assassination raid|stealth assassination raid] [h:strategy:rogue stealth combat pve|stealth combat pve]\r\n[h:strategy:rogue stealth combat pvp|stealth combat pvp] [h:strategy:rogue stealth combat raid|stealth combat raid] [h:strategy:rogue stealth subtlety pve|stealth subtlety pve] [h:strategy:rogue stealth subtlety pvp|stealth subtlety pvp]\r\n[h:strategy:rogue stealth subtlety raid|stealth subtlety raid] [h:strategy:rogue stealthed|stealthed] [h:strategy:rogue stealth|stealth] [h:strategy:rogue subtlety pve|subtlety pve] [h:strategy:rogue subtlety pvp|subtlety pvp]\r\n[h:strategy:rogue subtlety raid|subtlety raid] [h:strategy:rogue subtlety|subtlety] ', '', '', '', '', '', '', '', '', '', 0), + (1677, 'list:shaman strategy', 1, 'shaman strategies : \r\n[h:strategy:shaman aoe elemental pve|aoe elemental pve] [h:strategy:shaman aoe elemental pvp|aoe elemental pvp] [h:strategy:shaman aoe elemental raid|aoe elemental raid] [h:strategy:shaman aoe enhancement pve|aoe enhancement pve]\r\n[h:strategy:shaman aoe enhancement pvp|aoe enhancement pvp] [h:strategy:shaman aoe enhancement raid|aoe enhancement raid] [h:strategy:shaman aoe restoration pve|aoe restoration pve] [h:strategy:shaman aoe restoration pvp|aoe restoration pvp]\r\n[h:strategy:shaman aoe restoration raid|aoe restoration raid] [h:strategy:shaman aoe|aoe] [h:strategy:shaman boost elemental pve|boost elemental pve] [h:strategy:shaman boost elemental pvp|boost elemental pvp]\r\n[h:strategy:shaman boost elemental raid|boost elemental raid] [h:strategy:shaman boost enhancement pve|boost enhancement pve] [h:strategy:shaman boost enhancement pvp|boost enhancement pvp]\r\n[h:strategy:shaman boost enhancement raid|boost enhancement raid] [h:strategy:shaman boost restoration pve|boost restoration pve] [h:strategy:shaman boost restoration pvp|boost restoration pvp]\r\n[h:strategy:shaman boost restoration raid|boost restoration raid] [h:strategy:shaman boost|boost] [h:strategy:shaman buff elemental pve|buff elemental pve] [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\n[h:strategy:shaman buff elemental raid|buff elemental raid] [h:strategy:shaman buff enhancement pve|buff enhancement pve] [h:strategy:shaman buff enhancement pvp|buff enhancement pvp] [h:strategy:shaman buff enhancement raid|buff enhancement raid]\r\n[h:strategy:shaman buff restoration pve|buff restoration pve] [h:strategy:shaman buff restoration pvp|buff restoration pvp] [h:strategy:shaman buff restoration raid|buff restoration raid] [h:strategy:shaman buff|buff]\r\n[h:strategy:shaman cc elemental pve|cc elemental pve] [h:strategy:shaman cc elemental pvp|cc elemental pvp] [h:strategy:shaman cc elemental raid|cc elemental raid] [h:strategy:shaman cc enhancement pve|cc enhancement pve]\r\n[h:strategy:shaman cc enhancement pvp|cc enhancement pvp] [h:strategy:shaman cc enhancement raid|cc enhancement raid] [h:strategy:shaman cc restoration pve|cc restoration pve] [h:strategy:shaman cc restoration pvp|cc restoration pvp]\r\n[h:strategy:shaman cc restoration raid|cc restoration raid] [h:strategy:shaman cc|cc] [h:strategy:shaman cure elemental pve|cure elemental pve] [h:strategy:shaman cure elemental pvp|cure elemental pvp]\r\n[h:strategy:shaman cure elemental raid|cure elemental raid] [h:strategy:shaman cure enhancement pve|cure enhancement pve] [h:strategy:shaman cure enhancement pvp|cure enhancement pvp] [h:strategy:shaman cure enhancement raid|cure enhancement raid]\r\n[h:strategy:shaman cure restoration pve|cure restoration pve] [h:strategy:shaman cure restoration pvp|cure restoration pvp] [h:strategy:shaman cure restoration raid|cure restoration raid] [h:strategy:shaman cure|cure]\r\n[h:strategy:shaman elemental pve|elemental pve] [h:strategy:shaman elemental pvp|elemental pvp] [h:strategy:shaman elemental raid|elemental raid] [h:strategy:shaman elemental|elemental] [h:strategy:shaman enhancement pve|enhancement pve]\r\n[h:strategy:shaman enhancement pvp|enhancement pvp] [h:strategy:shaman enhancement raid|enhancement raid] [h:strategy:shaman enhancement|enhancement] [h:strategy:shaman offheal pve|offheal pve] [h:strategy:shaman offheal pvp|offheal pvp]\r\n[h:strategy:shaman offheal raid|offheal raid] [h:strategy:shaman offheal|offheal] [h:strategy:shaman pull|pull] [h:strategy:shaman restoration pve|restoration pve] [h:strategy:shaman restoration pvp|restoration pvp]\r\n[h:strategy:shaman restoration raid|restoration raid] [h:strategy:shaman restoration|restoration] [h:strategy:shaman restoration|restoration] [h:strategy:shaman totem air grace|totem air grace] [h:strategy:shaman totem air grounding|totem air grounding]\r\n[h:strategy:shaman totem air resistance|totem air resistance] [h:strategy:shaman totem air tranquil|totem air tranquil] [h:strategy:shaman totem air windfury|totem air windfury] [h:strategy:shaman totem air windwall|totem air windwall]\r\n[h:strategy:shaman totem air wrath|totem air wrath] [h:strategy:shaman totem earth earthbind|totem earth earthbind] [h:strategy:shaman totem earth stoneclaw|totem earth stoneclaw] [h:strategy:shaman totem earth stoneskin|totem earth stoneskin]\r\n[h:strategy:shaman totem earth strength|totem earth strength] [h:strategy:shaman totem earth tremor|totem earth tremor] [h:strategy:shaman totem fire flametongue|totem fire flametongue] [h:strategy:shaman totem fire magma|totem fire magma]\r\n[h:strategy:shaman totem fire nova|totem fire nova] [h:strategy:shaman totem fire resistance|totem fire resistance] [h:strategy:shaman totem fire searing|totem fire searing] [h:strategy:shaman totem water cleansing|totem water cleansing]\r\n[h:strategy:shaman totem water healing|totem water healing] [h:strategy:shaman totem water mana|totem water mana] [h:strategy:shaman totem water poison|totem water poison] [h:strategy:shaman totem water resistance|totem water resistance]\r\n[h:strategy:shaman totembar ancestors|totembar ancestors] [h:strategy:shaman totembar elements|totembar elements] [h:strategy:shaman totembar spirits|totembar spirits] [h:strategy:shaman totems elemental pve|totems elemental pve]\r\n[h:strategy:shaman totems elemental pvp|totems elemental pvp] [h:strategy:shaman totems elemental raid|totems elemental raid] [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\n[h:strategy:shaman totems enhancement pvp|totems enhancement pvp] [h:strategy:shaman totems enhancement raid|totems enhancement raid] [h:strategy:shaman totems restoration pve|totems restoration pve]\r\n[h:strategy:shaman totems restoration pvp|totems restoration pvp] [h:strategy:shaman totems restoration raid|totems restoration raid] [h:strategy:shaman totems|totems] ', '', '', '', '', '', '', '', '', '', 0), (1678, 'trigger:shaman no totems summoned', 1, 'no totems summoned [h:object|trigger] [c:no totems summoned|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman call of the ancestors|call of the ancestors] (20.000) for [h:strategy:shaman totembar ancestors|totembar ancestors]\r\nExecutes: [h:action:shaman call of the spirits|call of the spirits] (20.000) for [h:strategy:shaman totembar spirits|totembar spirits]', '', '', '', '', '', '', '', '', '', 0), (1679, 'action:shaman call of the elements', 1, 'call of the elements [h:object|action] [c:do call of the elements|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman no totems summoned|no totems summoned] with relevance (20.000) for [h:strategy:shaman totembar elements|totembar elements]', '', '', '', '', '', '', '', '', '', 0), - (1680, 'strategy:shaman totembar elements', 1, 'totembar elements [h:object|strategy] [c:co ~totembar elements|toggle combat][c:nc ~totembar elements|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman no totems summoned|no totems summoned] do [h:action:shaman call of the elements|call of the elements] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1680, 'strategy:shaman totembar elements', 1, 'totembar elements [h:object|strategy] [c:co ~totembar elements|toggle combat][c:nc ~totembar elements|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (1681, 'trigger:arcane torrent', 1, 'arcane torrent [h:object|trigger] [c:arcane torrent|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|arcane torrent] (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nExecutes: [h:action|arcane torrent] (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (1682, 'action:arcane torrent', 1, 'arcane torrent [h:object|action] [c:do arcane torrent|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|arcane torrent] with relevance (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|arcane torrent] with relevance (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (1683, 'action:mana tap', 1, 'mana tap [h:object|action] [c:do mana tap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|mana tap] with relevance (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|mana tap] with relevance (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (1684, 'trigger:hunter black arrow', 1, 'black arrow [h:object|trigger] [c:black arrow|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter black arrow|black arrow] (15.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), - (1685, 'list:generic strategy', 1, 'generic strategies : \r\n[h:strategy|accept all quests] [h:strategy|ads] [h:strategy|alterac] [h:strategy|arathi] [h:strategy|arena] [h:strategy|attack tagged] [h:strategy|avoid aoe] [h:strategy|battleground] [h:strategy|behind] [h:strategy|bg] [h:strategy|cast time]\r\n[h:strategy|chat] [h:strategy|close] [h:strategy|collision] [h:strategy|conserve mana] [h:strategy|dead] [h:strategy|debug action] [h:strategy|debug grind] [h:strategy|debug mount] [h:strategy|debug move] [h:strategy|debug rpg] [h:strategy|debug spell]\r\n[h:strategy|debug threat] [h:strategy|debug travel] [h:strategy|debug] [h:strategy|default] [h:strategy|delayed roll] [h:strategy|dps aoe] [h:strategy|dps assist] [h:strategy|duel] [h:strategy|dungeon] [h:strategy|emote] [h:strategy|explore]\r\n[h:strategy|eye] [h:strategy|flee from adds] [h:strategy|flee] [h:strategy|focus heal target] [h:strategy|follow] [h:strategy|food] [h:strategy|free] [h:strategy|gather] [h:strategy|grind] [h:strategy|group] [h:strategy|guard] [h:strategy|guild]\r\n[h:strategy|isle] [h:strategy|kite] [h:strategy|lfg] [h:strategy|loot] [h:strategy|magmadar] [h:strategy|maintenance] [h:strategy|map full] [h:strategy|map] [h:strategy|mark rti] [h:strategy|molten core] [h:strategy|mount] [h:strategy|onyxia\'s lair]\r\n[h:strategy|onyxia] [h:strategy|passive] [h:strategy|potions] [h:strategy|pull back] [h:strategy|pvp] [h:strategy|quest] [h:strategy|racials] [h:strategy|ranged] [h:strategy|ready check] [h:strategy|return] [h:strategy|reveal] [h:strategy|roll]\r\n[h:strategy|rpg bg] [h:strategy|rpg craft] [h:strategy|rpg explore] [h:strategy|rpg guild] [h:strategy|rpg maintenance] [h:strategy|rpg player] [h:strategy|rpg quest] [h:strategy|rpg vendor] [h:strategy|rpg] [h:strategy|rtsc] [h:strategy|runaway]\r\n[h:strategy|sit] [h:strategy|start duel] [h:strategy|stay] [h:strategy|tank assist] [h:strategy|tell target] [h:strategy|threat] [h:strategy|travel once] [h:strategy|travel] [h:strategy|wait for attack] [h:strategy|warsong] [h:strategy|wbuff] ', '', '', '', '', '', '', '', '', '', 0), + (1685, 'list:generic strategy', 1, 'generic strategies : \r\n[h:strategy|accept all quests] [h:strategy|ads] [h:strategy|alterac] [h:strategy|arathi] [h:strategy|arena] [h:strategy|attack tagged] [h:strategy|avoid aoe] [h:strategy|avoid mobs] [h:strategy|battleground] [h:strategy|behind] [h:strategy|bg]\r\n[h:strategy|cast time] [h:strategy|chase jump] [h:strategy|chat] [h:strategy|close] [h:strategy|collision] [h:strategy|conserve mana] [h:strategy|dead] [h:strategy|debug action] [h:strategy|debug grind] [h:strategy|debug loot] [h:strategy|debug mount]\r\n[h:strategy|debug move] [h:strategy|debug rpg] [h:strategy|debug spell] [h:strategy|debug threat] [h:strategy|debug travel] [h:strategy|debug] [h:strategy|default] [h:strategy|delayed roll] [h:strategy|dps aoe] [h:strategy|dps assist] [h:strategy|duel]\r\n[h:strategy|dungeon] [h:strategy|emote] [h:strategy|explore] [h:strategy|eye] [h:strategy|flee from adds] [h:strategy|flee] [h:strategy|focus heal targets] [h:strategy|follow jump] [h:strategy|follow] [h:strategy|food] [h:strategy|four horseman]\r\n[h:strategy|free] [h:strategy|gather] [h:strategy|grind] [h:strategy|group] [h:strategy|guard] [h:strategy|guild] [h:strategy|heal interrupt] [h:strategy|isle] [h:strategy|karazhan] [h:strategy|kite] [h:strategy|lfg] [h:strategy|loot]\r\n[h:strategy|magmadar] [h:strategy|maintenance] [h:strategy|map full] [h:strategy|map] [h:strategy|mark rti] [h:strategy|molten core] [h:strategy|mount] [h:strategy|naxxramas] [h:strategy|netherspite] [h:strategy|nowar] [h:strategy|onyxia\'s lair]\r\n[h:strategy|onyxia] [h:strategy|passive] [h:strategy|potions] [h:strategy|preheal] [h:strategy|prince malchezaar] [h:strategy|pull back] [h:strategy|pvp] [h:strategy|quest] [h:strategy|racials] [h:strategy|ranged] [h:strategy|ready check]\r\n[h:strategy|return] [h:strategy|reveal] [h:strategy|roll] [h:strategy|rpg bg] [h:strategy|rpg craft] [h:strategy|rpg explore] [h:strategy|rpg guild] [h:strategy|rpg jump] [h:strategy|rpg maintenance] [h:strategy|rpg player] [h:strategy|rpg quest]\r\n[h:strategy|rpg vendor] [h:strategy|rpg] [h:strategy|rtsc jump] [h:strategy|rtsc] [h:strategy|runaway] [h:strategy|silent] [h:strategy|sit] [h:strategy|start duel] [h:strategy|stay] [h:strategy|tank assist] [h:strategy|tell target] [h:strategy|threat]\r\n[h:strategy|travel once] [h:strategy|travel] [h:strategy|wait for attack] [h:strategy|warsong] [h:strategy|wbuff] ', '', '', '', '', '', '', '', '', '', 0), (1686, 'list:deathknight strategy', 1, 'deathknight strategies : \r\n[h:strategy:deathknight bdps|bdps] [h:strategy:deathknight blood|blood] [h:strategy:deathknight blood|blood] [h:strategy:deathknight frost aoe|frost aoe] [h:strategy:deathknight frost|frost] [h:strategy:deathknight nc|nc]\r\n[h:strategy:deathknight pull|pull] [h:strategy:deathknight react|react] [h:strategy:deathknight unholy aoe|unholy aoe] [h:strategy:deathknight unholy|unholy] ', '', '', '', '', '', '', '', '', '', 0), - (1687, 'strategy:shaman totembar spirits', 1, 'totembar spirits [h:object|strategy] [c:co ~totembar spirits|toggle combat][c:nc ~totembar spirits|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman no totems summoned|no totems summoned] do [h:action:shaman call of the spirits|call of the spirits] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1688, 'strategy:shaman totembar ancestors', 1, 'totembar ancestors [h:object|strategy] [c:co ~totembar ancestors|toggle combat][c:nc ~totembar ancestors|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman no totems summoned|no totems summoned] do [h:action:shaman call of the ancestors|call of the ancestors] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1689, 'list:mage strategy', 1, 'mage strategies : \r\n[h:strategy:mage aoe arcane pve|aoe arcane pve] [h:strategy:mage aoe arcane pvp|aoe arcane pvp] [h:strategy:mage aoe arcane raid|aoe arcane raid] [h:strategy:mage aoe fire pve|aoe fire pve] [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\n[h:strategy:mage aoe fire raid|aoe fire raid] [h:strategy:mage aoe frost pve|aoe frost pve] [h:strategy:mage aoe frost pvp|aoe frost pvp] [h:strategy:mage aoe frost raid|aoe frost raid] [h:strategy:mage aoe|aoe] [h:strategy:mage arcane pve|arcane pve]\r\n[h:strategy:mage arcane pvp|arcane pvp] [h:strategy:mage arcane raid|arcane raid] [h:strategy:mage arcane|arcane] [h:strategy:mage buff arcane pve|buff arcane pve] [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\n[h:strategy:mage buff arcane raid|buff arcane raid] [h:strategy:mage buff fire pve|buff fire pve] [h:strategy:mage buff fire pvp|buff fire pvp] [h:strategy:mage buff fire raid|buff fire raid] [h:strategy:mage buff frost pve|buff frost pve]\r\n[h:strategy:mage buff frost pvp|buff frost pvp] [h:strategy:mage buff frost raid|buff frost raid] [h:strategy:mage buff|buff] [h:strategy:mage cc arcane pve|cc arcane pve] [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\n[h:strategy:mage cc arcane raid|cc arcane raid] [h:strategy:mage cc fire pve|cc fire pve] [h:strategy:mage cc fire pvp|cc fire pvp] [h:strategy:mage cc fire raid|cc fire raid] [h:strategy:mage cc frost pve|cc frost pve]\r\n[h:strategy:mage cc frost pvp|cc frost pvp] [h:strategy:mage cc frost raid|cc frost raid] [h:strategy:mage cc|cc] [h:strategy:mage cure arcane pve|cure arcane pve] [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\n[h:strategy:mage cure arcane raid|cure arcane raid] [h:strategy:mage cure fire pve|cure fire pve] [h:strategy:mage cure fire pvp|cure fire pvp] [h:strategy:mage cure fire raid|cure fire raid] [h:strategy:mage cure frost pve|cure frost pve]\r\n[h:strategy:mage cure frost pvp|cure frost pvp] [h:strategy:mage cure frost raid|cure frost raid] [h:strategy:mage cure|cure] [h:strategy:mage fire pve|fire pve] [h:strategy:mage fire pvp|fire pvp] [h:strategy:mage fire raid|fire raid]\r\n[h:strategy:mage fire|fire] [h:strategy:mage frost pve|frost pve] [h:strategy:mage frost pvp|frost pvp] [h:strategy:mage frost raid|frost raid] [h:strategy:mage frost|frost] [h:strategy:mage pull|pull] ', '', '', '', '', '', '', '', '', '', 0), + (1687, 'strategy:shaman totembar spirits', 1, 'totembar spirits [h:object|strategy] [c:co ~totembar spirits|toggle combat][c:nc ~totembar spirits|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (1688, 'strategy:shaman totembar ancestors', 1, 'totembar ancestors [h:object|strategy] [c:co ~totembar ancestors|toggle combat][c:nc ~totembar ancestors|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (1689, 'list:mage strategy', 1, 'mage strategies : \r\n[h:strategy:mage aoe arcane pve|aoe arcane pve] [h:strategy:mage aoe arcane pvp|aoe arcane pvp] [h:strategy:mage aoe arcane raid|aoe arcane raid] [h:strategy:mage aoe fire pve|aoe fire pve] [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\n[h:strategy:mage aoe fire raid|aoe fire raid] [h:strategy:mage aoe frost pve|aoe frost pve] [h:strategy:mage aoe frost pvp|aoe frost pvp] [h:strategy:mage aoe frost raid|aoe frost raid] [h:strategy:mage aoe|aoe] [h:strategy:mage arcane pve|arcane pve]\r\n[h:strategy:mage arcane pvp|arcane pvp] [h:strategy:mage arcane raid|arcane raid] [h:strategy:mage arcane|arcane] [h:strategy:mage boost arcane pve|boost arcane pve] [h:strategy:mage boost arcane pvp|boost arcane pvp]\r\n[h:strategy:mage boost arcane raid|boost arcane raid] [h:strategy:mage boost fire pve|boost fire pve] [h:strategy:mage boost fire pvp|boost fire pvp] [h:strategy:mage boost fire raid|boost fire raid] [h:strategy:mage boost frost pve|boost frost pve]\r\n[h:strategy:mage boost frost pvp|boost frost pvp] [h:strategy:mage boost frost raid|boost frost raid] [h:strategy:mage boost|boost] [h:strategy:mage buff arcane pve|buff arcane pve] [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\n[h:strategy:mage buff arcane raid|buff arcane raid] [h:strategy:mage buff fire pve|buff fire pve] [h:strategy:mage buff fire pvp|buff fire pvp] [h:strategy:mage buff fire raid|buff fire raid] [h:strategy:mage buff frost pve|buff frost pve]\r\n[h:strategy:mage buff frost pvp|buff frost pvp] [h:strategy:mage buff frost raid|buff frost raid] [h:strategy:mage buff|buff] [h:strategy:mage cc arcane pve|cc arcane pve] [h:strategy:mage cc arcane pvp|cc arcane pvp]\r\n[h:strategy:mage cc arcane raid|cc arcane raid] [h:strategy:mage cc fire pve|cc fire pve] [h:strategy:mage cc fire pvp|cc fire pvp] [h:strategy:mage cc fire raid|cc fire raid] [h:strategy:mage cc frost pve|cc frost pve]\r\n[h:strategy:mage cc frost pvp|cc frost pvp] [h:strategy:mage cc frost raid|cc frost raid] [h:strategy:mage cc|cc] [h:strategy:mage cure arcane pve|cure arcane pve] [h:strategy:mage cure arcane pvp|cure arcane pvp]\r\n[h:strategy:mage cure arcane raid|cure arcane raid] [h:strategy:mage cure fire pve|cure fire pve] [h:strategy:mage cure fire pvp|cure fire pvp] [h:strategy:mage cure fire raid|cure fire raid] [h:strategy:mage cure frost pve|cure frost pve]\r\n[h:strategy:mage cure frost pvp|cure frost pvp] [h:strategy:mage cure frost raid|cure frost raid] [h:strategy:mage cure|cure] [h:strategy:mage fire pve|fire pve] [h:strategy:mage fire pvp|fire pvp] [h:strategy:mage fire raid|fire raid]\r\n[h:strategy:mage fire|fire] [h:strategy:mage frost pve|frost pve] [h:strategy:mage frost pvp|frost pvp] [h:strategy:mage frost raid|frost raid] [h:strategy:mage frost|frost] [h:strategy:mage pull|pull] ', '', '', '', '', '', '', '', '', '', 0), (1690, 'trigger:shaman ready to remove totems', 1, 'ready to remove totems [h:object|trigger] [c:ready to remove totems|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:shaman totemic recall|totemic recall] (10.000) for [h:strategy:shaman elemental pve|elemental pve]\r\nExecutes: [h:action:shaman totemic recall|totemic recall] (10.000) for [h:strategy:shaman restoration raid|restoration raid]\r\nExecutes: [h:action:shaman totemic recall|totemic recall] (10.000) for [h:strategy:shaman restoration pve|restoration pve]\r\nExecutes: [h:action:shaman totemic recall|totemic recall] (10.000) for [h:strategy:shaman elemental pvp|elemental pvp]\r\nExecutes: [h:action:shaman totemic recall|totemic recall] (10.000) for [h:strategy:shaman elemental raid|elemental raid]\r\nExecutes: [h:action:shaman totemic recall|totemic recall] (10.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nExecutes: [h:action:shaman totemic recall|totemic recall] (10.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nExecutes: [h:action:shaman totemic recall|totemic recall] (10.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nExecutes: [h:action:shaman totemic recall|totemic recall] (10.000) for [h:strategy:shaman restoration pvp|restoration pvp]', '', '', '', '', '', '', '', '', '', 0), (1691, 'action:gift of the naaru', 1, 'gift of the naaru [h:object|action] [c:do gift of the naaru|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|low health] with relevance (71.000) for [h:strategy|racials]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|low health] with relevance (71.000) for [h:strategy|racials]', '', '', '', '', '', '', '', '', '', 0), (1692, 'action:shaman call of the spirits', 1, 'call of the spirits [h:object|action] [c:do call of the spirits|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman no totems summoned|no totems summoned] with relevance (20.000) for [h:strategy:shaman totembar spirits|totembar spirits]', '', '', '', '', '', '', '', '', '', 0), (1693, 'action:shaman call of the ancestors', 1, 'call of the ancestors [h:object|action] [c:do call of the ancestors|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman no totems summoned|no totems summoned] with relevance (20.000) for [h:strategy:shaman totembar ancestors|totembar ancestors]', '', '', '', '', '', '', '', '', '', 0), (1694, 'strategy:conserve mana', 1, 'conserve mana [h:object|strategy] [c:co ~conserve mana|toggle combat][c:nc ~conserve mana|toggle noncombat]\r\nThis strategy will make bots wait longer between casting the same spell twice.\r\nthe delay is based on [h:value|mana save level].', '', '', '', '', '', '', '', '', '', 0), - (1695, 'strategy:shaman pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)', '', '', '', '', '', '', '', '', '', 0), + (1695, 'strategy:shaman pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)', '', '', '', '', '', '', '', '', '', 0), (1696, 'value:pos', 1, 'pos [h:object|value] [c:cdebug values pos|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1697, 'strategy:cast time', 1, 'cast time [h:object|strategy] [c:co ~cast time|toggle combat][c:nc ~cast time|toggle noncombat]\r\nThis strategy will make bots less likely to cast long casttime spells when the target is at critical health.', '', '', '', '', '', '', '', '', '', 0), (1698, 'strategy:explore', 1, 'explore [h:object|strategy] [c:co ~explore|toggle combat][c:nc ~explore|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), @@ -1723,7 +1723,7 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1702, 'strategy:debug threat', 1, 'debug threat [h:object|strategy] [c:co ~debug threat|toggle combat][c:nc ~debug threat|toggle noncombat]\r\nThis strategy will make the bot give chat (noncombat) or visual (combat) feedback on it\'s current [h:value:threat|threat value].\r\nRelated strategies:\r\n[h:strategy|debug] [h:strategy|threat] ', '', '', '', '', '', '', '', '', '', 0), (1703, 'value:can free move to', 1, 'can free move to [h:object|value] [c:cdebug values can free move to|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1704, 'strategy:debug travel', 1, 'debug travel [h:object|strategy] [c:co ~debug travel|toggle combat][c:nc ~debug travel|toggle noncombat]\r\nThis strategy will make the bot give chat feedback on the locations it is considering during [h:action|choose travel target].\r\nRelated strategies:\r\n[h:strategy|debug] [h:strategy|travel] ', '', '', '', '', '', '', '', '', '', 0), - (1705, 'strategy:attack tagged', 1, 'attack tagged [h:object|strategy] [c:co ~attack tagged|toggle combat][c:nc ~attack tagged|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (1705, 'strategy:attack tagged', 1, 'attack tagged [h:object|strategy] [c:co ~attack tagged|toggle combat][c:nc ~attack tagged|toggle noncombat]\r\nThis is a toggle strategy which tells bots if they are allowed to attack mobs tagged by players (not in their group).', '', '', '', '', '', '', '', '', '', 0), (1706, 'strategy:rtsc', 1, 'rtsc [h:object|strategy] [c:co ~rtsc|toggle combat][c:nc ~rtsc|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (1707, 'strategy:debug mount', 1, 'debug mount [h:object|strategy] [c:co ~debug mount|toggle combat][c:nc ~debug mount|toggle noncombat]\r\nThis strategy will make the bot give chat feedback during mount actions.\r\nRelated strategies:\r\n[h:strategy|debug] [h:strategy|threat] ', '', '', '', '', '', '', '', '', '', 0), (1708, 'strategy:map full', 1, 'map full [h:object|strategy] [c:co ~map full|toggle combat][c:nc ~map full|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), @@ -1734,7 +1734,7 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1713, 'trigger:guard', 1, 'guard [h:object|trigger] [c:guard|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|guard chat shortcut] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1714, 'strategy:start duel', 1, 'start duel [h:object|strategy] [c:co ~start duel|toggle combat][c:nc ~start duel|toggle noncombat]\r\nThis strategy will allow bots to start duels with other bots if they are the current [h:value|rpg target].\r\nRelated strategies:\r\n[h:strategy|duel] [h:strategy|rpg] [h:strategy|rpg player] ', '', '', '', '', '', '', '', '', '', 0), (1715, 'trigger:move stuck', 1, 'move stuck [h:object|trigger] [c:move stuck|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|reset] (0.700) for [h:strategy|maintenance]', '', '', '', '', '', '', '', '', '', 0), - (1716, 'strategy:mount', 1, 'mount [h:object|strategy] [c:co ~mount|toggle combat][c:nc ~mount|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (1716, 'strategy:mount', 1, 'mount [h:object|strategy] [c:co ~mount|toggle combat][c:nc ~mount|toggle noncombat]\r\nThis is a toggle strategy which tells bots if they are allowed to mount up or not.', '', '', '', '', '', '', '', '', '', 0), (1717, 'strategy:free', 1, 'free [h:object|strategy] [c:co ~free|toggle combat][c:nc ~free|toggle noncombat]\r\nThis strategy will allow the bot to move freely\r\nRelated strategies:\r\n[h:strategy|follow] [h:strategy|stay] [h:strategy|runaway] [h:strategy|flee from adds] [h:strategy|guard] ', '', '', '', '', '', '', '', '', '', 0), (1718, 'strategy:ads', 1, 'ads [h:object|strategy] [c:co ~ads|toggle combat][c:nc ~ads|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (1719, 'strategy:passive', 1, 'passive [h:object|strategy] [c:co ~passive|toggle combat][c:nc ~passive|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), @@ -1743,262 +1743,262 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1722, 'strategy:debug move', 1, 'debug move [h:object|strategy] [c:co ~debug move|toggle combat][c:nc ~debug move|toggle noncombat]\r\nThis strategy will make the bot give chat and visual feedback for it\'s current movement actions.\r\nRelated strategies:\r\n[h:strategy|debug] [h:strategy|rpg] [h:strategy|travel] [h:strategy|follow] ', '', '', '', '', '', '', '', '', '', 0), (1723, 'strategy:debug rpg', 1, 'debug rpg [h:object|strategy] [c:co ~debug rpg|toggle combat][c:nc ~debug rpg|toggle noncombat]\r\nThis strategy will make the bot give chat feedback on rpg target selection during [h:action|choose rpg target] and [h:action|move to rpg target].\r\nRelated strategies:\r\n[h:strategy|debug] [h:strategy|rpg] ', '', '', '', '', '', '', '', '', '', 0), (1724, 'strategy:map', 1, 'map [h:object|strategy] [c:co ~map|toggle combat][c:nc ~map|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1725, 'strategy:pull back', 1, 'pull back [h:object|strategy] [c:co ~pull back|toggle combat][c:nc ~pull back|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|return to pull position] do [h:action|return to pull position] (65.000)\r\nNon combat behavior:\r\nOn: [h:trigger|return to pull position] do [h:action|return to pull position] (65.000)', '', '', '', '', '', '', '', '', '', 0), - (1726, 'strategy:paladin pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (60.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (60.000)[h:action:pull start|pull start] (60.000)', '', '', '', '', '', '', '', '', '', 0), + (1725, 'strategy:pull back', 1, 'pull back [h:object|strategy] [c:co ~pull back|toggle combat][c:nc ~pull back|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|return to pull position] do [h:action|return to pull position] (35.000)\r\nNon combat behavior:\r\nOn: [h:trigger|return to pull position] do [h:action|return to pull position] (35.000)', '', '', '', '', '', '', '', '', '', 0), + (1726, 'strategy:paladin pull', 1, 'pull [h:object|strategy] [c:co ~pull|toggle combat][c:nc ~pull|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:pull end|pull end] do [h:action:pull end|pull end] (30.000)\r\nOn: [h:trigger:pull start|pull start] do [h:action:pull action|pull action] (30.000)[h:action:pull start|pull start] (30.000)', '', '', '', '', '', '', '', '', '', 0), (1727, 'trigger:guild join', 1, 'guild join [h:object|trigger] [c:guild join|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|guild join] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|guild join] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|guild join] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|guild join] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1728, 'trigger:free', 1, 'free [h:object|trigger] [c:free|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|free chat shortcut] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1729, 'trigger:update follow', 1, 'update follow [h:object|trigger] [c:update follow|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|follow] (1.000) for [h:strategy|follow]\r\nNon combat behavior:\r\nExecutes: [h:action|follow] (1.000) for [h:strategy|follow]\r\nDead state behavior:\r\nExecutes: [h:action|follow] (1.000) for [h:strategy|follow]', '', '', '', '', '', '', '', '', '', 0), - (1730, 'trigger:return to pull position', 1, 'return to pull position [h:object|trigger] [c:return to pull position|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|return to pull position] (65.000) for [h:strategy|pull back]\r\nNon combat behavior:\r\nExecutes: [h:action|return to pull position] (65.000) for [h:strategy|pull back]', '', '', '', '', '', '', '', '', '', 0), - (1731, 'trigger:combat stuck', 1, 'combat stuck [h:object|trigger] [c:combat stuck|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid caster|caster]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid melee|melee]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid heal|heal]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (1730, 'trigger:return to pull position', 1, 'return to pull position [h:object|trigger] [c:return to pull position|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|return to pull position] (35.000) for [h:strategy|pull back]\r\nNon combat behavior:\r\nExecutes: [h:action|return to pull position] (35.000) for [h:strategy|pull back]', '', '', '', '', '', '', '', '', '', 0), + (1731, 'trigger:combat stuck', 1, 'combat stuck [h:object|trigger] [c:combat stuck|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:reset|reset] (0.700) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (1732, 'action:free chat shortcut', 1, 'free chat shortcut [h:object|action] [c:do free chat shortcut|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|free] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1733, 'action:guard chat shortcut', 1, 'guard chat shortcut [h:object|action] [c:do guard chat shortcut|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|guard] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1734, 'action:stop follow', 1, 'stop follow [h:object|action] [c:do stop follow|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|stop follow] with relevance (100.000) for [h:strategy|follow]', '', '', '', '', '', '', '', '', '', 0), - (1735, 'action:reset', 1, 'reset [h:object|action] [c:do reset|execute]\r\nReset internal buffers to clear current behavior.\r\nUsed actions:\r\n[h:action|reset ai] \r\nCombat behavior:\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid caster|caster]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid melee|melee]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid cat|cat]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid heal|heal]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (1736, 'action:return to pull position', 1, 'return to pull position [h:object|action] [c:do return to pull position|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|return to pull position] with relevance (65.000) for [h:strategy|pull back]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|return to pull position] with relevance (65.000) for [h:strategy|pull back]', '', '', '', '', '', '', '', '', '', 0), - (1737, 'action:hunter raptor strike', 1, 'raptor strike [h:object|action] [c:do raptor strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (10.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), + (1735, 'action:reset', 1, 'reset [h:object|action] [c:do reset|execute]\r\nReset internal buffers to clear current behavior.\r\nUsed actions:\r\n[h:action|reset ai] \r\nCombat behavior:\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid balance pve|balance pve]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid balance raid|balance raid]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid dps feral raid|dps feral raid]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid restoration pve|restoration pve]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid restoration raid|restoration raid]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:combat stuck|combat stuck] with relevance (0.700) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1736, 'action:return to pull position', 1, 'return to pull position [h:object|action] [c:do return to pull position|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|return to pull position] with relevance (35.000) for [h:strategy|pull back]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|return to pull position] with relevance (35.000) for [h:strategy|pull back]', '', '', '', '', '', '', '', '', '', 0), + (1737, 'action:hunter raptor strike', 1, 'raptor strike [h:object|action] [c:do raptor strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:hunter survival pve|survival pve]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nTriggers from: [h:trigger:enemy is close|enemy is close] with relevance (11.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), (1738, 'value:can free target', 1, 'can free target [h:object|value] [c:cdebug values can free target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1739, 'value:follow target', 1, 'follow target [h:object|value] [c:cdebug values follow target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1740, 'value:free move center', 1, 'free move center [h:object|value] [c:cdebug values free move center|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1741, 'value:honor', 1, 'honor [h:object|value] [c:cdebug values honor|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1742, 'action:paladin greater blessing of might', 1, 'greater blessing of might [h:object|action] [c:do greater blessing of might|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing of might|greater blessing of might] with relevance (11.000) for [h:strategy:paladin blessing might|blessing might]', '', '', '', '', '', '', '', '', '', 0), - (1743, 'trigger:warlock no curse', 1, 'no curse [h:object|trigger] [c:no curse|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse demonology pve|curse demonology pve]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse affliction pve|curse affliction pve]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse destruction pvp|curse destruction pvp]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse affliction pvp|curse affliction pvp]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse affliction raid|curse affliction raid]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse demonology pvp|curse demonology pvp]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse demonology raid|curse demonology raid]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse destruction pve|curse destruction pve]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse destruction raid|curse destruction raid]', '', '', '', '', '', '', '', '', '', 0), - (1744, 'strategy:rogue buff combat pve', 1, 'buff combat pve [h:object|strategy] [c:co ~buff combat pve|toggle combat][c:nc ~buff combat pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue adrenaline rush|adrenaline rush] do [h:action:rogue adrenaline rush|adrenaline rush] (26.000)\r\nOn: [h:trigger:rogue blade flurry|blade flurry] do [h:action:rogue blade flurry|blade flurry] (25.000)\r\nOn: [h:trigger:rogue killing spree|killing spree] do [h:action:rogue killing spree|killing spree] (24.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1745, 'strategy:warrior buff arms pvp', 1, 'buff arms pvp [h:object|strategy] [c:co ~buff arms pvp|toggle combat][c:nc ~buff arms pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (30.000)\r\nOn: [h:trigger:feared|feared] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1746, 'strategy:shaman buff elemental pve', 1, 'buff elemental pve [h:object|strategy] [c:co ~buff elemental pve|toggle combat][c:nc ~buff elemental pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (20.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman flametongue weapon|flametongue weapon] (20.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman flametongue weapon|flametongue weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1747, 'strategy:rogue buff subtlety pve', 1, 'buff subtlety pve [h:object|strategy] [c:co ~buff subtlety pve|toggle combat][c:nc ~buff subtlety pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1748, 'action:rogue apply instant poison', 1, 'apply instant poison [h:object|action] [c:do apply instant poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons subtlety pve|poisons subtlety pve]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons assassination raid|poisons assassination raid]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons combat raid|poisons combat raid]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons subtlety raid|poisons subtlety raid]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons assassination pve|poisons assassination pve]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poison main instant|poison main instant]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons combat pve|poisons combat pve]', '', '', '', '', '', '', '', '', '', 0), + (1743, 'trigger:warlock no curse', 1, 'no curse [h:object|trigger] [c:no curse|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse demonology pve|curse demonology pve]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse affliction pvp|curse affliction pvp]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse affliction pve|curse affliction pve]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse affliction raid|curse affliction raid]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse demonology pvp|curse demonology pvp]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse demonology raid|curse demonology raid]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse destruction pve|curse destruction pve]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse destruction pvp|curse destruction pvp]\r\nExecutes: [h:action:warlock curse of agony|curse of agony] (12.000) for [h:strategy:warlock curse destruction raid|curse destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1744, 'strategy:rogue buff combat pve', 1, 'buff combat pve [h:object|strategy] [c:co ~buff combat pve|toggle combat][c:nc ~buff combat pve|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (1745, 'strategy:warrior buff arms pvp', 1, 'buff arms pvp [h:object|strategy] [c:co ~buff arms pvp|toggle combat][c:nc ~buff arms pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (30.000)\r\nOn: [h:trigger:target of fear cast|target of fear cast] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1746, 'strategy:shaman buff elemental pve', 1, 'buff elemental pve [h:object|strategy] [c:co ~buff elemental pve|toggle combat][c:nc ~buff elemental pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman flametongue weapon|flametongue weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1747, 'strategy:rogue buff subtlety pve', 1, 'buff subtlety pve [h:object|strategy] [c:co ~buff subtlety pve|toggle combat][c:nc ~buff subtlety pve|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (1748, 'action:rogue apply instant poison', 1, 'apply instant poison [h:object|action] [c:do apply instant poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poison main instant|poison main instant]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons assassination pve|poisons assassination pve]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons assassination raid|poisons assassination raid]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons combat pve|poisons combat pve]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons combat raid|poisons combat raid]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons subtlety pve|poisons subtlety pve]\r\nTriggers from: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] with relevance (10.000) for [h:strategy:rogue poisons subtlety raid|poisons subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (1749, 'action:paladin greater blessing of wisdom on party', 1, 'greater blessing of wisdom on party [h:object|action] [c:do greater blessing of wisdom on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing of wisdom on party|greater blessing of wisdom on party] with relevance (13.000) for [h:strategy:paladin blessing wisdom|blessing wisdom]', '', '', '', '', '', '', '', '', '', 0), (1750, 'strategy:rogue poison main wound', 1, 'poison main wound [h:object|strategy] [c:co ~poison main wound|toggle combat][c:nc ~poison main wound|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply wound poison main hand|apply wound poison main hand] do [h:action:rogue apply wound poison|apply wound poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1751, 'strategy:warrior cc protection pve', 1, 'cc protection pve [h:object|strategy] [c:co ~cc protection pve|toggle combat][c:nc ~cc protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] do [h:action:warrior concussion blow|concussion blow] (40.000)\r\nOn: [h:trigger:warrior shockwave|shockwave] do [h:action:warrior shockwave|shockwave] (40.000)\r\nOn: [h:trigger:warrior shield bash|shield bash] do [h:action:warrior shield bash|shield bash] (40.000)\r\nOn: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] do [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000)\r\nOn: [h:trigger:warrior shockwave on snare target|shockwave on snare target] do [h:action:warrior shockwave on snare target|shockwave on snare target] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1752, 'strategy:rogue subtlety pvp', 1, 'subtlety pvp [h:object|strategy] [c:co ~subtlety pvp|toggle combat][c:nc ~subtlety pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)[h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue cloak of shadows|cloak of shadows] do [h:action:rogue cloak of shadows|cloak of shadows] (42.000)\r\nDefault:[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:rogue shadowstep|shadowstep] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ghostly strike|ghostly strike] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1753, 'trigger:medium threat', 1, 'medium threat [h:object|trigger] [c:medium threat|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid cower|cower] (91.000) for [h:strategy:druid cat|cat]\r\nExecutes: [h:action:druid cower|cower] (91.000) for [h:strategy:druid cat|cat]', '', '', '', '', '', '', '', '', '', 0), - (1754, 'strategy:paladin cc protection raid', 1, 'cc protection raid [h:object|strategy] [c:co ~cc protection raid|toggle combat][c:nc ~cc protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1751, 'strategy:warrior cc protection pve', 1, 'cc protection pve [h:object|strategy] [c:co ~cc protection pve|toggle combat][c:nc ~cc protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] do [h:action:warrior concussion blow|concussion blow] (40.000)\r\nOn: [h:trigger:warrior shield bash|shield bash] do [h:action:warrior shield bash|shield bash] (40.000)\r\nOn: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] do [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1752, 'strategy:rogue subtlety pvp', 1, 'subtlety pvp [h:object|strategy] [c:co ~subtlety pvp|toggle combat][c:nc ~subtlety pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ghostly strike|ghostly strike] (12.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1753, 'trigger:medium threat', 1, 'medium threat [h:object|trigger] [c:medium threat|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid cower|cower] (20.000) for [h:strategy:druid dps feral raid|dps feral raid]', '', '', '', '', '', '', '', '', '', 0), + (1754, 'strategy:paladin cc protection raid', 1, 'cc protection raid [h:object|strategy] [c:co ~cc protection raid|toggle combat][c:nc ~cc protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)', '', '', '', '', '', '', '', '', '', 0), (1755, 'strategy:warlock pet affliction pve', 1, 'pet affliction pve [h:object|strategy] [c:co ~pet affliction pve|toggle combat][c:nc ~pet affliction pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon voidwalker|summon voidwalker] (11.000)[h:action:warlock summon imp|summon imp] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1756, 'value:nearest stealthed unit', 1, 'nearest stealthed unit [h:object|value] [c:cdebug values nearest stealthed unit|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1757, 'strategy:rogue aoe subtlety raid', 1, 'aoe subtlety raid [h:object|strategy] [c:co ~aoe subtlety raid|toggle combat][c:nc ~aoe subtlety raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1758, 'strategy:mage frost pvp', 1, 'frost pvp [h:object|strategy] [c:co ~frost pvp|toggle combat][c:nc ~frost pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mage fingers of frost|fingers of frost] do [h:action:mage deep freeze|deep freeze] (11.000)\r\nOn: [h:trigger:mage ice lance|ice lance] do [h:action:mage ice lance|ice lance] (10.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (21.000)[h:action:mage evocation|evocation] (20.000)\r\nOn: [h:trigger:mage fireball!|fireball!] do [h:action:mage frostfire bolt|frostfire bolt] (12.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage spellsteal|spellsteal] do [h:action:mage spellsteal|spellsteal] (40.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:mage fire blast|fire blast] (20.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (21.000)\r\nDefault:[h:action:mage frostbolt|frostbolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] do [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] do [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000)\r\nOn: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] do [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] do [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] do [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nOn: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] do [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000)\r\nOn: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] do [h:action:mage remove glyph of frostbolt|remove glyph of frostbolt] (11.000)\r\nOn: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] do [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] do [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] do [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1759, 'action:shaman update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]', '', '', '', '', '', '', '', '', '', 0), + (1757, 'strategy:rogue aoe subtlety raid', 1, 'aoe subtlety raid [h:object|strategy] [c:co ~aoe subtlety raid|toggle combat][c:nc ~aoe subtlety raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1758, 'strategy:mage frost pvp', 1, 'frost pvp [h:object|strategy] [c:co ~frost pvp|toggle combat][c:nc ~frost pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (24.000)[h:action:mage evocation|evocation] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage pyroblast|pyroblast] (21.000)[h:action:mage frostbolt|frostbolt] (20.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:mage fire blast|fire blast] (20.000)[h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:mage frostbolt|frostbolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1759, 'action:shaman update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:shaman restoration|restoration]', '', '', '', '', '', '', '', '', '', 0), (1760, 'strategy:paladin aura concentration', 1, 'aura concentration [h:object|strategy] [c:co ~aura concentration|toggle combat][c:nc ~aura concentration|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin concentration aura|concentration aura] do [h:action:paladin concentration aura|concentration aura] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1761, 'strategy:mage cc arcane pvp', 1, 'cc arcane pvp [h:object|strategy] [c:co ~cc arcane pvp|toggle combat][c:nc ~cc arcane pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), (1762, 'trigger:warlock no voidwalker', 1, 'no voidwalker [h:object|trigger] [c:no voidwalker|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock summon voidwalker|summon voidwalker] (20.000) for [h:strategy:warlock pet voidwalker|pet voidwalker]', '', '', '', '', '', '', '', '', '', 0), (1763, 'trigger:mage learn glyph of living bomb', 1, 'learn glyph of living bomb [h:object|trigger] [c:learn glyph of living bomb|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (1764, 'trigger:mage fireball!', 1, 'fireball! [h:object|trigger] [c:fireball!|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage frostfire bolt|frostfire bolt] (12.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage frostfire bolt|frostfire bolt] (12.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage frostfire bolt|frostfire bolt] (12.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (1765, 'strategy:shaman totem air tranquil', 1, 'totem air tranquil [h:object|strategy] [c:co ~totem air tranquil|toggle combat][c:nc ~totem air tranquil|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman tranquil air totem|tranquil air totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1766, 'strategy:warlock pet demonology pvp', 1, 'pet demonology pvp [h:object|strategy] [c:co ~pet demonology pvp|toggle combat][c:nc ~pet demonology pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon succubus|summon succubus] (10.000)[h:action:warlock summon felhunter|summon felhunter] (10.000)[h:action:warlock summon felguard|summon felguard] (12.000)', '', '', '', '', '', '', '', '', '', 0), + (1766, 'strategy:warlock pet demonology pvp', 1, 'pet demonology pvp [h:object|strategy] [c:co ~pet demonology pvp|toggle combat][c:nc ~pet demonology pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon felhunter|summon felhunter] (10.000)[h:action:warlock summon succubus|summon succubus] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1767, 'strategy:paladin blessing holy pve', 1, 'blessing holy pve [h:object|strategy] [c:co ~blessing holy pve|toggle combat][c:nc ~blessing holy pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin pve blessing|pve blessing] (10.000)\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin pve blessing on party|pve blessing on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing|greater blessing] do [h:action:paladin pve greater blessing|pve greater blessing] (11.000)\r\nOn: [h:trigger:paladin greater blessing on party|greater blessing on party] do [h:action:paladin pve greater blessing on party|pve greater blessing on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), (1768, 'action:warlock curse of exhaustion', 1, 'curse of exhaustion [h:object|action] [c:do curse of exhaustion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy ten yards|enemy ten yards] with relevance (40.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]', '', '', '', '', '', '', '', '', '', 0), (1769, 'action:paladin greater blessing of sanctuary', 1, 'greater blessing of sanctuary [h:object|action] [c:do greater blessing of sanctuary|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing of sanctuary|greater blessing of sanctuary] with relevance (11.000) for [h:strategy:paladin blessing sanctuary|blessing sanctuary]', '', '', '', '', '', '', '', '', '', 0), - (1770, 'trigger:druid greater blessing of salvation', 1, 'greater blessing of salvation [h:object|trigger] [c:greater blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), + (1770, 'trigger:druid greater blessing of salvation', 1, 'greater blessing of salvation [h:object|trigger] [c:greater blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:druid tank feral raid|tank feral raid]\r\nNon combat behavior:\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), (1771, 'strategy:warrior cc', 1, 'cc [h:object|strategy] [c:co ~cc|toggle combat][c:nc ~cc|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (1772, 'strategy:shaman aoe', 1, 'aoe [h:object|strategy] [c:co ~aoe|toggle combat][c:nc ~aoe|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1773, 'strategy:paladin aoe retribution pvp', 1, 'aoe retribution pvp [h:object|strategy] [c:co ~aoe retribution pvp|toggle combat][c:nc ~aoe retribution pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1774, 'strategy:shaman enhancement raid', 1, 'enhancement raid [h:object|strategy] [c:co ~enhancement raid|toggle combat][c:nc ~enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:shaman stormstrike|stormstrike] (10.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:shaman ready to remove totems|ready to remove totems] do [h:action:shaman totemic recall|totemic recall] (10.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1773, 'strategy:paladin aoe retribution pvp', 1, 'aoe retribution pvp [h:object|strategy] [c:co ~aoe retribution pvp|toggle combat][c:nc ~aoe retribution pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin consecration|consecration] do [h:action:paladin consecration|consecration] (20.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1774, 'strategy:shaman enhancement raid', 1, 'enhancement raid [h:object|strategy] [c:co ~enhancement raid|toggle combat][c:nc ~enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:shaman stormstrike|stormstrike] do [h:action:shaman stormstrike|stormstrike] (11.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (1775, 'trigger:paladin greater blessing of might on party', 1, 'greater blessing of might on party [h:object|trigger] [c:greater blessing of might on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin greater blessing of might on party|greater blessing of might on party] (13.000) for [h:strategy:paladin blessing might|blessing might]', '', '', '', '', '', '', '', '', '', 0), - (1776, 'strategy:paladin holy', 1, 'holy [h:object|strategy] [c:co ~holy|toggle combat][c:nc ~holy|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (1776, 'strategy:paladin holy', 1, 'holy [h:object|strategy] [c:co ~holy|toggle combat][c:nc ~holy|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), (1777, 'strategy:rogue poison main mind', 1, 'poison main mind [h:object|strategy] [c:co ~poison main mind|toggle combat][c:nc ~poison main mind|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply mind poison main hand|apply mind poison main hand] do [h:action:rogue apply mind poison|apply mind poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1778, 'action:paladin blessing of light', 1, 'blessing of light [h:object|action] [c:do blessing of light|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of light|blessing of light] with relevance (10.000) for [h:strategy:paladin blessing light|blessing light]', '', '', '', '', '', '', '', '', '', 0), - (1779, 'trigger:warlock conflagrate', 1, 'conflagrate [h:object|trigger] [c:conflagrate|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock conflagrate|conflagrate] (12.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nExecutes: [h:action:warlock conflagrate|conflagrate] (12.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock conflagrate|conflagrate] (12.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), - (1780, 'list:hunter trigger', 1, 'hunter triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:death|death] [h:trigger:enemy fifteen yards|enemy fifteen yards] [h:trigger:enemy five yards|enemy five yards] [h:trigger:enemy is close|enemy is close] [h:trigger:enemy ten yards|enemy ten yards]\r\n[h:trigger:high threat|high threat] [h:trigger:hunter aimed shot|aimed shot] [h:trigger:hunter aoe|aoe] [h:trigger:hunter aspect of the hawk|aspect of the hawk] [h:trigger:hunter aspect of the pack|aspect of the pack]\r\n[h:trigger:hunter aspect of the viper|aspect of the viper] [h:trigger:hunter aspect of the wild|aspect of the wild] [h:trigger:hunter attackers count|attackers count] [h:trigger:hunter bestial wrath|bestial wrath]\r\n[h:trigger:hunter black arrow on snare target|black arrow on snare target] [h:trigger:hunter black arrow|black arrow] [h:trigger:hunter counterattack|counterattack] [h:trigger:hunter feign death|feign death] [h:trigger:hunter hunter\'s mark|hunter\'s mark]\r\n[h:trigger:hunter item count|item count] [h:trigger:hunter multi shot|multi shot] [h:trigger:hunter my attacker count|my attacker count] [h:trigger:hunter no beast|no beast] [h:trigger:hunter rapid fire|rapid fire]\r\n[h:trigger:hunter scare beast|scare beast] [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] [h:trigger:hunter silencing shot on enemy healer|silencing shot on enemy healer] [h:trigger:hunter silencing shot|silencing shot]\r\n[h:trigger:hunter stealthed nearby|stealthed nearby] [h:trigger:hunter trigger|trigger] [h:trigger:hunter trueshot aura|trueshot aura] [h:trigger:hunter viper sting on attacker|viper sting on attacker]\r\n[h:trigger:hunter wyvern sting on snare target|wyvern sting on snare target] [h:trigger:invalid target|invalid target] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:no pet|no pet] [h:trigger:often|often]\r\n[h:trigger:player has flag|player has flag] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start] [h:trigger:resurrect|resurrect] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), + (1779, 'trigger:warlock conflagrate', 1, 'conflagrate [h:object|trigger] [c:conflagrate|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock conflagrate|conflagrate] (12.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nExecutes: [h:action:warlock conflagrate|conflagrate] (12.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock conflagrate|conflagrate] (12.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1780, 'list:hunter trigger', 1, 'hunter triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:death|death] [h:trigger:dispel enrage|dispel enrage] [h:trigger:enemy fifteen yards|enemy fifteen yards] [h:trigger:enemy is close|enemy is close] [h:trigger:hunter aimed shot|aimed shot]\r\n[h:trigger:hunter aoe|aoe] [h:trigger:hunter aspect of the beast|aspect of the beast] [h:trigger:hunter aspect of the cheetah|aspect of the cheetah] [h:trigger:hunter aspect of the dragonhawk|aspect of the dragonhawk]\r\n[h:trigger:hunter aspect of the hawk|aspect of the hawk] [h:trigger:hunter aspect of the monkey|aspect of the monkey] [h:trigger:hunter aspect of the pack|aspect of the pack] [h:trigger:hunter aspect of the viper|aspect of the viper]\r\n[h:trigger:hunter aspect of the wild|aspect of the wild] [h:trigger:hunter bestial wrath|bestial wrath] [h:trigger:hunter counterattack|counterattack] [h:trigger:hunter feign death|feign death] [h:trigger:hunter freezing trap|freezing trap]\r\n[h:trigger:hunter hunter\'s mark|hunter\'s mark] [h:trigger:hunter item count|item count] [h:trigger:hunter multi-shot|multi-shot] [h:trigger:hunter rapid fire|rapid fire] [h:trigger:hunter scare beast|scare beast]\r\n[h:trigger:hunter serpent sting on attacker|serpent sting on attacker] [h:trigger:hunter stealthed nearby|stealthed nearby] [h:trigger:hunter switch to melee|switch to melee] [h:trigger:hunter switch to ranged|switch to ranged]\r\n[h:trigger:hunter trigger|trigger] [h:trigger:hunter trueshot aura|trueshot aura] [h:trigger:hunter viper sting on attacker|viper sting on attacker] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp] [h:trigger:in raid fight|in raid fight]\r\n[h:trigger:invalid target|invalid target] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:no pet|no pet] [h:trigger:often|often] [h:trigger:player has flag|player has flag] [h:trigger:pull end|pull end]\r\n[h:trigger:pull start|pull start] [h:trigger:random|random] [h:trigger:resurrect|resurrect] [h:trigger:target of attacker close|target of attacker close] [h:trigger:target of attacker|target of attacker] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), (1781, 'trigger:deathknight blessing of salvation', 1, 'blessing of salvation [h:object|trigger] [c:blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), - (1782, 'strategy:paladin cc retribution pvp', 1, 'cc retribution pvp [h:object|strategy] [c:co ~cc retribution pvp|toggle combat][c:nc ~cc retribution pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin repentance|repentance] do [h:action:paladin repentance|repentance] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] do [h:action:paladin repentance on snare target|repentance on snare target] (40.000)\r\nOn: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] do [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1783, 'strategy:warrior buff protection pvp', 1, 'buff protection pvp [h:object|strategy] [c:co ~buff protection pvp|toggle combat][c:nc ~buff protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:warrior defensive stance|defensive stance] do [h:action:warrior defensive stance|defensive stance] (30.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nOn: [h:trigger:warrior commanding shout|commanding shout] do [h:action:warrior commanding shout|commanding shout] (20.000)\r\nOn: [h:trigger:feared|feared] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1782, 'strategy:paladin cc retribution pvp', 1, 'cc retribution pvp [h:object|strategy] [c:co ~cc retribution pvp|toggle combat][c:nc ~cc retribution pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] do [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] do [h:action:paladin repentance on snare target|repentance on snare target] (40.000)\r\nOn: [h:trigger:paladin repentance|repentance] do [h:action:paladin repentance|repentance] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1783, 'strategy:warrior buff protection pvp', 1, 'buff protection pvp [h:object|strategy] [c:co ~buff protection pvp|toggle combat][c:nc ~buff protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:target of fear cast|target of fear cast] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nOn: [h:trigger:warrior defensive stance|defensive stance] do [h:action:warrior defensive stance|defensive stance] (30.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1784, 'action:shaman grace of air totem', 1, 'grace of air totem [h:object|action] [c:do grace of air totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totem air grace|totem air grace]', '', '', '', '', '', '', '', '', '', 0), - (1785, 'strategy:rogue buff subtlety raid', 1, 'buff subtlety raid [h:object|strategy] [c:co ~buff subtlety raid|toggle combat][c:nc ~buff subtlety raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1785, 'strategy:rogue buff subtlety raid', 1, 'buff subtlety raid [h:object|strategy] [c:co ~buff subtlety raid|toggle combat][c:nc ~buff subtlety raid|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (1786, 'strategy:mage cure frost raid', 1, 'cure frost raid [h:object|strategy] [c:co ~cure frost raid|toggle combat][c:nc ~cure frost raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (51.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (10.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1787, 'trigger:warlock curse of recklessness', 1, 'curse of recklessness [h:object|trigger] [c:curse of recklessness|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of recklessness|curse of recklessness] (20.000) for [h:strategy:warlock curse recklessness|curse recklessness]', '', '', '', '', '', '', '', '', '', 0), (1788, 'trigger:bb', 1, 'bb [h:object|trigger] [c:bb|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|buyback] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1789, 'action:warlock curse of doom', 1, 'curse of doom [h:object|action] [c:do curse of doom|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of doom|curse of doom] with relevance (20.000) for [h:strategy:warlock curse doom|curse doom]', '', '', '', '', '', '', '', '', '', 0), - (1790, 'strategy:rogue cc assassination pvp', 1, 'cc assassination pvp [h:object|strategy] [c:co ~cc assassination pvp|toggle combat][c:nc ~cc assassination pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1790, 'strategy:rogue cc assassination pvp', 1, 'cc assassination pvp [h:object|strategy] [c:co ~cc assassination pvp|toggle combat][c:nc ~cc assassination pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)', '', '', '', '', '', '', '', '', '', 0), (1791, 'strategy:paladin blessing kings', 1, 'blessing kings [h:object|strategy] [c:co ~blessing kings|toggle combat][c:nc ~blessing kings|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing of kings|blessing of kings] do [h:action:paladin blessing of kings|blessing of kings] (10.000)\r\nOn: [h:trigger:paladin blessing of kings on party|blessing of kings on party] do [h:action:paladin blessing of kings on party|blessing of kings on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing of kings|greater blessing of kings] do [h:action:paladin greater blessing of kings|greater blessing of kings] (11.000)\r\nOn: [h:trigger:paladin greater blessing of kings on party|greater blessing of kings on party] do [h:action:paladin greater blessing of kings on party|greater blessing of kings on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), (1792, 'strategy:paladin aura holy raid', 1, 'aura holy raid [h:object|strategy] [c:co ~aura holy raid|toggle combat][c:nc ~aura holy raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin concentration aura|concentration aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), (1793, 'action:warlock curse of shadow', 1, 'curse of shadow [h:object|action] [c:do curse of shadow|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of shadow|curse of shadow] with relevance (20.000) for [h:strategy:warlock curse shadow|curse shadow]', '', '', '', '', '', '', '', '', '', 0), (1794, 'strategy:shaman totem water poison', 1, 'totem water poison [h:object|strategy] [c:co ~totem water poison|toggle combat][c:nc ~totem water poison|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman poison cleansing totem|poison cleansing totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1795, 'value:should craft spell', 1, 'should craft spell [h:object|value] [c:cdebug values should craft spell|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1796, 'strategy:warlock buff destruction raid', 1, 'buff destruction raid [h:object|strategy] [c:co ~buff destruction raid|toggle combat][c:nc ~buff destruction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1797, 'strategy:warlock aoe demonology pve', 1, 'aoe demonology pve [h:object|strategy] [c:co ~aoe demonology pve|toggle combat][c:nc ~aoe demonology pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:warlock rain of fire|rain of fire] (20.000)[h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1798, 'strategy:paladin buff retribution pve', 1, 'buff retribution pve [h:object|strategy] [c:co ~buff retribution pve|toggle combat][c:nc ~buff retribution pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin avenging wrath|avenging wrath] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1796, 'strategy:warlock buff destruction raid', 1, 'buff destruction raid [h:object|strategy] [c:co ~buff destruction raid|toggle combat][c:nc ~buff destruction raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:warlock item target|item target] do [h:action:warlock item target|item target] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (1797, 'strategy:warlock aoe demonology pve', 1, 'aoe demonology pve [h:object|strategy] [c:co ~aoe demonology pve|toggle combat][c:nc ~aoe demonology pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:warlock rain of fire|rain of fire] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1798, 'strategy:paladin buff retribution pve', 1, 'buff retribution pve [h:object|strategy] [c:co ~buff retribution pve|toggle combat][c:nc ~buff retribution pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1799, 'strategy:warlock curse demonology raid', 1, 'curse demonology raid [h:object|strategy] [c:co ~curse demonology raid|toggle combat][c:nc ~curse demonology raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock no curse|no curse] do [h:action:warlock curse of agony|curse of agony] (12.000)\r\nOn: [h:trigger:warlock no curse on attacker|no curse on attacker] do [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), (1800, 'trigger:paladin blessing of kings on party', 1, 'blessing of kings on party [h:object|trigger] [c:blessing of kings on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin blessing of kings on party|blessing of kings on party] (12.000) for [h:strategy:paladin blessing kings|blessing kings]', '', '', '', '', '', '', '', '', '', 0), - (1801, 'action:action', 1, 'action [h:object|action] [c:do action|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|bg free] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|bg free] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|bg free] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|bg free] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1802, 'trigger:focus heal', 1, 'focus heal [h:object|trigger] [c:focus heal|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|focus heal target] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (1803, 'strategy:mage aoe frost pvp', 1, 'aoe frost pvp [h:object|strategy] [c:co ~aoe frost pvp|toggle combat][c:nc ~aoe frost pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)[h:action:mage blizzard|blizzard] (21.000)[h:action:mage flamestrike|flamestrike] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1804, 'trigger:warlock no curse on attacker', 1, 'no curse on attacker [h:object|trigger] [c:no curse on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse demonology pve|curse demonology pve]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse affliction pve|curse affliction pve]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse destruction pvp|curse destruction pvp]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse affliction pvp|curse affliction pvp]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse affliction raid|curse affliction raid]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse demonology pvp|curse demonology pvp]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse demonology raid|curse demonology raid]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse destruction pve|curse destruction pve]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse destruction raid|curse destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (1801, 'action:action', 1, 'action [h:object|action] [c:do action|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|bg ended] with relevance (20.000) for [h:strategy|battleground]', '', '', '', '', '', '', '', '', '', 0), + (1802, 'trigger:focus heal', 1, 'focus heal [h:object|trigger] [c:focus heal|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|focus heal targets] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (1803, 'strategy:mage aoe frost pvp', 1, 'aoe frost pvp [h:object|strategy] [c:co ~aoe frost pvp|toggle combat][c:nc ~aoe frost pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:mage blizzard|blizzard] (21.000)[h:action:mage flamestrike|flamestrike] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1804, 'trigger:warlock no curse on attacker', 1, 'no curse on attacker [h:object|trigger] [c:no curse on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse demonology pve|curse demonology pve]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse affliction pvp|curse affliction pvp]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse affliction pve|curse affliction pve]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse affliction raid|curse affliction raid]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse demonology pvp|curse demonology pvp]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse demonology raid|curse demonology raid]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse destruction pve|curse destruction pve]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse destruction pvp|curse destruction pvp]\r\nExecutes: [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000) for [h:strategy:warlock curse destruction raid|curse destruction raid]', '', '', '', '', '', '', '', '', '', 0), (1805, 'trigger:warlock no felguard', 1, 'no felguard [h:object|trigger] [c:no felguard|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock summon felguard|summon felguard] (20.000) for [h:strategy:warlock pet felguard|pet felguard]', '', '', '', '', '', '', '', '', '', 0), (1806, 'strategy:paladin aura shadow', 1, 'aura shadow [h:object|strategy] [c:co ~aura shadow|toggle combat][c:nc ~aura shadow|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin shadow resistance aura|shadow resistance aura] do [h:action:paladin shadow resistance aura|shadow resistance aura] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1807, 'strategy:warrior aoe arms pve', 1, 'aoe arms pve [h:object|strategy] [c:co ~aoe arms pve|toggle combat][c:nc ~aoe arms pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (23.000)[h:action:warrior bladestorm|bladestorm] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)', '', '', '', '', '', '', '', '', '', 0), - (1808, 'strategy:paladin aoe protection pvp', 1, 'aoe protection pvp [h:object|strategy] [c:co ~aoe protection pvp|toggle combat][c:nc ~aoe protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin avenger\'s shield|avenger\'s shield] do [h:action:paladin avenger\'s shield|avenger\'s shield] (20.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:paladin hammer of the righteous|hammer of the righteous] (23.000)[h:action:oil of immolation|oil of immolation] (24.000)[h:action:paladin avenger\'s shield|avenger\'s shield] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1807, 'strategy:warrior aoe arms pve', 1, 'aoe arms pve [h:object|strategy] [c:co ~aoe arms pve|toggle combat][c:nc ~aoe arms pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (25.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (24.000)[h:action:warrior cleave|cleave] (23.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (1808, 'strategy:paladin aoe protection pvp', 1, 'aoe protection pvp [h:object|strategy] [c:co ~aoe protection pvp|toggle combat][c:nc ~aoe protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin consecration|consecration] do [h:action:paladin consecration|consecration] (20.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1809, 'strategy:rogue cc combat raid', 1, 'cc combat raid [h:object|strategy] [c:co ~cc combat raid|toggle combat][c:nc ~cc combat raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)', '', '', '', '', '', '', '', '', '', 0), - (1810, 'action:shaman totem of wrath', 1, 'totem of wrath [h:object|action] [c:do totem of wrath|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]', '', '', '', '', '', '', '', '', '', 0), - (1811, 'list:mage trigger', 1, 'mage triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:enemy player ten yards|enemy player ten yards] [h:trigger:enemy ten yards|enemy ten yards]\r\n[h:trigger:enemy too close for spell|enemy too close for spell] [h:trigger:give food|give food] [h:trigger:give water|give water] [h:trigger:high threat|high threat] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp]\r\n[h:trigger:in raid fight|in raid fight] [h:trigger:invalid target|invalid target] [h:trigger:low mana|low mana] [h:trigger:mage aoe|aoe] [h:trigger:mage arcane blast|arcane blast] [h:trigger:mage arcane brilliance on party|arcane brilliance on party]\r\n[h:trigger:mage arcane intellect on party|arcane intellect on party] [h:trigger:mage arcane intellect|arcane intellect] [h:trigger:mage arcane power|arcane power] [h:trigger:mage blink|blink] [h:trigger:mage cold snap|cold snap]\r\n[h:trigger:mage combustion|combustion] [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] [h:trigger:mage counterspell|counterspell] [h:trigger:mage fingers of frost|fingers of frost]\r\n[h:trigger:mage fire spells locked|fire spells locked] [h:trigger:mage fire ward|fire ward] [h:trigger:mage fireball!|fireball!] [h:trigger:mage frost ward|frost ward] [h:trigger:mage have aggro|have aggro] [h:trigger:mage hot streak|hot streak]\r\n[h:trigger:mage ice armor|ice armor] [h:trigger:mage ice barrier|ice barrier] [h:trigger:mage ice lance|ice lance] [h:trigger:mage icy veins|icy veins] [h:trigger:mage improved scorch|improved scorch]\r\n[h:trigger:mage learn glyph of fireball|learn glyph of fireball] [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb]\r\n[h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] [h:trigger:mage living bomb|living bomb] [h:trigger:mage mirror image|mirror image]\r\n[h:trigger:mage missile barrage|missile barrage] [h:trigger:mage molten armor|molten armor] [h:trigger:mage my attacker count|my attacker count] [h:trigger:mage no drink trigger|no drink trigger] [h:trigger:mage no food trigger|no food trigger]\r\n[h:trigger:mage no mana gem trigger|no mana gem trigger] [h:trigger:mage polymorph|polymorph] [h:trigger:mage presence of mind|presence of mind] [h:trigger:mage remove curse|remove curse] [h:trigger:mage remove glyph of fireball|remove glyph of fireball]\r\n[h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image]\r\n[h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] [h:trigger:mage spellsteal|spellsteal] [h:trigger:mage target low health|target low health] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal]\r\n[h:trigger:no mana|no mana] [h:trigger:often|often] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start] [h:trigger:resurrect|resurrect] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), + (1810, 'action:shaman totem of wrath', 1, 'totem of wrath [h:object|action] [c:do totem of wrath|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]', '', '', '', '', '', '', '', '', '', 0), + (1811, 'list:mage trigger', 1, 'mage triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:enemy ten yards|enemy ten yards] [h:trigger:enemy too close for spell|enemy too close for spell] [h:trigger:give food|give food]\r\n[h:trigger:give water|give water] [h:trigger:high threat|high threat] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp] [h:trigger:in raid fight|in raid fight] [h:trigger:invalid target|invalid target] [h:trigger:low health|low health]\r\n[h:trigger:low mana|low mana] [h:trigger:mage aoe|aoe] [h:trigger:mage arcane brilliance on party|arcane brilliance on party] [h:trigger:mage arcane intellect on party|arcane intellect on party] [h:trigger:mage arcane intellect|arcane intellect]\r\n[h:trigger:mage arcane power|arcane power] [h:trigger:mage blink|blink] [h:trigger:mage cold snap|cold snap] [h:trigger:mage combustion|combustion] [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer]\r\n[h:trigger:mage counterspell|counterspell] [h:trigger:mage fire spells locked|fire spells locked] [h:trigger:mage fire ward|fire ward] [h:trigger:mage frost ward|frost ward] [h:trigger:mage have aggro|have aggro] [h:trigger:mage ice armor|ice armor]\r\n[h:trigger:mage ice barrier|ice barrier] [h:trigger:mage mage armor|mage armor] [h:trigger:mage my attacker count|my attacker count] [h:trigger:mage no drink trigger|no drink trigger] [h:trigger:mage no fire vulnerability|no fire vulnerability]\r\n[h:trigger:mage no food trigger|no food trigger] [h:trigger:mage no mana gem trigger|no mana gem trigger] [h:trigger:mage polymorph|polymorph] [h:trigger:mage presence of mind|presence of mind] [h:trigger:mage pyroblast|pyroblast]\r\n[h:trigger:mage remove curse|remove curse] [h:trigger:mage target low health|target low health] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:no mana|no mana] [h:trigger:often|often] [h:trigger:pull end|pull end]\r\n[h:trigger:pull start|pull start] [h:trigger:random|random] [h:trigger:resurrect|resurrect] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), (1812, 'strategy:shaman enhancement', 1, 'enhancement [h:object|strategy] [c:co ~enhancement|toggle combat][c:nc ~enhancement|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:shaman update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:shaman update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:shaman update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:shaman update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:shaman update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:shaman update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (1813, 'strategy:mage cc fire pve', 1, 'cc fire pve [h:object|strategy] [c:co ~cc fire pve|toggle combat][c:nc ~cc fire pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)\r\nOn: [h:trigger:enemy too close for spell|enemy too close for spell] do [h:action:mage dragon\'s breath|dragon\'s breath] (90.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1814, 'strategy:paladin cure protection pvp', 1, 'cure protection pvp [h:object|strategy] [c:co ~cure protection pvp|toggle combat][c:nc ~cure protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (1813, 'strategy:mage cc fire pve', 1, 'cc fire pve [h:object|strategy] [c:co ~cc fire pve|toggle combat][c:nc ~cc fire pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)[h:action:mage blast wave|blast wave] (40.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1814, 'strategy:paladin cure protection pvp', 1, 'cure protection pvp [h:object|strategy] [c:co ~cure protection pvp|toggle combat][c:nc ~cure protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), (1815, 'action:warlock update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warlock affliction|affliction]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warlock demonology|demonology]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warlock destruction|destruction]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warlock affliction|affliction]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warlock demonology|demonology]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warlock destruction|destruction]', '', '', '', '', '', '', '', '', '', 0), - (1816, 'trigger:warrior blessing of salvation', 1, 'blessing of salvation [h:object|trigger] [c:blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (1817, 'strategy:shaman totems enhancement pve', 1, 'totems enhancement pve [h:object|strategy] [c:co ~totems enhancement pve|toggle combat][c:nc ~totems enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman windfury totem|windfury totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman flametongue totem|flametongue totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1818, 'strategy:rogue aoe combat raid', 1, 'aoe combat raid [h:object|strategy] [c:co ~aoe combat raid|toggle combat][c:nc ~aoe combat raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:oil of immolation|oil of immolation] (24.000)[h:action:rogue blade flurry|blade flurry] (24.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1816, 'trigger:warrior blessing of salvation', 1, 'blessing of salvation [h:object|trigger] [c:blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:warrior protection pve|protection pve]\r\nNon combat behavior:\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (1817, 'strategy:shaman totems enhancement pve', 1, 'totems enhancement pve [h:object|strategy] [c:co ~totems enhancement pve|toggle combat][c:nc ~totems enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman windfury totem|windfury totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman flametongue totem|flametongue totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1818, 'strategy:rogue aoe combat raid', 1, 'aoe combat raid [h:object|strategy] [c:co ~aoe combat raid|toggle combat][c:nc ~aoe combat raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:rogue blade flurry|blade flurry] (24.000)[h:action:oil of immolation|oil of immolation] (23.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1819, 'strategy:warlock demonology', 1, 'demonology [h:object|strategy] [c:co ~demonology|toggle combat][c:nc ~demonology|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warlock update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warlock update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warlock update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warlock update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warlock update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warlock update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (1820, 'strategy:rogue assassination raid', 1, 'assassination raid [h:object|strategy] [c:co ~assassination raid|toggle combat][c:nc ~assassination raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)[h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:rogue feint|feint] (50.000)\r\nOn: [h:trigger:rogue cloak of shadows|cloak of shadows] do [h:action:rogue cloak of shadows|cloak of shadows] (42.000)\r\nDefault:[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1820, 'strategy:rogue assassination raid', 1, 'assassination raid [h:object|strategy] [c:co ~assassination raid|toggle combat][c:nc ~assassination raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:high threat|high threat] do [h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:rogue feint|feint] (50.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (1821, 'trigger:mage learn glyph of mirror image', 1, 'learn glyph of mirror image [h:object|trigger] [c:learn glyph of mirror image|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1822, 'action:paladin update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin protection|protection]', '', '', '', '', '', '', '', '', '', 0), + (1822, 'action:paladin update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:paladin protection|protection]', '', '', '', '', '', '', '', '', '', 0), (1823, 'strategy:rogue poison main crippling', 1, 'poison main crippling [h:object|strategy] [c:co ~poison main crippling|toggle combat][c:nc ~poison main crippling|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand] do [h:action:rogue apply crippling poison|apply crippling poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1824, 'strategy:rogue stealth subtlety pvp', 1, 'stealth subtlety pvp [h:object|strategy] [c:co ~stealth subtlety pvp|toggle combat][c:nc ~stealth subtlety pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:rogue shadowstep|shadowstep] (22.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)[h:action:rogue unstealth|unstealth] (20.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue premeditation|premeditation] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1825, 'action:paladin update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin protection|protection]', '', '', '', '', '', '', '', '', '', 0), + (1824, 'strategy:rogue stealth subtlety pvp', 1, 'stealth subtlety pvp [h:object|strategy] [c:co ~stealth subtlety pvp|toggle combat][c:nc ~stealth subtlety pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)[h:action:rogue unstealth|unstealth] (20.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue premeditation|premeditation] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1825, 'action:paladin update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:paladin protection|protection]', '', '', '', '', '', '', '', '', '', 0), (1826, 'action:warlock soulshatter', 1, 'soulshatter [h:object|action] [c:do soulshatter|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (40.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (40.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:medium threat|medium threat] with relevance (40.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), (1827, 'strategy:shaman totem air windwall', 1, 'totem air windwall [h:object|strategy] [c:co ~totem air windwall|toggle combat][c:nc ~totem air windwall|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman windwall totem|windwall totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1828, 'strategy:paladin cure retribution raid', 1, 'cure retribution raid [h:object|strategy] [c:co ~cure retribution raid|toggle combat][c:nc ~cure retribution raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (1828, 'strategy:paladin cure retribution raid', 1, 'cure retribution raid [h:object|strategy] [c:co ~cure retribution raid|toggle combat][c:nc ~cure retribution raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), (1829, 'action:buyback', 1, 'buyback [h:object|action] [c:do buyback|execute]\r\nThis command will make bots retrieve items after being sold.\r\nUsage: buyback [itemlink]\r\nExample: buyback all (try to get all items back)\r\nExample: buyback [itemlink] (get a specific item back)\r\n\r\nUsed actions:\r\n[h:action|] \r\nUsed values:\r\n[h:value|nearest npcs] [h:value|item count] [h:value|bag space] \r\nReaction behavior:\r\nTriggers from: [h:trigger|bb] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1830, 'strategy:rogue poison off deadly', 1, 'poison off deadly [h:object|strategy] [c:co ~poison off deadly|toggle combat][c:nc ~poison off deadly|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] do [h:action:rogue apply deadly poison|apply deadly poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1831, 'strategy:paladin retribution', 1, 'retribution [h:object|strategy] [c:co ~retribution|toggle combat][c:nc ~retribution|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (1832, 'strategy:warrior protection raid', 1, 'protection raid [h:object|strategy] [c:co ~protection raid|toggle combat][c:nc ~protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior revenge|revenge] do [h:action:warrior revenge|revenge] (11.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior last stand|last stand] (92.000)[h:action:warrior shield wall|shield wall] (91.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:warrior disarm|disarm] do [h:action:warrior disarm|disarm] (10.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000)\r\nOn: [h:trigger:warrior greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:warrior blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] do [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior shield slam|shield slam] (14.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:warrior intervene|intervene] (90.000)\r\nOn: [h:trigger:warrior shield block|shield block] do [h:action:warrior shield block|shield block] (32.000)\r\nOn: [h:trigger:warrior spell reflection|spell reflection] do [h:action:warrior spell reflection|spell reflection] (31.000)\r\nOn: [h:trigger:warrior sunder armor|sunder armor] do [h:action:warrior devastate|devastate] (13.000)\r\nOn: [h:trigger:warrior sword and board|sword and board] do [h:action:warrior shield slam|shield slam] (20.000)\r\nOn: [h:trigger:warrior taunt on snare target|taunt on snare target] do [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warrior victory rush|victory rush] do [h:action:warrior victory rush|victory rush] (20.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1833, 'strategy:paladin aoe retribution raid', 1, 'aoe retribution raid [h:object|strategy] [c:co ~aoe retribution raid|toggle combat][c:nc ~aoe retribution raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1834, 'strategy:paladin blessing light', 1, 'blessing light [h:object|strategy] [c:co ~blessing light|toggle combat][c:nc ~blessing light|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing of light|blessing of light] do [h:action:paladin blessing of light|blessing of light] (10.000)\r\nOn: [h:trigger:paladin blessing of light on party|blessing of light on party] do [h:action:paladin blessing of light on party|blessing of light on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing of light|greater blessing of light] do [h:action:paladin greater blessing of light|greater blessing of light] (11.000)\r\nOn: [h:trigger:paladin greater blessing of light on party|greater blessing of light on party] do [h:action:paladin greater blessing of light on party|greater blessing of light on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), + (1831, 'strategy:paladin retribution', 1, 'retribution [h:object|strategy] [c:co ~retribution|toggle combat][c:nc ~retribution|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (1832, 'strategy:warrior protection raid', 1, 'protection raid [h:object|strategy] [c:co ~protection raid|toggle combat][c:nc ~protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior bloodthirst|bloodthirst] do [h:action:warrior bloodthirst|bloodthirst] (20.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior last stand|last stand] (92.000)[h:action:warrior shield wall|shield wall] (91.000)\r\nOn: [h:trigger:warrior disarm|disarm] do [h:action:warrior disarm|disarm] (10.000)\r\nOn: [h:trigger:warrior demoralizing shout|demoralizing shout] do [h:action:warrior demoralizing shout|demoralizing shout] (24.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000)\r\nOn: [h:trigger:warrior greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] do [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior shield slam|shield slam] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warrior sunder armor|sunder armor] do [h:action:warrior devastate|devastate] (22.000)\r\nOn: [h:trigger:warrior revenge|revenge] do [h:action:warrior revenge|revenge] (21.000)\r\nOn: [h:trigger:warrior shield block|shield block] do [h:action:warrior shield block|shield block] (23.000)\r\nOn: [h:trigger:warrior taunt on snare target|taunt on snare target] do [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:warrior greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warrior blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1833, 'strategy:paladin aoe retribution raid', 1, 'aoe retribution raid [h:object|strategy] [c:co ~aoe retribution raid|toggle combat][c:nc ~aoe retribution raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin consecration|consecration] do [h:action:paladin consecration|consecration] (20.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1834, 'strategy:paladin blessing light', 1, 'blessing light [h:object|strategy] [c:co ~blessing light|toggle combat][c:nc ~blessing light|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing of light|blessing of light] do [h:action:paladin blessing of light|blessing of light] (10.000)\r\nOn: [h:trigger:paladin greater blessing of light on party|greater blessing of light on party] do [h:action:paladin greater blessing of light on party|greater blessing of light on party] (13.000)\r\nOn: [h:trigger:paladin blessing of light on party|blessing of light on party] do [h:action:paladin blessing of light on party|blessing of light on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing of light|greater blessing of light] do [h:action:paladin greater blessing of light|greater blessing of light] (11.000)', '', '', '', '', '', '', '', '', '', 0), (1835, 'action:shaman poison cleansing totem', 1, 'poison cleansing totem [h:object|action] [c:do poison cleansing totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totem water poison|totem water poison]', '', '', '', '', '', '', '', '', '', 0), (1836, 'action:paladin greater blessing of wisdom', 1, 'greater blessing of wisdom [h:object|action] [c:do greater blessing of wisdom|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing of wisdom|greater blessing of wisdom] with relevance (11.000) for [h:strategy:paladin blessing wisdom|blessing wisdom]', '', '', '', '', '', '', '', '', '', 0), - (1837, 'strategy:shaman enhancement pvp', 1, 'enhancement pvp [h:object|strategy] [c:co ~enhancement pvp|toggle combat][c:nc ~enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:shaman stormstrike|stormstrike] (10.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (20.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:shaman ready to remove totems|ready to remove totems] do [h:action:shaman totemic recall|totemic recall] (10.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1838, 'trigger:rogue apply crippling poison main hand', 1, 'apply crippling poison main hand [h:object|trigger] [c:apply crippling poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply crippling poison|apply crippling poison] (10.000) for [h:strategy:rogue poisons assassination pvp|poisons assassination pvp]\r\nExecutes: [h:action:rogue apply crippling poison|apply crippling poison] (10.000) for [h:strategy:rogue poisons combat pvp|poisons combat pvp]\r\nExecutes: [h:action:rogue apply crippling poison|apply crippling poison] (10.000) for [h:strategy:rogue poison off crippling|poison off crippling]\r\nExecutes: [h:action:rogue apply crippling poison|apply crippling poison] (10.000) for [h:strategy:rogue poisons subtlety pvp|poisons subtlety pvp]', '', '', '', '', '', '', '', '', '', 0), - (1839, 'list:warlock action', 1, 'warlock action : \r\n[h:action:apply oil|apply oil] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:goblin sapper|goblin sapper] [h:action:hearthstone|hearthstone]\r\n[h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start]\r\n[h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:shoot|shoot]\r\n[h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket] [h:action:warlock amplify curse|amplify curse] [h:action:warlock banish|banish] [h:action:warlock conflagrate|conflagrate]\r\n[h:action:warlock corruption on attacker|corruption on attacker] [h:action:warlock corruption|corruption] [h:action:warlock create healthstone|create healthstone] [h:action:warlock curse of agony on attacker|curse of agony on attacker]\r\n[h:action:warlock curse of agony|curse of agony] [h:action:warlock curse of doom|curse of doom] [h:action:warlock curse of exhaustion|curse of exhaustion] [h:action:warlock curse of recklessness|curse of recklessness]\r\n[h:action:warlock curse of shadow|curse of shadow] [h:action:warlock curse of the elements|curse of the elements] [h:action:warlock curse of tongues|curse of tongues] [h:action:warlock curse of weakness|curse of weakness]\r\n[h:action:warlock dark pact|dark pact] [h:action:warlock death coil on enemy healer|death coil on enemy healer] [h:action:warlock death coil on snare target|death coil on snare target] [h:action:warlock death coil|death coil]\r\n[h:action:warlock drain life|drain life] [h:action:warlock drain soul|drain soul] [h:action:warlock fear|fear] [h:action:warlock fel armor|fel armor] [h:action:warlock howl of terror|howl of terror] [h:action:warlock immolate|immolate]\r\n[h:action:warlock life tap|life tap] [h:action:warlock rain of fire|rain of fire] [h:action:warlock seed of corruption on attacker|seed of corruption on attacker] [h:action:warlock shadow bolt|shadow bolt] [h:action:warlock shadowburn|shadowburn]\r\n[h:action:warlock shadowfury on snare target|shadowfury on snare target] [h:action:warlock shadowfury|shadowfury] [h:action:warlock siphon life on attacker|siphon life on attacker] [h:action:warlock siphon life|siphon life]\r\n[h:action:warlock soulshatter|soulshatter] [h:action:warlock summon felguard|summon felguard] [h:action:warlock summon felhunter|summon felhunter] [h:action:warlock summon imp|summon imp] [h:action:warlock summon succubus|summon succubus]\r\n[h:action:warlock summon voidwalker|summon voidwalker] [h:action:warlock unstable affliction on attacker|unstable affliction on attacker] [h:action:warlock unstable affliction|unstable affliction] [h:action:warlock update pve strats|update pve strats]\r\n[h:action:warlock update pvp strats|update pvp strats] [h:action:warlock update raid strats|update raid strats] ', '', '', '', '', '', '', '', '', '', 0), + (1837, 'strategy:shaman enhancement pvp', 1, 'enhancement pvp [h:object|strategy] [c:co ~enhancement pvp|toggle combat][c:nc ~enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:shaman stormstrike|stormstrike] do [h:action:shaman stormstrike|stormstrike] (11.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1838, 'trigger:rogue apply crippling poison main hand', 1, 'apply crippling poison main hand [h:object|trigger] [c:apply crippling poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply crippling poison|apply crippling poison] (10.000) for [h:strategy:rogue poison main crippling|poison main crippling]', '', '', '', '', '', '', '', '', '', 0), + (1839, 'list:warlock action', 1, 'warlock action : \r\n[h:action:apply oil|apply oil] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:free action potion|free action potion] [h:action:goblin sapper|goblin sapper]\r\n[h:action:hearthstone|hearthstone] [h:action:initialize pet|initialize pet] [h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:pull action|pull action]\r\n[h:action:pull end|pull end] [h:action:pull start|pull start] [h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state]\r\n[h:action:set non combat state|set non combat state] [h:action:shoot|shoot] [h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket] [h:action:warlock amplify curse|amplify curse] [h:action:warlock banish|banish]\r\n[h:action:warlock conflagrate|conflagrate] [h:action:warlock corruption on attacker|corruption on attacker] [h:action:warlock corruption|corruption] [h:action:warlock create healthstone|create healthstone]\r\n[h:action:warlock curse of agony on attacker|curse of agony on attacker] [h:action:warlock curse of agony|curse of agony] [h:action:warlock curse of doom on attacker|curse of doom on attacker] [h:action:warlock curse of doom|curse of doom]\r\n[h:action:warlock curse of exhaustion|curse of exhaustion] [h:action:warlock curse of recklessness on attacker|curse of recklessness on attacker] [h:action:warlock curse of recklessness|curse of recklessness]\r\n[h:action:warlock curse of shadow on attacker|curse of shadow on attacker] [h:action:warlock curse of shadow|curse of shadow] [h:action:warlock curse of the elements on attacker|curse of the elements on attacker]\r\n[h:action:warlock curse of the elements|curse of the elements] [h:action:warlock curse of tongues on attacker|curse of tongues on attacker] [h:action:warlock curse of tongues|curse of tongues]\r\n[h:action:warlock curse of weakness on attacker|curse of weakness on attacker] [h:action:warlock curse of weakness|curse of weakness] [h:action:warlock dark pact|dark pact] [h:action:warlock death coil on enemy healer|death coil on enemy healer]\r\n[h:action:warlock death coil on snare target|death coil on snare target] [h:action:warlock death coil|death coil] [h:action:warlock drain life|drain life] [h:action:warlock drain soul|drain soul] [h:action:warlock fear|fear]\r\n[h:action:warlock fel armor|fel armor] [h:action:warlock howl of terror|howl of terror] [h:action:warlock immolate|immolate] [h:action:warlock item target|item target] [h:action:warlock life tap|life tap] [h:action:warlock rain of fire|rain of fire]\r\n[h:action:warlock sacrifice|sacrifice] [h:action:warlock shadow bolt|shadow bolt] [h:action:warlock shadowburn|shadowburn] [h:action:warlock siphon life on attacker|siphon life on attacker] [h:action:warlock siphon life|siphon life]\r\n[h:action:warlock spell lock|spell lock] [h:action:warlock summon felguard|summon felguard] [h:action:warlock summon felhunter|summon felhunter] [h:action:warlock summon imp|summon imp] [h:action:warlock summon succubus|summon succubus]\r\n[h:action:warlock summon voidwalker|summon voidwalker] [h:action:warlock update pve strats|update pve strats] [h:action:warlock update pvp strats|update pvp strats] [h:action:warlock update raid strats|update raid strats] ', '', '', '', '', '', '', '', '', '', 0), (1840, 'strategy:shaman totem earth earthbind', 1, 'totem earth earthbind [h:object|strategy] [c:co ~totem earth earthbind|toggle combat][c:nc ~totem earth earthbind|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman earthbind totem|earthbind totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1841, 'value:trigger active', 1, 'trigger active [h:object|value] [c:cdebug values trigger active|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1842, 'strategy:rogue buff assassination pvp', 1, 'buff assassination pvp [h:object|strategy] [c:co ~buff assassination pvp|toggle combat][c:nc ~buff assassination pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue cold blood|cold blood] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (1842, 'strategy:rogue buff assassination pvp', 1, 'buff assassination pvp [h:object|strategy] [c:co ~buff assassination pvp|toggle combat][c:nc ~buff assassination pvp|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (1843, 'trigger:paladin fire resistance aura', 1, 'fire resistance aura [h:object|trigger] [c:fire resistance aura|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin fire resistance aura|fire resistance aura] (10.000) for [h:strategy:paladin aura fire|aura fire]', '', '', '', '', '', '', '', '', '', 0), - (1844, 'strategy:warlock cc affliction pvp', 1, 'cc affliction pvp [h:object|strategy] [c:co ~cc affliction pvp|toggle combat][c:nc ~cc affliction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)[h:action:warlock curse of exhaustion|curse of exhaustion] (40.000)\r\nOn: [h:trigger:warlock fear pvp|fear pvp] do [h:action:warlock fear|fear] (41.000)', '', '', '', '', '', '', '', '', '', 0), - (1845, 'strategy:warlock pet destruction pvp', 1, 'pet destruction pvp [h:object|strategy] [c:co ~pet destruction pvp|toggle combat][c:nc ~pet destruction pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon succubus|summon succubus] (10.000)[h:action:warlock summon felhunter|summon felhunter] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1846, 'strategy:paladin buff protection pve', 1, 'buff protection pve [h:object|strategy] [c:co ~buff protection pve|toggle combat][c:nc ~buff protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin avenging wrath|avenging wrath] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)\r\nOn: [h:trigger:paladin righteous fury|righteous fury] do [h:action:paladin righteous fury|righteous fury] (11.000)', '', '', '', '', '', '', '', '', '', 0), - (1847, 'strategy:mage aoe arcane raid', 1, 'aoe arcane raid [h:object|strategy] [c:co ~aoe arcane raid|toggle combat][c:nc ~aoe arcane raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy too close for spell|enemy too close for spell] do [h:action:mage arcane explosion|arcane explosion] (20.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1844, 'strategy:warlock cc affliction pvp', 1, 'cc affliction pvp [h:object|strategy] [c:co ~cc affliction pvp|toggle combat][c:nc ~cc affliction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)[h:action:warlock curse of exhaustion|curse of exhaustion] (40.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:warlock spell lock|spell lock] do [h:action:warlock spell lock|spell lock] (46.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock fear pvp|fear pvp] do [h:action:warlock fear|fear] (41.000)', '', '', '', '', '', '', '', '', '', 0), + (1845, 'strategy:warlock pet destruction pvp', 1, 'pet destruction pvp [h:object|strategy] [c:co ~pet destruction pvp|toggle combat][c:nc ~pet destruction pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon felhunter|summon felhunter] (10.000)[h:action:warlock summon succubus|summon succubus] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1846, 'strategy:paladin buff protection pve', 1, 'buff protection pve [h:object|strategy] [c:co ~buff protection pve|toggle combat][c:nc ~buff protection pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)\r\nOn: [h:trigger:paladin righteous fury|righteous fury] do [h:action:paladin righteous fury|righteous fury] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (1847, 'strategy:mage aoe arcane raid', 1, 'aoe arcane raid [h:object|strategy] [c:co ~aoe arcane raid|toggle combat][c:nc ~aoe arcane raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy too close for spell|enemy too close for spell] do [h:action:mage arcane explosion|arcane explosion] (20.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1848, 'strategy:warrior buff', 1, 'buff [h:object|strategy] [c:co ~buff|toggle combat][c:nc ~buff|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (1849, 'trigger:warlock curse of doom', 1, 'curse of doom [h:object|trigger] [c:curse of doom|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of doom|curse of doom] (20.000) for [h:strategy:warlock curse doom|curse doom]', '', '', '', '', '', '', '', '', '', 0), (1850, 'strategy:shaman totem air resistance', 1, 'totem air resistance [h:object|strategy] [c:co ~totem air resistance|toggle combat][c:nc ~totem air resistance|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman nature resistance totem|nature resistance totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1851, 'strategy:shaman totem water resistance', 1, 'totem water resistance [h:object|strategy] [c:co ~totem water resistance|toggle combat][c:nc ~totem water resistance|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman fire resistance totem|fire resistance totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1852, 'action:paladin greater blessing of light on party', 1, 'greater blessing of light on party [h:object|action] [c:do greater blessing of light on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing of light on party|greater blessing of light on party] with relevance (13.000) for [h:strategy:paladin blessing light|blessing light]', '', '', '', '', '', '', '', '', '', 0), - (1853, 'action:warrior update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior fury|fury]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior fury|fury]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior protection|protection]', '', '', '', '', '', '', '', '', '', 0), + (1853, 'action:warrior update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior fury|fury]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warrior fury|fury]', '', '', '', '', '', '', '', '', '', 0), (1854, 'value:best graveyard', 1, 'best graveyard [h:object|value] [c:cdebug values best graveyard|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1855, 'strategy:mage cc fire raid', 1, 'cc fire raid [h:object|strategy] [c:co ~cc fire raid|toggle combat][c:nc ~cc fire raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)\r\nOn: [h:trigger:enemy too close for spell|enemy too close for spell] do [h:action:mage dragon\'s breath|dragon\'s breath] (90.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1856, 'strategy:warlock buff affliction pvp', 1, 'buff affliction pvp [h:object|strategy] [c:co ~buff affliction pvp|toggle combat][c:nc ~buff affliction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1857, 'strategy:shaman totems enhancement raid', 1, 'totems enhancement raid [h:object|strategy] [c:co ~totems enhancement raid|toggle combat][c:nc ~totems enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman windfury totem|windfury totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman flametongue totem|flametongue totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1855, 'strategy:mage cc fire raid', 1, 'cc fire raid [h:object|strategy] [c:co ~cc fire raid|toggle combat][c:nc ~cc fire raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)[h:action:mage blast wave|blast wave] (40.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1856, 'strategy:warlock buff affliction pvp', 1, 'buff affliction pvp [h:object|strategy] [c:co ~buff affliction pvp|toggle combat][c:nc ~buff affliction pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:warlock item target|item target] do [h:action:warlock item target|item target] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (1857, 'strategy:shaman totems enhancement raid', 1, 'totems enhancement raid [h:object|strategy] [c:co ~totems enhancement raid|toggle combat][c:nc ~totems enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman windfury totem|windfury totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman flametongue totem|flametongue totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1858, 'action:paladin greater blessing of salvation on party', 1, 'greater blessing of salvation on party [h:object|action] [c:do greater blessing of salvation on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing of salvation on party|greater blessing of salvation on party] with relevance (13.000) for [h:strategy:paladin blessing salvation|blessing salvation]', '', '', '', '', '', '', '', '', '', 0), (1859, 'action:mage mirror image', 1, 'mirror image [h:object|action] [c:do mirror image|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage mirror image|mirror image] with relevance (21.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage mirror image|mirror image] with relevance (21.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage mirror image|mirror image] with relevance (21.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:mage mirror image|mirror image] with relevance (21.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage mirror image|mirror image] with relevance (21.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage mirror image|mirror image] with relevance (21.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:mage mirror image|mirror image] with relevance (21.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage mirror image|mirror image] with relevance (21.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage mirror image|mirror image] with relevance (21.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (1860, 'strategy:warlock curse', 1, 'curse [h:object|strategy] [c:co ~curse|toggle combat][c:nc ~curse|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (1861, 'strategy:rogue poisons subtlety pvp', 1, 'poisons subtlety pvp [h:object|strategy] [c:co ~poisons subtlety pvp|toggle combat][c:nc ~poisons subtlety pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand] do [h:action:rogue apply crippling poison|apply crippling poison] (10.000)\r\nOn: [h:trigger:rogue apply mind poison main hand|apply mind poison main hand] do [h:action:rogue apply mind poison|apply mind poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1862, 'strategy:paladin retribution pve', 1, 'retribution pve [h:object|strategy] [c:co ~retribution pve|toggle combat][c:nc ~retribution pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:paladin the art of war|the art of war] do [h:action:paladin exorcism|exorcism] (23.000)[h:action:paladin flash of light|flash of light] (22.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:paladin judgement of wisdom|judgement of wisdom] do [h:action:paladin judgement of wisdom|judgement of wisdom] (12.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:paladin judgement of light|judgement of light] do [h:action:paladin judgement of light|judgement of light] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of command|seal of command] (13.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:paladin divine storm|divine storm] (10.000)[h:action:paladin crusader strike|crusader strike] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1863, 'strategy:warlock curse tongues', 1, 'curse tongues [h:object|strategy] [c:co ~curse tongues|toggle combat][c:nc ~curse tongues|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of tongues|curse of tongues] do [h:action:warlock curse of tongues|curse of tongues] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1862, 'strategy:paladin retribution pve', 1, 'retribution pve [h:object|strategy] [c:co ~retribution pve|toggle combat][c:nc ~retribution pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:paladin judgement|judgement] do [h:action:paladin judgement|judgement] (12.000)\r\nOn: [h:trigger:paladin exorcism|exorcism] do [h:action:paladin exorcism|exorcism] (14.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin holy light|holy light] (90.000)[h:action:paladin divine shield|divine shield] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:paladin crusader strike|crusader strike] do [h:action:paladin crusader strike|crusader strike] (10.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:paladin seal|seal] do [h:action:paladin seal of command|seal of command] (13.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (90.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1863, 'strategy:warlock curse tongues', 1, 'curse tongues [h:object|strategy] [c:co ~curse tongues|toggle combat][c:nc ~curse tongues|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of tongues|curse of tongues] do [h:action:warlock curse of tongues|curse of tongues] (20.000)\r\nOn: [h:trigger:warlock curse of tongues on attacker|curse of tongues on attacker] do [h:action:warlock curse of tongues on attacker|curse of tongues on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), (1864, 'action:shaman nature resistance totem', 1, 'nature resistance totem [h:object|action] [c:do nature resistance totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totem air resistance|totem air resistance]', '', '', '', '', '', '', '', '', '', 0), - (1865, 'action:paladin raid blessing on party', 1, 'raid blessing on party [h:object|action] [c:do raid blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (1866, 'action:mage frostbolt', 1, 'frostbolt [h:object|action] [c:do frostbolt|execute]\r\n\r\nCombat behavior:\r\nDefault action with relevance (1.000) for [h:strategy:mage frost pve|frost pve]\r\nDefault action with relevance (1.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (10.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (10.000) for [h:strategy:mage fire raid|fire raid]\r\nDefault action with relevance (1.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1867, 'strategy:rogue assassination pvp', 1, 'assassination pvp [h:object|strategy] [c:co ~assassination pvp|toggle combat][c:nc ~assassination pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)[h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue cloak of shadows|cloak of shadows] do [h:action:rogue cloak of shadows|cloak of shadows] (42.000)\r\nDefault:[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1865, 'action:paladin raid blessing on party', 1, 'raid blessing on party [h:object|action] [c:do raid blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]', '', '', '', '', '', '', '', '', '', 0), + (1866, 'action:mage frostbolt', 1, 'frostbolt [h:object|action] [c:do frostbolt|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (20.000) for [h:strategy:mage frost raid|frost raid]\r\nDefault action with relevance (1.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (20.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (20.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (20.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (20.000) for [h:strategy:mage frost pvp|frost pvp]\r\nDefault action with relevance (1.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (10.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (20.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (20.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage fire spells locked|fire spells locked] with relevance (10.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (20.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage presence of mind|presence of mind] with relevance (20.000) for [h:strategy:mage frost pve|frost pve]\r\nDefault action with relevance (1.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), + (1867, 'strategy:rogue assassination pvp', 1, 'assassination pvp [h:object|strategy] [c:co ~assassination pvp|toggle combat][c:nc ~assassination pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (1868, 'strategy:shaman totem earth strength', 1, 'totem earth strength [h:object|strategy] [c:co ~totem earth strength|toggle combat][c:nc ~totem earth strength|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1869, 'strategy:paladin aoe holy pve', 1, 'aoe holy pve [h:object|strategy] [c:co ~aoe holy pve|toggle combat][c:nc ~aoe holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1869, 'strategy:paladin aoe holy pve', 1, 'aoe holy pve [h:object|strategy] [c:co ~aoe holy pve|toggle combat][c:nc ~aoe holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1870, 'strategy:paladin aura protection pvp', 1, 'aura protection pvp [h:object|strategy] [c:co ~aura protection pvp|toggle combat][c:nc ~aura protection pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin retribution aura|retribution aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), - (1871, 'trigger:rogue apply deadly poison main hand', 1, 'apply deadly poison main hand [h:object|trigger] [c:apply deadly poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply deadly poison|apply deadly poison] (10.000) for [h:strategy:rogue poisons assassination raid|poisons assassination raid]\r\nExecutes: [h:action:rogue apply deadly poison|apply deadly poison] (10.000) for [h:strategy:rogue poisons combat raid|poisons combat raid]\r\nExecutes: [h:action:rogue apply deadly poison|apply deadly poison] (10.000) for [h:strategy:rogue poison off deadly|poison off deadly]\r\nExecutes: [h:action:rogue apply deadly poison|apply deadly poison] (10.000) for [h:strategy:rogue poisons subtlety raid|poisons subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (1871, 'trigger:rogue apply deadly poison main hand', 1, 'apply deadly poison main hand [h:object|trigger] [c:apply deadly poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply deadly poison|apply deadly poison] (10.000) for [h:strategy:rogue poison off deadly|poison off deadly]\r\nExecutes: [h:action:rogue apply deadly poison|apply deadly poison] (10.000) for [h:strategy:rogue poisons assassination raid|poisons assassination raid]\r\nExecutes: [h:action:rogue apply deadly poison|apply deadly poison] (10.000) for [h:strategy:rogue poisons combat raid|poisons combat raid]\r\nExecutes: [h:action:rogue apply deadly poison|apply deadly poison] (10.000) for [h:strategy:rogue poisons subtlety raid|poisons subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (1872, 'strategy:shaman totems restoration pve', 1, 'totems restoration pve [h:object|strategy] [c:co ~totems restoration pve|toggle combat][c:nc ~totems restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman wrath of air totem|wrath of air totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman flametongue totem|flametongue totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman healing stream totem|healing stream totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1873, 'action:reset raids', 1, 'reset raids [h:object|action] [c:do reset raids|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|group invite] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|group invite] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|group invite] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), - (1874, 'strategy:warrior arms pve', 1, 'arms pve [h:object|strategy] [c:co ~arms pve|toggle combat][c:nc ~arms pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior mortal strike|mortal strike] do [h:action:warrior mortal strike|mortal strike] (11.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warrior overpower|overpower] do [h:action:warrior overpower|overpower] (20.000)\r\nOn: [h:trigger:warrior rend|rend] do [h:action:warrior rend|rend] (10.000)\r\nOn: [h:trigger:warrior sudden death|sudden death] do [h:action:warrior execute|execute] (21.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (22.000)\r\nOn: [h:trigger:warrior taste for blood|taste for blood] do [h:action:warrior overpower|overpower] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warrior victory rush|victory rush] do [h:action:warrior victory rush|victory rush] (20.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1874, 'strategy:warrior arms pve', 1, 'arms pve [h:object|strategy] [c:co ~arms pve|toggle combat][c:nc ~arms pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior whirlwind|whirlwind] do [h:action:warrior whirlwind|whirlwind] (13.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior mortal strike|mortal strike] do [h:action:warrior mortal strike|mortal strike] (11.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:warrior overpower|overpower] do [h:action:warrior overpower|overpower] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warrior rend|rend] do [h:action:warrior rend|rend] (10.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (22.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (1875, 'strategy:warlock curse demonology pve', 1, 'curse demonology pve [h:object|strategy] [c:co ~curse demonology pve|toggle combat][c:nc ~curse demonology pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock no curse|no curse] do [h:action:warlock curse of agony|curse of agony] (12.000)\r\nOn: [h:trigger:warlock no curse on attacker|no curse on attacker] do [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), - (1876, 'strategy:warrior aoe fury pve', 1, 'aoe fury pve [h:object|strategy] [c:co ~aoe fury pve|toggle combat][c:nc ~aoe fury pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior demoralizing shout|demoralizing shout] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (23.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)', '', '', '', '', '', '', '', '', '', 0), + (1876, 'strategy:warrior aoe fury pve', 1, 'aoe fury pve [h:object|strategy] [c:co ~aoe fury pve|toggle combat][c:nc ~aoe fury pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (25.000)[h:action:warrior cleave|cleave] (23.000)[h:action:warrior bloodthirst|bloodthirst] (24.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)', '', '', '', '', '', '', '', '', '', 0), (1877, 'strategy:warlock curse destruction pve', 1, 'curse destruction pve [h:object|strategy] [c:co ~curse destruction pve|toggle combat][c:nc ~curse destruction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock no curse|no curse] do [h:action:warlock curse of agony|curse of agony] (12.000)\r\nOn: [h:trigger:warlock no curse on attacker|no curse on attacker] do [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), (1878, 'strategy:mage cure fire pvp', 1, 'cure fire pvp [h:object|strategy] [c:co ~cure fire pvp|toggle combat][c:nc ~cure fire pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (51.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (10.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1879, 'strategy:paladin cc retribution raid', 1, 'cc retribution raid [h:object|strategy] [c:co ~cc retribution raid|toggle combat][c:nc ~cc retribution raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin repentance|repentance] do [h:action:paladin repentance|repentance] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] do [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000)\r\nOn: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] do [h:action:paladin repentance on snare target|repentance on snare target] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1879, 'strategy:paladin cc retribution raid', 1, 'cc retribution raid [h:object|strategy] [c:co ~cc retribution raid|toggle combat][c:nc ~cc retribution raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] do [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin repentance|repentance] do [h:action:paladin repentance|repentance] (40.000)\r\nOn: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] do [h:action:paladin repentance on snare target|repentance on snare target] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)', '', '', '', '', '', '', '', '', '', 0), (1880, 'strategy:paladin blessing salvation', 1, 'blessing salvation [h:object|strategy] [c:co ~blessing salvation|toggle combat][c:nc ~blessing salvation|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing of salvation|blessing of salvation] do [h:action:paladin blessing of salvation|blessing of salvation] (10.000)\r\nOn: [h:trigger:paladin blessing of salvation on party|blessing of salvation on party] do [h:action:paladin blessing of salvation on party|blessing of salvation on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing of salvation|greater blessing of salvation] do [h:action:paladin greater blessing of salvation|greater blessing of salvation] (11.000)\r\nOn: [h:trigger:paladin greater blessing of salvation on party|greater blessing of salvation on party] do [h:action:paladin greater blessing of salvation on party|greater blessing of salvation on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), (1881, 'value:craft spells', 1, 'craft spells [h:object|value] [c:cdebug values craft spells|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1882, 'strategy:shaman aoe restoration pve', 1, 'aoe restoration pve [h:object|strategy] [c:co ~aoe restoration pve|toggle combat][c:nc ~aoe restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1883, 'strategy:warlock cc demonology raid', 1, 'cc demonology raid [h:object|strategy] [c:co ~cc demonology raid|toggle combat][c:nc ~cc demonology raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1884, 'strategy:warrior aoe protection pve', 1, 'aoe protection pve [h:object|strategy] [c:co ~aoe protection pve|toggle combat][c:nc ~aoe protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (23.000)[h:action:warrior challenging shout|challenging shout] (21.000)[h:action:warrior battle shout|battle shout] (20.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)', '', '', '', '', '', '', '', '', '', 0), - (1885, 'strategy:mage aoe fire pvp', 1, 'aoe fire pvp [h:object|strategy] [c:co ~aoe fire pvp|toggle combat][c:nc ~aoe fire pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage blizzard|blizzard] (20.000)\r\nOn: [h:trigger:mage living bomb|living bomb] do [h:action:mage living bomb|living bomb] (22.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)[h:action:mage flamestrike|flamestrike] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (1882, 'strategy:shaman aoe restoration pve', 1, 'aoe restoration pve [h:object|strategy] [c:co ~aoe restoration pve|toggle combat][c:nc ~aoe restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1883, 'strategy:warlock cc demonology raid', 1, 'cc demonology raid [h:object|strategy] [c:co ~cc demonology raid|toggle combat][c:nc ~cc demonology raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:warlock spell lock|spell lock] do [h:action:warlock spell lock|spell lock] (46.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)', '', '', '', '', '', '', '', '', '', 0), + (1884, 'strategy:warrior aoe protection pve', 1, 'aoe protection pve [h:object|strategy] [c:co ~aoe protection pve|toggle combat][c:nc ~aoe protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior cleave|cleave] (23.000)[h:action:warrior challenging shout|challenging shout] (21.000)[h:action:warrior battle shout|battle shout] (20.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (1885, 'strategy:mage aoe fire pvp', 1, 'aoe fire pvp [h:object|strategy] [c:co ~aoe fire pvp|toggle combat][c:nc ~aoe fire pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage blizzard|blizzard] (20.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:mage flamestrike|flamestrike] (21.000)', '', '', '', '', '', '', '', '', '', 0), (1886, 'strategy:shaman restoration', 1, 'restoration [h:object|strategy] [c:co ~restoration|toggle combat][c:nc ~restoration|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:shaman update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:shaman update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:shaman update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:shaman update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:shaman update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:shaman update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), (1887, 'strategy:shaman totem earth tremor', 1, 'totem earth tremor [h:object|strategy] [c:co ~totem earth tremor|toggle combat][c:nc ~totem earth tremor|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman tremor totem|tremor totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1888, 'strategy:paladin blessing holy raid', 1, 'blessing holy raid [h:object|strategy] [c:co ~blessing holy raid|toggle combat][c:nc ~blessing holy raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin raid blessing|raid blessing] (10.000)\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin raid blessing on party|raid blessing on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing|greater blessing] do [h:action:paladin raid greater blessing on party|raid greater blessing on party] (11.000)\r\nOn: [h:trigger:paladin greater blessing on party|greater blessing on party] do [h:action:paladin raid greater blessing on party|raid greater blessing on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), - (1889, 'list:warrior trigger', 1, 'warrior triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:feared|feared] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp] [h:trigger:in raid fight|in raid fight]\r\n[h:trigger:invalid target|invalid target] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:often|often] [h:trigger:protect party member|protect party member] [h:trigger:pull end|pull end]\r\n[h:trigger:pull start|pull start] [h:trigger:resurrect|resurrect] [h:trigger:stunned|stunned] [h:trigger:very often|very often] [h:trigger:warrior aoe|aoe] [h:trigger:warrior battle shout|battle shout] [h:trigger:warrior battle stance|battle stance]\r\n[h:trigger:warrior berserker stance|berserker stance] [h:trigger:warrior blessing of salvation|blessing of salvation] [h:trigger:warrior bloodrage|bloodrage] [h:trigger:warrior bloodthirst|bloodthirst]\r\n[h:trigger:warrior commanding shout|commanding shout] [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] [h:trigger:warrior death wish|death wish] [h:trigger:warrior defensive stance|defensive stance]\r\n[h:trigger:warrior disarm|disarm] [h:trigger:warrior enemy out of melee range|enemy out of melee range] [h:trigger:warrior greater blessing of salvation|greater blessing of salvation]\r\n[h:trigger:warrior hamstring on snare target|hamstring on snare target] [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available]\r\n[h:trigger:warrior intercept on snare target|intercept on snare target] [h:trigger:warrior mortal strike|mortal strike] [h:trigger:warrior overpower|overpower] [h:trigger:warrior pummel on enemy healer|pummel on enemy healer]\r\n[h:trigger:warrior pummel|pummel] [h:trigger:warrior rage available|rage available] [h:trigger:warrior rend|rend] [h:trigger:warrior revenge|revenge] [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer]\r\n[h:trigger:warrior shield bash|shield bash] [h:trigger:warrior shield block|shield block] [h:trigger:warrior shockwave on snare target|shockwave on snare target] [h:trigger:warrior shockwave|shockwave] [h:trigger:warrior slam!|slam!]\r\n[h:trigger:warrior spell reflection|spell reflection] [h:trigger:warrior sudden death|sudden death] [h:trigger:warrior sunder armor|sunder armor] [h:trigger:warrior sword and board|sword and board] [h:trigger:warrior target low health|target low health]\r\n[h:trigger:warrior taste for blood|taste for blood] [h:trigger:warrior taunt on snare target|taunt on snare target] [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] [h:trigger:warrior thunder clap|thunder clap]\r\n[h:trigger:warrior victory rush|victory rush] ', '', '', '', '', '', '', '', '', '', 0), + (1889, 'list:warrior trigger', 1, 'warrior triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp] [h:trigger:in raid fight|in raid fight] [h:trigger:invalid target|invalid target]\r\n[h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:often|often] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start] [h:trigger:random|random] [h:trigger:resurrect|resurrect] [h:trigger:stunned|stunned]\r\n[h:trigger:target of fear cast|target of fear cast] [h:trigger:very often|very often] [h:trigger:warrior aoe|aoe] [h:trigger:warrior battle shout|battle shout] [h:trigger:warrior battle stance|battle stance]\r\n[h:trigger:warrior berserker stance|berserker stance] [h:trigger:warrior blessing of salvation|blessing of salvation] [h:trigger:warrior bloodrage|bloodrage] [h:trigger:warrior bloodthirst|bloodthirst]\r\n[h:trigger:warrior concussion blow on snare target|concussion blow on snare target] [h:trigger:warrior death wish|death wish] [h:trigger:warrior defensive stance|defensive stance] [h:trigger:warrior demoralizing shout|demoralizing shout]\r\n[h:trigger:warrior disarm|disarm] [h:trigger:warrior enemy out of melee range|enemy out of melee range] [h:trigger:warrior greater blessing of salvation|greater blessing of salvation]\r\n[h:trigger:warrior hamstring on snare target|hamstring on snare target] [h:trigger:warrior heroic strike|heroic strike] [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available]\r\n[h:trigger:warrior intercept on snare target|intercept on snare target] [h:trigger:warrior mortal strike|mortal strike] [h:trigger:warrior overpower|overpower] [h:trigger:warrior pummel on enemy healer|pummel on enemy healer]\r\n[h:trigger:warrior pummel|pummel] [h:trigger:warrior rage available|rage available] [h:trigger:warrior recklessness|recklessness] [h:trigger:warrior rend|rend] [h:trigger:warrior revenge|revenge]\r\n[h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] [h:trigger:warrior shield bash|shield bash] [h:trigger:warrior shield block|shield block] [h:trigger:warrior sunder armor|sunder armor]\r\n[h:trigger:warrior target low health|target low health] [h:trigger:warrior taunt on snare target|taunt on snare target] [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] [h:trigger:warrior thunder clap|thunder clap]\r\n[h:trigger:warrior whirlwind|whirlwind] ', '', '', '', '', '', '', '', '', '', 0), (1890, 'action:paladin greater blessing of sanctuary on party', 1, 'greater blessing of sanctuary on party [h:object|action] [c:do greater blessing of sanctuary on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing of sanctuary on party|greater blessing of sanctuary on party] with relevance (13.000) for [h:strategy:paladin blessing sanctuary|blessing sanctuary]', '', '', '', '', '', '', '', '', '', 0), - (1891, 'trigger:rogue apply anesthetic poison main hand', 1, 'apply anesthetic poison main hand [h:object|trigger] [c:apply anesthetic poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply anesthetic poison|apply anesthetic poison] (10.000) for [h:strategy:rogue poison off anesthetic|poison off anesthetic]', '', '', '', '', '', '', '', '', '', 0), + (1891, 'trigger:rogue apply anesthetic poison main hand', 1, 'apply anesthetic poison main hand [h:object|trigger] [c:apply anesthetic poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply anesthetic poison|apply anesthetic poison] (10.000) for [h:strategy:rogue poison main anesthetic|poison main anesthetic]', '', '', '', '', '', '', '', '', '', 0), (1892, 'strategy:rogue poison off mind', 1, 'poison off mind [h:object|strategy] [c:co ~poison off mind|toggle combat][c:nc ~poison off mind|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply mind poison main hand|apply mind poison main hand] do [h:action:rogue apply mind poison|apply mind poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1893, 'strategy:paladin blessing protection raid', 1, 'blessing protection raid [h:object|strategy] [c:co ~blessing protection raid|toggle combat][c:nc ~blessing protection raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin raid blessing|raid blessing] (10.000)\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin raid blessing on party|raid blessing on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing|greater blessing] do [h:action:paladin raid greater blessing on party|raid greater blessing on party] (11.000)\r\nOn: [h:trigger:paladin greater blessing on party|greater blessing on party] do [h:action:paladin raid greater blessing on party|raid greater blessing on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), (1894, 'action:shaman frost resistance totem', 1, 'frost resistance totem [h:object|action] [c:do frost resistance totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totem fire resistance|totem fire resistance]', '', '', '', '', '', '', '', '', '', 0), - (1895, 'strategy:warlock cc affliction pve', 1, 'cc affliction pve [h:object|strategy] [c:co ~cc affliction pve|toggle combat][c:nc ~cc affliction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1896, 'strategy:mage buff fire raid', 1, 'buff fire raid [h:object|strategy] [c:co ~buff fire raid|toggle combat][c:nc ~buff fire raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage combustion|combustion] do [h:action:mage combustion|combustion] (21.000)\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage mirror image|mirror image] do [h:action:mage mirror image|mirror image] (21.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (12.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1895, 'strategy:warlock cc affliction pve', 1, 'cc affliction pve [h:object|strategy] [c:co ~cc affliction pve|toggle combat][c:nc ~cc affliction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:warlock spell lock|spell lock] do [h:action:warlock spell lock|spell lock] (46.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)', '', '', '', '', '', '', '', '', '', 0), + (1896, 'strategy:mage buff fire raid', 1, 'buff fire raid [h:object|strategy] [c:co ~buff fire raid|toggle combat][c:nc ~buff fire raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:mage mana shield|mana shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (11.000)', '', '', '', '', '', '', '', '', '', 0), (1897, 'strategy:shaman totem water mana', 1, 'totem water mana [h:object|strategy] [c:co ~totem water mana|toggle combat][c:nc ~totem water mana|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1898, 'strategy:shaman totem fire searing', 1, 'totem fire searing [h:object|strategy] [c:co ~totem fire searing|toggle combat][c:nc ~totem fire searing|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman searing totem|searing totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1899, 'strategy:rogue aoe subtlety pve', 1, 'aoe subtlety pve [h:object|strategy] [c:co ~aoe subtlety pve|toggle combat][c:nc ~aoe subtlety pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1899, 'strategy:rogue aoe subtlety pve', 1, 'aoe subtlety pve [h:object|strategy] [c:co ~aoe subtlety pve|toggle combat][c:nc ~aoe subtlety pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1900, 'action:mage update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:mage fire|fire]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:mage arcane|arcane]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:mage frost|frost]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:mage fire|fire]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:mage arcane|arcane]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:mage frost|frost]', '', '', '', '', '', '', '', '', '', 0), - (1901, 'strategy:warlock destruction pvp', 1, 'destruction pvp [h:object|strategy] [c:co ~destruction pvp|toggle combat][c:nc ~destruction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock backlash|backlash] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:warlock conflagrate|conflagrate] do [h:action:warlock conflagrate|conflagrate] (12.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock immolate|immolate] do [h:action:warlock immolate|immolate] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nDefault:[h:action:warlock incinerate|incinerate] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1902, 'strategy:shaman aoe elemental pve', 1, 'aoe elemental pve [h:object|strategy] [c:co ~aoe elemental pve|toggle combat][c:nc ~aoe elemental pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman chain lightning|chain lightning] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1901, 'strategy:warlock destruction pvp', 1, 'destruction pvp [h:object|strategy] [c:co ~destruction pvp|toggle combat][c:nc ~destruction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:warlock conflagrate|conflagrate] do [h:action:warlock conflagrate|conflagrate] (12.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock immolate|immolate] do [h:action:warlock immolate|immolate] (11.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock sacrifice|sacrifice] (90.000)[h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:warlock shadowburn|shadowburn] (20.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:initialize pet|initialize pet] (11.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1902, 'strategy:shaman aoe elemental pve', 1, 'aoe elemental pve [h:object|strategy] [c:co ~aoe elemental pve|toggle combat][c:nc ~aoe elemental pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman chain lightning|chain lightning] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1903, 'strategy:mage cc frost raid', 1, 'cc frost raid [h:object|strategy] [c:co ~cc frost raid|toggle combat][c:nc ~cc frost raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), (1904, 'action:self resurrect', 1, 'self resurrect [h:object|action] [c:do self resurrect|execute]\r\n\r\nDead state behavior:\r\nTriggers from: [h:trigger|very often] with relevance (103.000) for [h:strategy|dead]\r\nReaction behavior:\r\nTriggers from: [h:trigger|self res] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (1905, 'action:auto share quest', 1, 'auto share quest [h:object|action] [c:do auto share quest|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (0.900) for [h:strategy|maintenance]', '', '', '', '', '', '', '', '', '', 0), - (1906, 'strategy:shaman totems elemental raid', 1, 'totems elemental raid [h:object|strategy] [c:co ~totems elemental raid|toggle combat][c:nc ~totems elemental raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman wrath of air totem|wrath of air totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman totem of wrath|totem of wrath] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1906, 'strategy:shaman totems elemental raid', 1, 'totems elemental raid [h:object|strategy] [c:co ~totems elemental raid|toggle combat][c:nc ~totems elemental raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman wrath of air totem|wrath of air totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman totem of wrath|totem of wrath] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1907, 'value:graveyard', 1, 'graveyard [h:object|value] [c:cdebug values graveyard|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1908, 'trigger:in pve', 1, 'in pve [h:object|trigger] [c:in pve|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock update pve strats|update pve strats] (100.000) for [h:strategy:warlock affliction|affliction]\r\nExecutes: [h:action:warlock update pve strats|update pve strats] (100.000) for [h:strategy:warlock demonology|demonology]\r\nExecutes: [h:action:warlock update pve strats|update pve strats] (100.000) for [h:strategy:warlock destruction|destruction]\r\nNon combat behavior:\r\nExecutes: [h:action:warlock update pve strats|update pve strats] (100.000) for [h:strategy:warlock affliction|affliction]\r\nExecutes: [h:action:warlock update pve strats|update pve strats] (100.000) for [h:strategy:warlock demonology|demonology]\r\nExecutes: [h:action:warlock update pve strats|update pve strats] (100.000) for [h:strategy:warlock destruction|destruction]', '', '', '', '', '', '', '', '', '', 0), + (1908, 'trigger:in pve', 1, 'in pve [h:object|trigger] [c:in pve|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid balance|balance]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nNon combat behavior:\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid balance|balance]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update pve strats|update pve strats] (100.000) for [h:strategy:druid tank feral|tank feral]', '', '', '', '', '', '', '', '', '', 0), (1909, 'strategy:rogue poisons assassination pvp', 1, 'poisons assassination pvp [h:object|strategy] [c:co ~poisons assassination pvp|toggle combat][c:nc ~poisons assassination pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand] do [h:action:rogue apply crippling poison|apply crippling poison] (10.000)\r\nOn: [h:trigger:rogue apply mind poison main hand|apply mind poison main hand] do [h:action:rogue apply mind poison|apply mind poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1910, 'strategy:warrior protection', 1, 'protection [h:object|strategy] [c:co ~protection|toggle combat][c:nc ~protection|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (1911, 'strategy:warrior fury pvp', 1, 'fury pvp [h:object|strategy] [c:co ~fury pvp|toggle combat][c:nc ~fury pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior bloodthirst|bloodthirst] do [h:action:warrior bloodthirst|bloodthirst] (13.000)\r\nOn: [h:trigger:warrior slam!|slam!] do [h:action:warrior slam|slam] (21.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:warrior intercept on snare target|intercept on snare target] do [h:action:warrior intercept on snare target|intercept on snare target] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior whirlwind|whirlwind] (12.000)[h:action:warrior heroic strike|heroic strike] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (14.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warrior victory rush|victory rush] do [h:action:warrior victory rush|victory rush] (20.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1910, 'strategy:warrior protection', 1, 'protection [h:object|strategy] [c:co ~protection|toggle combat][c:nc ~protection|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warrior update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warrior update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warrior update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (1911, 'strategy:warrior fury pvp', 1, 'fury pvp [h:object|strategy] [c:co ~fury pvp|toggle combat][c:nc ~fury pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior intercept on snare target|intercept on snare target] do [h:action:warrior intercept on snare target|intercept on snare target] (10.000)\r\nOn: [h:trigger:warrior bloodthirst|bloodthirst] do [h:action:warrior bloodthirst|bloodthirst] (13.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior whirlwind|whirlwind] do [h:action:warrior whirlwind|whirlwind] (12.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:warrior heroic strike|heroic strike] do [h:action:warrior heroic strike|heroic strike] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (14.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (1912, 'action:mage remove glyph of mirror image', 1, 'remove glyph of mirror image [h:object|action] [c:do remove glyph of mirror image|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] with relevance (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] with relevance (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] with relevance (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] with relevance (11.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] with relevance (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] with relevance (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (1913, 'action:shaman stoneclaw totem', 1, 'stoneclaw totem [h:object|action] [c:do stoneclaw totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totem earth stoneclaw|totem earth stoneclaw]', '', '', '', '', '', '', '', '', '', 0), - (1914, 'strategy:shaman totems elemental pve', 1, 'totems elemental pve [h:object|strategy] [c:co ~totems elemental pve|toggle combat][c:nc ~totems elemental pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman wrath of air totem|wrath of air totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman totem of wrath|totem of wrath] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1914, 'strategy:shaman totems elemental pve', 1, 'totems elemental pve [h:object|strategy] [c:co ~totems elemental pve|toggle combat][c:nc ~totems elemental pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman wrath of air totem|wrath of air totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman totem of wrath|totem of wrath] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1915, 'strategy:rogue poisons combat pve', 1, 'poisons combat pve [h:object|strategy] [c:co ~poisons combat pve|toggle combat][c:nc ~poisons combat pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] do [h:action:rogue apply instant poison|apply instant poison] (10.000)\r\nOn: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] do [h:action:rogue apply instant poison|apply instant poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1916, 'strategy:shaman aoe restoration pvp', 1, 'aoe restoration pvp [h:object|strategy] [c:co ~aoe restoration pvp|toggle combat][c:nc ~aoe restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1917, 'strategy:paladin protection raid', 1, 'protection raid [h:object|strategy] [c:co ~protection raid|toggle combat][c:nc ~protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:paladin hand of reckoning|hand of reckoning] (90.000)\r\nOn: [h:trigger:paladin holy shield|holy shield] do [h:action:paladin holy shield|holy shield] (23.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:paladin judgement of light|judgement of light] do [h:action:paladin judgement of light|judgement of light] (10.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:paladin judgement of wisdom|judgement of wisdom] (22.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin exorcism|exorcism] (13.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of vengeance|seal of vengeance] (12.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1916, 'strategy:shaman aoe restoration pvp', 1, 'aoe restoration pvp [h:object|strategy] [c:co ~aoe restoration pvp|toggle combat][c:nc ~aoe restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1917, 'strategy:paladin protection raid', 1, 'protection raid [h:object|strategy] [c:co ~protection raid|toggle combat][c:nc ~protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:paladin exorcism|exorcism] do [h:action:paladin exorcism|exorcism] (13.000)\r\nOn: [h:trigger:paladin judgement|judgement] do [h:action:paladin judgement|judgement] (11.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:paladin blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:paladin greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:paladin holy shield|holy shield] do [h:action:paladin holy shield|holy shield] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:paladin hand of reckoning|hand of reckoning] (30.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nOn: [h:trigger:paladin seal|seal] do [h:action:paladin seal of vengeance|seal of vengeance] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:paladin blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:paladin greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (90.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (1918, 'strategy:shaman totem fire resistance', 1, 'totem fire resistance [h:object|strategy] [c:co ~totem fire resistance|toggle combat][c:nc ~totem fire resistance|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman frost resistance totem|frost resistance totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1919, 'strategy:mage aoe arcane pve', 1, 'aoe arcane pve [h:object|strategy] [c:co ~aoe arcane pve|toggle combat][c:nc ~aoe arcane pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy too close for spell|enemy too close for spell] do [h:action:mage arcane explosion|arcane explosion] (20.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1920, 'strategy:rogue assassination pve', 1, 'assassination pve [h:object|strategy] [c:co ~assassination pve|toggle combat][c:nc ~assassination pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)[h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue cloak of shadows|cloak of shadows] do [h:action:rogue cloak of shadows|cloak of shadows] (42.000)\r\nDefault:[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1921, 'strategy:rogue buff combat raid', 1, 'buff combat raid [h:object|strategy] [c:co ~buff combat raid|toggle combat][c:nc ~buff combat raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue adrenaline rush|adrenaline rush] do [h:action:rogue adrenaline rush|adrenaline rush] (26.000)\r\nOn: [h:trigger:rogue blade flurry|blade flurry] do [h:action:rogue blade flurry|blade flurry] (25.000)\r\nOn: [h:trigger:rogue killing spree|killing spree] do [h:action:rogue killing spree|killing spree] (24.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1922, 'strategy:paladin aoe retribution pve', 1, 'aoe retribution pve [h:object|strategy] [c:co ~aoe retribution pve|toggle combat][c:nc ~aoe retribution pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1919, 'strategy:mage aoe arcane pve', 1, 'aoe arcane pve [h:object|strategy] [c:co ~aoe arcane pve|toggle combat][c:nc ~aoe arcane pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy too close for spell|enemy too close for spell] do [h:action:mage arcane explosion|arcane explosion] (20.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1920, 'strategy:rogue assassination pve', 1, 'assassination pve [h:object|strategy] [c:co ~assassination pve|toggle combat][c:nc ~assassination pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1921, 'strategy:rogue buff combat raid', 1, 'buff combat raid [h:object|strategy] [c:co ~buff combat raid|toggle combat][c:nc ~buff combat raid|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (1922, 'strategy:paladin aoe retribution pve', 1, 'aoe retribution pve [h:object|strategy] [c:co ~aoe retribution pve|toggle combat][c:nc ~aoe retribution pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin consecration|consecration] do [h:action:paladin consecration|consecration] (20.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1923, 'value:has reagents for', 1, 'has reagents for [h:object|value] [c:cdebug values has reagents for|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1924, 'list:mage action', 1, 'mage action : \r\n[h:action:apply oil|apply oil] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:give food|give food] [h:action:give water|give water]\r\n[h:action:goblin sapper|goblin sapper] [h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell] [h:action:mage arcane blast|arcane blast] [h:action:mage arcane brilliance on party|arcane brilliance on party]\r\n[h:action:mage arcane explosion|arcane explosion] [h:action:mage arcane intellect on party|arcane intellect on party] [h:action:mage arcane intellect|arcane intellect] [h:action:mage arcane missiles|arcane missiles]\r\n[h:action:mage arcane power|arcane power] [h:action:mage blast wave|blast wave] [h:action:mage blink|blink] [h:action:mage blizzard|blizzard] [h:action:mage cold snap|cold snap] [h:action:mage combustion|combustion]\r\n[h:action:mage conjure food|conjure food] [h:action:mage conjure mana gem|conjure mana gem] [h:action:mage conjure water|conjure water] [h:action:mage counterspell on enemy healer|counterspell on enemy healer] [h:action:mage counterspell|counterspell]\r\n[h:action:mage deep freeze|deep freeze] [h:action:mage dragon\'s breath|dragon\'s breath] [h:action:mage evocation|evocation] [h:action:mage fire blast|fire blast] [h:action:mage fire ward|fire ward] [h:action:mage flamestrike|flamestrike]\r\n[h:action:mage frost nova|frost nova] [h:action:mage frost ward|frost ward] [h:action:mage frostbolt|frostbolt] [h:action:mage frostfire bolt|frostfire bolt] [h:action:mage ice armor|ice armor] [h:action:mage ice barrier|ice barrier]\r\n[h:action:mage ice block|ice block] [h:action:mage ice lance|ice lance] [h:action:mage icy veins|icy veins] [h:action:mage invisibility|invisibility] [h:action:mage learn glyph of fireball|learn glyph of fireball]\r\n[h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] [h:action:mage learn glyph of living bomb|learn glyph of living bomb] [h:action:mage learn glyph of mirror image|learn glyph of mirror image]\r\n[h:action:mage learn glyph of molten armor|learn glyph of molten armor] [h:action:mage living bomb|living bomb] [h:action:mage mana gem|mana gem] [h:action:mage mirror image|mirror image] [h:action:mage molten armor|molten armor]\r\n[h:action:mage polymorph|polymorph] [h:action:mage presence of mind|presence of mind] [h:action:mage pyroblast|pyroblast] [h:action:mage remove curse on party|remove curse on party] [h:action:mage remove curse|remove curse]\r\n[h:action:mage remove glyph of fireball|remove glyph of fireball] [h:action:mage remove glyph of frostbolt|remove glyph of frostbolt] [h:action:mage remove glyph of living bomb|remove glyph of living bomb]\r\n[h:action:mage remove glyph of mirror image|remove glyph of mirror image] [h:action:mage remove glyph of molten armor|remove glyph of molten armor] [h:action:mage scorch|scorch] [h:action:mage spellsteal|spellsteal]\r\n[h:action:mage update pve strats|update pve strats] [h:action:mage update pvp strats|update pvp strats] [h:action:mage update raid strats|update raid strats] [h:action:move from dark portal|move from dark portal]\r\n[h:action:move to dark portal|move to dark portal] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start] [h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target]\r\n[h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:shoot|shoot] [h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), + (1924, 'list:mage action', 1, 'mage action : \r\n[h:action:apply oil|apply oil] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:free action potion|free action potion] [h:action:give food|give food]\r\n[h:action:give water|give water] [h:action:goblin sapper|goblin sapper] [h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell] [h:action:mage arcane brilliance on party|arcane brilliance on party]\r\n[h:action:mage arcane explosion|arcane explosion] [h:action:mage arcane intellect on party|arcane intellect on party] [h:action:mage arcane intellect|arcane intellect] [h:action:mage arcane power|arcane power] [h:action:mage blast wave|blast wave]\r\n[h:action:mage blink|blink] [h:action:mage blizzard|blizzard] [h:action:mage cold snap|cold snap] [h:action:mage combustion|combustion] [h:action:mage conjure food|conjure food] [h:action:mage conjure mana gem|conjure mana gem]\r\n[h:action:mage conjure water|conjure water] [h:action:mage counterspell on enemy healer|counterspell on enemy healer] [h:action:mage counterspell|counterspell] [h:action:mage evocation|evocation] [h:action:mage fire blast|fire blast]\r\n[h:action:mage fire ward|fire ward] [h:action:mage flamestrike|flamestrike] [h:action:mage frost nova|frost nova] [h:action:mage frost ward|frost ward] [h:action:mage frostbolt|frostbolt] [h:action:mage ice armor|ice armor]\r\n[h:action:mage ice barrier|ice barrier] [h:action:mage ice block|ice block] [h:action:mage invisibility|invisibility] [h:action:mage mage armor|mage armor] [h:action:mage mana gem|mana gem] [h:action:mage mana shield|mana shield]\r\n[h:action:mage polymorph|polymorph] [h:action:mage presence of mind|presence of mind] [h:action:mage pyroblast|pyroblast] [h:action:mage remove curse on party|remove curse on party] [h:action:mage remove curse|remove curse] [h:action:mage scorch|scorch]\r\n[h:action:mage update pve strats|update pve strats] [h:action:mage update pvp strats|update pvp strats] [h:action:mage update raid strats|update raid strats] [h:action:move from dark portal|move from dark portal]\r\n[h:action:move to dark portal|move to dark portal] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start] [h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target]\r\n[h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:shoot|shoot] [h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), (1925, 'action:mage remove glyph of frostbolt', 1, 'remove glyph of frostbolt [h:object|action] [c:do remove glyph of frostbolt|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] with relevance (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] with relevance (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] with relevance (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] with relevance (11.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] with relevance (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] with relevance (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1926, 'strategy:warlock aoe demonology pvp', 1, 'aoe demonology pvp [h:object|strategy] [c:co ~aoe demonology pvp|toggle combat][c:nc ~aoe demonology pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:warlock rain of fire|rain of fire] (20.000)[h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1927, 'strategy:paladin buff protection pvp', 1, 'buff protection pvp [h:object|strategy] [c:co ~buff protection pvp|toggle combat][c:nc ~buff protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin avenging wrath|avenging wrath] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)\r\nOn: [h:trigger:paladin righteous fury|righteous fury] do [h:action:paladin righteous fury|righteous fury] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (1926, 'strategy:warlock aoe demonology pvp', 1, 'aoe demonology pvp [h:object|strategy] [c:co ~aoe demonology pvp|toggle combat][c:nc ~aoe demonology pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:warlock rain of fire|rain of fire] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1927, 'strategy:paladin buff protection pvp', 1, 'buff protection pvp [h:object|strategy] [c:co ~buff protection pvp|toggle combat][c:nc ~buff protection pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)\r\nOn: [h:trigger:paladin righteous fury|righteous fury] do [h:action:paladin righteous fury|righteous fury] (11.000)', '', '', '', '', '', '', '', '', '', 0), (1928, 'trigger:priest starshards', 1, 'starshards [h:object|trigger] [c:starshards|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest starshards|starshards] (15.000) for [h:strategy:priest shadow|shadow]\r\nExecutes: [h:action:priest starshards|starshards] (15.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), (1929, 'action:warlock seed of corruption on attacker', 1, 'seed of corruption on attacker [h:object|action] [c:do seed of corruption on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (22.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (22.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (22.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (22.000) for [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (22.000) for [h:strategy:warlock aoe demonology pvp|aoe demonology pvp]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (22.000) for [h:strategy:warlock aoe demonology raid|aoe demonology raid]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (22.000) for [h:strategy:warlock aoe destruction pve|aoe destruction pve]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (22.000) for [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\nTriggers from: [h:trigger:warlock corruption on attacker|corruption on attacker] with relevance (22.000) for [h:strategy:warlock aoe destruction raid|aoe destruction raid]', '', '', '', '', '', '', '', '', '', 0), - (1930, 'strategy:warrior fury raid', 1, 'fury raid [h:object|strategy] [c:co ~fury raid|toggle combat][c:nc ~fury raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior bloodthirst|bloodthirst] do [h:action:warrior bloodthirst|bloodthirst] (13.000)\r\nOn: [h:trigger:warrior slam!|slam!] do [h:action:warrior slam|slam] (21.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:warrior intercept on snare target|intercept on snare target] do [h:action:warrior intercept on snare target|intercept on snare target] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior whirlwind|whirlwind] (12.000)[h:action:warrior heroic strike|heroic strike] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (14.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warrior victory rush|victory rush] do [h:action:warrior victory rush|victory rush] (20.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1931, 'strategy:rogue stealth combat pve', 1, 'stealth combat pve [h:object|strategy] [c:co ~stealth combat pve|toggle combat][c:nc ~stealth combat pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1932, 'action:mage arcane brilliance on party', 1, 'arcane brilliance on party [h:object|action] [c:do arcane brilliance on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (1930, 'strategy:warrior fury raid', 1, 'fury raid [h:object|strategy] [c:co ~fury raid|toggle combat][c:nc ~fury raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior intercept on snare target|intercept on snare target] do [h:action:warrior intercept on snare target|intercept on snare target] (10.000)\r\nOn: [h:trigger:warrior bloodthirst|bloodthirst] do [h:action:warrior bloodthirst|bloodthirst] (13.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior whirlwind|whirlwind] do [h:action:warrior whirlwind|whirlwind] (12.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:warrior heroic strike|heroic strike] do [h:action:warrior heroic strike|heroic strike] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (14.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1931, 'strategy:rogue stealth combat pve', 1, 'stealth combat pve [h:object|strategy] [c:co ~stealth combat pve|toggle combat][c:nc ~stealth combat pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1932, 'action:mage arcane brilliance on party', 1, 'arcane brilliance on party [h:object|action] [c:do arcane brilliance on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nTriggers from: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] with relevance (13.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (1933, 'strategy:warlock pet demonology raid', 1, 'pet demonology raid [h:object|strategy] [c:co ~pet demonology raid|toggle combat][c:nc ~pet demonology raid|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (1934, 'strategy:rogue aoe combat pve', 1, 'aoe combat pve [h:object|strategy] [c:co ~aoe combat pve|toggle combat][c:nc ~aoe combat pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:oil of immolation|oil of immolation] (24.000)[h:action:rogue blade flurry|blade flurry] (24.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1935, 'strategy:shaman buff elemental raid', 1, 'buff elemental raid [h:object|strategy] [c:co ~buff elemental raid|toggle combat][c:nc ~buff elemental raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (20.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman flametongue weapon|flametongue weapon] (20.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman flametongue weapon|flametongue weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1936, 'trigger:no mana', 1, 'no mana [h:object|trigger] [c:no mana|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), + (1934, 'strategy:rogue aoe combat pve', 1, 'aoe combat pve [h:object|strategy] [c:co ~aoe combat pve|toggle combat][c:nc ~aoe combat pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:rogue blade flurry|blade flurry] (24.000)[h:action:oil of immolation|oil of immolation] (23.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1935, 'strategy:shaman buff elemental raid', 1, 'buff elemental raid [h:object|strategy] [c:co ~buff elemental raid|toggle combat][c:nc ~buff elemental raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman flametongue weapon|flametongue weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1936, 'trigger:no mana', 1, 'no mana [h:object|trigger] [c:no mana|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:shoot|shoot] (10.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), (1937, 'strategy:paladin blessing retribution pvp', 1, 'blessing retribution pvp [h:object|strategy] [c:co ~blessing retribution pvp|toggle combat][c:nc ~blessing retribution pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin pvp blessing|pvp blessing] (10.000)\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin pvp blessing on party|pvp blessing on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing|greater blessing] do [h:action:paladin pvp greater blessing|pvp greater blessing] (11.000)\r\nOn: [h:trigger:paladin greater blessing on party|greater blessing on party] do [h:action:paladin pvp greater blessing on party|pvp greater blessing on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), - (1938, 'strategy:shaman aoe restoration raid', 1, 'aoe restoration raid [h:object|strategy] [c:co ~aoe restoration raid|toggle combat][c:nc ~aoe restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1938, 'strategy:shaman aoe restoration raid', 1, 'aoe restoration raid [h:object|strategy] [c:co ~aoe restoration raid|toggle combat][c:nc ~aoe restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1939, 'strategy:shaman totem air wrath', 1, 'totem air wrath [h:object|strategy] [c:co ~totem air wrath|toggle combat][c:nc ~totem air wrath|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman wrath of air totem|wrath of air totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1940, 'strategy:rogue cc combat pve', 1, 'cc combat pve [h:object|strategy] [c:co ~cc combat pve|toggle combat][c:nc ~cc combat pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)', '', '', '', '', '', '', '', '', '', 0), (1941, 'strategy:mage cc frost pve', 1, 'cc frost pve [h:object|strategy] [c:co ~cc frost pve|toggle combat][c:nc ~cc frost pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), (1942, 'action:shaman fire resistance totem', 1, 'fire resistance totem [h:object|action] [c:do fire resistance totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totem water resistance|totem water resistance]', '', '', '', '', '', '', '', '', '', 0), (1943, 'action:shaman grounding totem', 1, 'grounding totem [h:object|action] [c:do grounding totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totem air grounding|totem air grounding]', '', '', '', '', '', '', '', '', '', 0), - (1944, 'trigger:mage no mana gem trigger', 1, 'no mana gem trigger [h:object|trigger] [c:no mana gem trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1945, 'strategy:warlock demonology pve', 1, 'demonology pve [h:object|strategy] [c:co ~demonology pve|toggle combat][c:nc ~demonology pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1946, 'strategy:warrior buff fury pvp', 1, 'buff fury pvp [h:object|strategy] [c:co ~buff fury pvp|toggle combat][c:nc ~buff fury pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nOn: [h:trigger:warrior berserker stance|berserker stance] do [h:action:warrior berserker stance|berserker stance] (30.000)\r\nOn: [h:trigger:warrior death wish|death wish] do [h:action:warrior death wish|death wish] (20.000)\r\nOn: [h:trigger:feared|feared] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1947, 'strategy:mage fire pve', 1, 'fire pve [h:object|strategy] [c:co ~fire pve|toggle combat][c:nc ~fire pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mage hot streak|hot streak] do [h:action:mage pyroblast|pyroblast] (12.000)\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage frostbolt|frostbolt] (10.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:enemy player ten yards|enemy player ten yards] do [h:action:mage blast wave|blast wave] (16.000)\r\nOn: [h:trigger:mage living bomb|living bomb] do [h:action:mage living bomb|living bomb] (13.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (21.000)[h:action:mage evocation|evocation] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage improved scorch|improved scorch] do [h:action:mage scorch|scorch] (11.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage spellsteal|spellsteal] do [h:action:mage spellsteal|spellsteal] (40.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (21.000)\r\nDefault:[h:action:mage fireball|fireball] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] do [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] do [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000)\r\nOn: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] do [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] do [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] do [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nOn: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] do [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000)\r\nOn: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] do [h:action:mage remove glyph of frostbolt|remove glyph of frostbolt] (11.000)\r\nOn: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] do [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] do [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] do [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1948, 'strategy:paladin blessing sanctuary', 1, 'blessing sanctuary [h:object|strategy] [c:co ~blessing sanctuary|toggle combat][c:nc ~blessing sanctuary|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing of sanctuary|blessing of sanctuary] do [h:action:paladin blessing of sanctuary|blessing of sanctuary] (10.000)\r\nOn: [h:trigger:paladin greater blessing of sanctuary on party|greater blessing of sanctuary on party] do [h:action:paladin greater blessing of sanctuary on party|greater blessing of sanctuary on party] (13.000)\r\nOn: [h:trigger:paladin blessing of sanctuary on party|blessing of sanctuary on party] do [h:action:paladin blessing of sanctuary on party|blessing of sanctuary on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing of sanctuary|greater blessing of sanctuary] do [h:action:paladin greater blessing of sanctuary|greater blessing of sanctuary] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (1944, 'trigger:mage no mana gem trigger', 1, 'no mana gem trigger [h:object|trigger] [c:no mana gem trigger|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage frost raid|frost raid]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage conjure mana gem|conjure mana gem] (10.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), + (1945, 'strategy:warlock demonology pve', 1, 'demonology pve [h:object|strategy] [c:co ~demonology pve|toggle combat][c:nc ~demonology pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock sacrifice|sacrifice] (90.000)[h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:initialize pet|initialize pet] (11.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1946, 'strategy:warrior buff fury pvp', 1, 'buff fury pvp [h:object|strategy] [c:co ~buff fury pvp|toggle combat][c:nc ~buff fury pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:target of fear cast|target of fear cast] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nOn: [h:trigger:warrior berserker stance|berserker stance] do [h:action:warrior berserker stance|berserker stance] (30.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1947, 'strategy:mage fire pve', 1, 'fire pve [h:object|strategy] [c:co ~fire pve|toggle combat][c:nc ~fire pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage frostbolt|frostbolt] (10.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (24.000)[h:action:mage evocation|evocation] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage pyroblast|pyroblast] (21.000)[h:action:mage frostbolt|frostbolt] (20.000)\r\nOn: [h:trigger:mage no fire vulnerability|no fire vulnerability] do [h:action:mage scorch|scorch] (12.000)\r\nOn: [h:trigger:mage pyroblast|pyroblast] do [h:action:mage pyroblast|pyroblast] (11.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:mage fireball|fireball] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1948, 'strategy:paladin blessing sanctuary', 1, 'blessing sanctuary [h:object|strategy] [c:co ~blessing sanctuary|toggle combat][c:nc ~blessing sanctuary|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing of sanctuary|blessing of sanctuary] do [h:action:paladin blessing of sanctuary|blessing of sanctuary] (10.000)\r\nOn: [h:trigger:paladin blessing of sanctuary on party|blessing of sanctuary on party] do [h:action:paladin blessing of sanctuary on party|blessing of sanctuary on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing of sanctuary|greater blessing of sanctuary] do [h:action:paladin greater blessing of sanctuary|greater blessing of sanctuary] (11.000)\r\nOn: [h:trigger:paladin greater blessing of sanctuary on party|greater blessing of sanctuary on party] do [h:action:paladin greater blessing of sanctuary on party|greater blessing of sanctuary on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), (1949, 'trigger:rpg spell', 1, 'rpg spell [h:object|trigger] [c:rpg spell|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg spell] (1.001) for [h:strategy|rpg craft]', '', '', '', '', '', '', '', '', '', 0), (1950, 'strategy:mage cure arcane raid', 1, 'cure arcane raid [h:object|strategy] [c:co ~cure arcane raid|toggle combat][c:nc ~cure arcane raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (51.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (10.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1951, 'strategy:rogue poisons assassination raid', 1, 'poisons assassination raid [h:object|strategy] [c:co ~poisons assassination raid|toggle combat][c:nc ~poisons assassination raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] do [h:action:rogue apply deadly poison|apply deadly poison] (10.000)\r\nOn: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] do [h:action:rogue apply instant poison|apply instant poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1952, 'strategy:warrior aoe protection raid', 1, 'aoe protection raid [h:object|strategy] [c:co ~aoe protection raid|toggle combat][c:nc ~aoe protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (23.000)[h:action:warrior challenging shout|challenging shout] (21.000)[h:action:warrior battle shout|battle shout] (20.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)', '', '', '', '', '', '', '', '', '', 0), - (1953, 'strategy:paladin buff holy pvp', 1, 'buff holy pvp [h:object|strategy] [c:co ~buff holy pvp|toggle combat][c:nc ~buff holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin divine favor|divine favor] do [h:action:paladin divine favor|divine favor] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin avenging wrath|avenging wrath] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1954, 'strategy:paladin buff retribution raid', 1, 'buff retribution raid [h:object|strategy] [c:co ~buff retribution raid|toggle combat][c:nc ~buff retribution raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin avenging wrath|avenging wrath] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1955, 'strategy:paladin cc protection pvp', 1, 'cc protection pvp [h:object|strategy] [c:co ~cc protection pvp|toggle combat][c:nc ~cc protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1956, 'strategy:paladin aoe protection raid', 1, 'aoe protection raid [h:object|strategy] [c:co ~aoe protection raid|toggle combat][c:nc ~aoe protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin avenger\'s shield|avenger\'s shield] do [h:action:paladin avenger\'s shield|avenger\'s shield] (20.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:paladin hammer of the righteous|hammer of the righteous] (23.000)[h:action:oil of immolation|oil of immolation] (24.000)[h:action:paladin avenger\'s shield|avenger\'s shield] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1957, 'strategy:paladin cure protection pve', 1, 'cure protection pve [h:object|strategy] [c:co ~cure protection pve|toggle combat][c:nc ~cure protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (1952, 'strategy:warrior aoe protection raid', 1, 'aoe protection raid [h:object|strategy] [c:co ~aoe protection raid|toggle combat][c:nc ~aoe protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior cleave|cleave] (23.000)[h:action:warrior challenging shout|challenging shout] (21.000)[h:action:warrior battle shout|battle shout] (20.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (1953, 'strategy:paladin buff holy pvp', 1, 'buff holy pvp [h:object|strategy] [c:co ~buff holy pvp|toggle combat][c:nc ~buff holy pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1954, 'strategy:paladin buff retribution raid', 1, 'buff retribution raid [h:object|strategy] [c:co ~buff retribution raid|toggle combat][c:nc ~buff retribution raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1955, 'strategy:paladin cc protection pvp', 1, 'cc protection pvp [h:object|strategy] [c:co ~cc protection pvp|toggle combat][c:nc ~cc protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1956, 'strategy:paladin aoe protection raid', 1, 'aoe protection raid [h:object|strategy] [c:co ~aoe protection raid|toggle combat][c:nc ~aoe protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin consecration|consecration] do [h:action:paladin consecration|consecration] (20.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1957, 'strategy:paladin cure protection pve', 1, 'cure protection pve [h:object|strategy] [c:co ~cure protection pve|toggle combat][c:nc ~cure protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), (1958, 'strategy:mage cure frost pvp', 1, 'cure frost pvp [h:object|strategy] [c:co ~cure frost pvp|toggle combat][c:nc ~cure frost pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (51.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (10.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1959, 'strategy:paladin blessing retribution raid', 1, 'blessing retribution raid [h:object|strategy] [c:co ~blessing retribution raid|toggle combat][c:nc ~blessing retribution raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin raid blessing|raid blessing] (10.000)\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin raid blessing on party|raid blessing on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing|greater blessing] do [h:action:paladin raid greater blessing on party|raid greater blessing on party] (11.000)\r\nOn: [h:trigger:paladin greater blessing on party|greater blessing on party] do [h:action:paladin raid greater blessing on party|raid greater blessing on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), (1960, 'value:party member to remove roots', 1, 'party member to remove roots [h:object|value] [c:cdebug values party member to remove roots|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1961, 'action:shaman tremor totem', 1, 'tremor totem [h:object|action] [c:do tremor totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totem earth tremor|totem earth tremor]', '', '', '', '', '', '', '', '', '', 0), - (1962, 'action:shaman update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]', '', '', '', '', '', '', '', '', '', 0), - (1963, 'trigger:high threat', 1, 'high threat [h:object|trigger] [c:high threat|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (1964, 'strategy:rogue aoe combat pvp', 1, 'aoe combat pvp [h:object|strategy] [c:co ~aoe combat pvp|toggle combat][c:nc ~aoe combat pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:oil of immolation|oil of immolation] (24.000)[h:action:rogue blade flurry|blade flurry] (24.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1962, 'action:shaman update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:shaman restoration|restoration]', '', '', '', '', '', '', '', '', '', 0), + (1963, 'trigger:high threat', 1, 'high threat [h:object|trigger] [c:high threat|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage frost raid|frost raid]\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage invisibility|invisibility] (40.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), + (1964, 'strategy:rogue aoe combat pvp', 1, 'aoe combat pvp [h:object|strategy] [c:co ~aoe combat pvp|toggle combat][c:nc ~aoe combat pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:rogue blade flurry|blade flurry] (24.000)[h:action:oil of immolation|oil of immolation] (23.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1965, 'trigger:need world buff', 1, 'need world buff [h:object|trigger] [c:need world buff|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|world buff] (1.000) for [h:strategy|wbuff]', '', '', '', '', '', '', '', '', '', 0), - (1966, 'strategy:paladin aoe holy pvp', 1, 'aoe holy pvp [h:object|strategy] [c:co ~aoe holy pvp|toggle combat][c:nc ~aoe holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1966, 'strategy:paladin aoe holy pvp', 1, 'aoe holy pvp [h:object|strategy] [c:co ~aoe holy pvp|toggle combat][c:nc ~aoe holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1967, 'strategy:paladin aura protection pve', 1, 'aura protection pve [h:object|strategy] [c:co ~aura protection pve|toggle combat][c:nc ~aura protection pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin retribution aura|retribution aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), (1968, 'trigger:warlock curse of tongues', 1, 'curse of tongues [h:object|trigger] [c:curse of tongues|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of tongues|curse of tongues] (20.000) for [h:strategy:warlock curse tongues|curse tongues]', '', '', '', '', '', '', '', '', '', 0), - (1969, 'strategy:warlock curse elements', 1, 'curse elements [h:object|strategy] [c:co ~curse elements|toggle combat][c:nc ~curse elements|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of the elements|curse of the elements] do [h:action:warlock curse of the elements|curse of the elements] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1969, 'strategy:warlock curse elements', 1, 'curse elements [h:object|strategy] [c:co ~curse elements|toggle combat][c:nc ~curse elements|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of the elements|curse of the elements] do [h:action:warlock curse of the elements|curse of the elements] (20.000)\r\nOn: [h:trigger:warlock curse of the elements on attacker|curse of the elements on attacker] do [h:action:warlock curse of the elements on attacker|curse of the elements on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), (1970, 'strategy:mage cure arcane pve', 1, 'cure arcane pve [h:object|strategy] [c:co ~cure arcane pve|toggle combat][c:nc ~cure arcane pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (51.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (10.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1971, 'strategy:shaman totem air grace', 1, 'totem air grace [h:object|strategy] [c:co ~totem air grace|toggle combat][c:nc ~totem air grace|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman grace of air totem|grace of air totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1972, 'strategy:shaman aoe elemental pvp', 1, 'aoe elemental pvp [h:object|strategy] [c:co ~aoe elemental pvp|toggle combat][c:nc ~aoe elemental pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman chain lightning|chain lightning] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1973, 'strategy:rogue buff assassination pve', 1, 'buff assassination pve [h:object|strategy] [c:co ~buff assassination pve|toggle combat][c:nc ~buff assassination pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue cold blood|cold blood] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (1972, 'strategy:shaman aoe elemental pvp', 1, 'aoe elemental pvp [h:object|strategy] [c:co ~aoe elemental pvp|toggle combat][c:nc ~aoe elemental pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman chain lightning|chain lightning] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1973, 'strategy:rogue buff assassination pve', 1, 'buff assassination pve [h:object|strategy] [c:co ~buff assassination pve|toggle combat][c:nc ~buff assassination pve|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (1974, 'strategy:warlock pet imp', 1, 'pet imp [h:object|strategy] [c:co ~pet imp|toggle combat][c:nc ~pet imp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock no imp|no imp] do [h:action:warlock summon imp|summon imp] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1975, 'trigger:paladin blessing of wisdom on party', 1, 'blessing of wisdom on party [h:object|trigger] [c:blessing of wisdom on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin blessing of wisdom on party|blessing of wisdom on party] (12.000) for [h:strategy:paladin blessing wisdom|blessing wisdom]', '', '', '', '', '', '', '', '', '', 0), - (1976, 'strategy:paladin holy pve', 1, 'holy pve [h:object|strategy] [c:co ~holy pve|toggle combat][c:nc ~holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:paladin flash of light|flash of light] (60.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (74.000)[h:action:paladin divine favor|divine favor] (76.000)[h:action:paladin holy shock on party|holy shock on party] (75.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:paladin judgement of light|judgement of light] (11.000)\r\nOn: [h:trigger:paladin hand of sacrifice|hand of sacrifice] do [h:action:paladin hand of sacrifice on party|hand of sacrifice on party] (78.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (71.000)[h:action:paladin divine favor|divine favor] (73.000)[h:action:paladin holy shock|holy shock] (72.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:paladin flash of light|flash of light] (70.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:paladin flash of light on party|flash of light on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:paladin flash of light on party|flash of light on party] (70.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of light|seal of light] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1977, 'strategy:rogue cc combat pvp', 1, 'cc combat pvp [h:object|strategy] [c:co ~cc combat pvp|toggle combat][c:nc ~cc combat pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (1978, 'strategy:warrior protection pvp', 1, 'protection pvp [h:object|strategy] [c:co ~protection pvp|toggle combat][c:nc ~protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior revenge|revenge] do [h:action:warrior revenge|revenge] (11.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior last stand|last stand] (92.000)[h:action:warrior shield wall|shield wall] (91.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:warrior disarm|disarm] do [h:action:warrior disarm|disarm] (10.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000)\r\nOn: [h:trigger:warrior greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:warrior blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] do [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior shield slam|shield slam] (14.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:warrior intervene|intervene] (90.000)\r\nOn: [h:trigger:warrior shield block|shield block] do [h:action:warrior shield block|shield block] (32.000)\r\nOn: [h:trigger:warrior spell reflection|spell reflection] do [h:action:warrior spell reflection|spell reflection] (31.000)\r\nOn: [h:trigger:warrior sunder armor|sunder armor] do [h:action:warrior devastate|devastate] (13.000)\r\nOn: [h:trigger:warrior sword and board|sword and board] do [h:action:warrior shield slam|shield slam] (20.000)\r\nOn: [h:trigger:warrior taunt on snare target|taunt on snare target] do [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warrior victory rush|victory rush] do [h:action:warrior victory rush|victory rush] (20.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (1979, 'strategy:mage aoe frost raid', 1, 'aoe frost raid [h:object|strategy] [c:co ~aoe frost raid|toggle combat][c:nc ~aoe frost raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)[h:action:mage blizzard|blizzard] (21.000)[h:action:mage flamestrike|flamestrike] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (1980, 'strategy:rogue stealth subtlety pve', 1, 'stealth subtlety pve [h:object|strategy] [c:co ~stealth subtlety pve|toggle combat][c:nc ~stealth subtlety pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:rogue shadowstep|shadowstep] (22.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue premeditation|premeditation] (21.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1976, 'strategy:paladin holy pve', 1, 'holy pve [h:object|strategy] [c:co ~holy pve|toggle combat][c:nc ~holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:medium health|medium health] do [h:action:paladin flash of light|flash of light] (70.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:paladin flash of light|flash of light] (60.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:paladin judgement|judgement] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)[h:action:paladin holy shock|holy shock] (72.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:paladin flash of light on party|flash of light on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)[h:action:paladin holy shock on party|holy shock on party] (75.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:paladin flash of light on party|flash of light on party] (70.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:paladin seal|seal] do [h:action:paladin seal of light|seal of light] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:medium health|medium health] do [h:action:paladin flash of light|flash of light] (70.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:paladin flash of light|flash of light] (60.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:paladin flash of light on party|flash of light on party] (60.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (90.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:paladin flash of light on party|flash of light on party] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1977, 'strategy:rogue cc combat pvp', 1, 'cc combat pvp [h:object|strategy] [c:co ~cc combat pvp|toggle combat][c:nc ~cc combat pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)', '', '', '', '', '', '', '', '', '', 0), + (1978, 'strategy:warrior protection pvp', 1, 'protection pvp [h:object|strategy] [c:co ~protection pvp|toggle combat][c:nc ~protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior bloodthirst|bloodthirst] do [h:action:warrior bloodthirst|bloodthirst] (20.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior last stand|last stand] (92.000)[h:action:warrior shield wall|shield wall] (91.000)\r\nOn: [h:trigger:warrior disarm|disarm] do [h:action:warrior disarm|disarm] (10.000)\r\nOn: [h:trigger:warrior demoralizing shout|demoralizing shout] do [h:action:warrior demoralizing shout|demoralizing shout] (24.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000)\r\nOn: [h:trigger:warrior greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] do [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior shield slam|shield slam] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warrior sunder armor|sunder armor] do [h:action:warrior devastate|devastate] (22.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:warrior revenge|revenge] do [h:action:warrior revenge|revenge] (21.000)\r\nOn: [h:trigger:warrior shield block|shield block] do [h:action:warrior shield block|shield block] (23.000)\r\nOn: [h:trigger:warrior taunt on snare target|taunt on snare target] do [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:warrior greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warrior blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (1979, 'strategy:mage aoe frost raid', 1, 'aoe frost raid [h:object|strategy] [c:co ~aoe frost raid|toggle combat][c:nc ~aoe frost raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:mage blizzard|blizzard] (21.000)[h:action:mage flamestrike|flamestrike] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (1980, 'strategy:rogue stealth subtlety pve', 1, 'stealth subtlety pve [h:object|strategy] [c:co ~stealth subtlety pve|toggle combat][c:nc ~stealth subtlety pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue premeditation|premeditation] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1981, 'strategy:warlock curse affliction pvp', 1, 'curse affliction pvp [h:object|strategy] [c:co ~curse affliction pvp|toggle combat][c:nc ~curse affliction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock no curse|no curse] do [h:action:warlock curse of agony|curse of agony] (12.000)\r\nOn: [h:trigger:warlock no curse on attacker|no curse on attacker] do [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), (1982, 'trigger:paladin greater blessing of wisdom', 1, 'greater blessing of wisdom [h:object|trigger] [c:greater blessing of wisdom|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin greater blessing of wisdom|greater blessing of wisdom] (11.000) for [h:strategy:paladin blessing wisdom|blessing wisdom]', '', '', '', '', '', '', '', '', '', 0), (1983, 'strategy:mage cure frost pve', 1, 'cure frost pve [h:object|strategy] [c:co ~cure frost pve|toggle combat][c:nc ~cure frost pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (51.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (10.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), @@ -2009,112 +2009,112 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (1988, 'strategy:paladin aura holy pve', 1, 'aura holy pve [h:object|strategy] [c:co ~aura holy pve|toggle combat][c:nc ~aura holy pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin concentration aura|concentration aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), (1989, 'value:stored hazards', 1, 'stored hazards [h:object|value] [c:cdebug values stored hazards|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (1990, 'strategy:rogue cc subtlety raid', 1, 'cc subtlety raid [h:object|strategy] [c:co ~cc subtlety raid|toggle combat][c:nc ~cc subtlety raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)', '', '', '', '', '', '', '', '', '', 0), - (1991, 'strategy:rogue stealth subtlety raid', 1, 'stealth subtlety raid [h:object|strategy] [c:co ~stealth subtlety raid|toggle combat][c:nc ~stealth subtlety raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:rogue shadowstep|shadowstep] (22.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue premeditation|premeditation] (21.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (1991, 'strategy:rogue stealth subtlety raid', 1, 'stealth subtlety raid [h:object|strategy] [c:co ~stealth subtlety raid|toggle combat][c:nc ~stealth subtlety raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue premeditation|premeditation] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1992, 'strategy:paladin blessing protection pvp', 1, 'blessing protection pvp [h:object|strategy] [c:co ~blessing protection pvp|toggle combat][c:nc ~blessing protection pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin pvp blessing|pvp blessing] (10.000)\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin pvp blessing on party|pvp blessing on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing|greater blessing] do [h:action:paladin pvp greater blessing|pvp greater blessing] (11.000)\r\nOn: [h:trigger:paladin greater blessing on party|greater blessing on party] do [h:action:paladin pvp greater blessing on party|pvp greater blessing on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), (1993, 'strategy:shaman totem water healing', 1, 'totem water healing [h:object|strategy] [c:co ~totem water healing|toggle combat][c:nc ~totem water healing|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman healing stream totem|healing stream totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1994, 'trigger:paladin blessing of sanctuary', 1, 'blessing of sanctuary [h:object|trigger] [c:blessing of sanctuary|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin blessing of sanctuary|blessing of sanctuary] (10.000) for [h:strategy:paladin blessing sanctuary|blessing sanctuary]', '', '', '', '', '', '', '', '', '', 0), - (1995, 'trigger:rogue apply mind poison main hand', 1, 'apply mind poison main hand [h:object|trigger] [c:apply mind poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply mind poison|apply mind poison] (10.000) for [h:strategy:rogue poisons assassination pvp|poisons assassination pvp]\r\nExecutes: [h:action:rogue apply mind poison|apply mind poison] (10.000) for [h:strategy:rogue poisons combat pvp|poisons combat pvp]\r\nExecutes: [h:action:rogue apply mind poison|apply mind poison] (10.000) for [h:strategy:rogue poison main mind|poison main mind]\r\nExecutes: [h:action:rogue apply mind poison|apply mind poison] (10.000) for [h:strategy:rogue poisons subtlety pvp|poisons subtlety pvp]', '', '', '', '', '', '', '', '', '', 0), + (1995, 'trigger:rogue apply mind poison main hand', 1, 'apply mind poison main hand [h:object|trigger] [c:apply mind poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply mind poison|apply mind poison] (10.000) for [h:strategy:rogue poison off mind|poison off mind]', '', '', '', '', '', '', '', '', '', 0), (1996, 'strategy:paladin aura devotion', 1, 'aura devotion [h:object|strategy] [c:co ~aura devotion|toggle combat][c:nc ~aura devotion|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin devotion aura|devotion aura] do [h:action:paladin devotion aura|devotion aura] (10.000)', '', '', '', '', '', '', '', '', '', 0), (1997, 'strategy:rogue poison main instant', 1, 'poison main instant [h:object|strategy] [c:co ~poison main instant|toggle combat][c:nc ~poison main instant|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] do [h:action:rogue apply instant poison|apply instant poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (1998, 'strategy:warlock aoe destruction pve', 1, 'aoe destruction pve [h:object|strategy] [c:co ~aoe destruction pve|toggle combat][c:nc ~aoe destruction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:warlock rain of fire|rain of fire] (20.000)[h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (1998, 'strategy:warlock aoe destruction pve', 1, 'aoe destruction pve [h:object|strategy] [c:co ~aoe destruction pve|toggle combat][c:nc ~aoe destruction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:warlock rain of fire|rain of fire] (20.000)', '', '', '', '', '', '', '', '', '', 0), (1999, 'action:paladin greater blessing of might on party', 1, 'greater blessing of might on party [h:object|action] [c:do greater blessing of might on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing of might on party|greater blessing of might on party] with relevance (13.000) for [h:strategy:paladin blessing might|blessing might]', '', '', '', '', '', '', '', '', '', 0), (2000, 'action:pull rti target', 1, 'pull rti target [h:object|action] [c:do pull rti target|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|pull rti] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (2001, 'strategy:shaman totems elemental pvp', 1, 'totems elemental pvp [h:object|strategy] [c:co ~totems elemental pvp|toggle combat][c:nc ~totems elemental pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman wrath of air totem|wrath of air totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman totem of wrath|totem of wrath] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2002, 'strategy:rogue combat pvp', 1, 'combat pvp [h:object|strategy] [c:co ~combat pvp|toggle combat][c:nc ~combat pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue cloak of shadows|cloak of shadows] do [h:action:rogue cloak of shadows|cloak of shadows] (42.000)\r\nDefault:[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)[h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (21.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:rogue riposte|riposte] do [h:action:rogue riposte|riposte] (23.000)\r\nOn: [h:trigger:rogue rupture|rupture] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sinister strike|sinister strike] do [h:action:rogue sinister strike|sinister strike] (10.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2001, 'strategy:shaman totems elemental pvp', 1, 'totems elemental pvp [h:object|strategy] [c:co ~totems elemental pvp|toggle combat][c:nc ~totems elemental pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman wrath of air totem|wrath of air totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman totem of wrath|totem of wrath] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2002, 'strategy:rogue combat pvp', 1, 'combat pvp [h:object|strategy] [c:co ~combat pvp|toggle combat][c:nc ~combat pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:rogue riposte|riposte] do [h:action:rogue riposte|riposte] (23.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (21.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:rogue rupture|rupture] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sinister strike|sinister strike] do [h:action:rogue sinister strike|sinister strike] (10.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (22.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:rogue sprint|sprint] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2003, 'value:talent spec', 1, 'talent spec [h:object|value] [c:cdebug values talent spec|current value]\r\nThis value stores the current talent spec for the bot.', '', '', '', '', '', '', '', '', '', 0), - (2004, 'strategy:mage buff frost pvp', 1, 'buff frost pvp [h:object|strategy] [c:co ~buff frost pvp|toggle combat][c:nc ~buff frost pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage cold snap|cold snap] do [h:action:mage cold snap|cold snap] (23.000)\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage ice barrier|ice barrier] do [h:action:mage ice barrier|ice barrier] (20.000)\r\nOn: [h:trigger:mage icy veins|icy veins] do [h:action:mage icy veins|icy veins] (21.000)\r\nOn: [h:trigger:mage mirror image|mirror image] do [h:action:mage mirror image|mirror image] (21.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (12.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (12.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2005, 'strategy:mage buff arcane pvp', 1, 'buff arcane pvp [h:object|strategy] [c:co ~buff arcane pvp|toggle combat][c:nc ~buff arcane pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage arcane power|arcane power] do [h:action:mage arcane power|arcane power] (22.000)\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage presence of mind|presence of mind] (21.000)\r\nOn: [h:trigger:mage mirror image|mirror image] do [h:action:mage mirror image|mirror image] (21.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (12.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (12.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2004, 'strategy:mage buff frost pvp', 1, 'buff frost pvp [h:object|strategy] [c:co ~buff frost pvp|toggle combat][c:nc ~buff frost pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (20.000)\r\nOn: [h:trigger:mage ice barrier|ice barrier] do [h:action:mage ice barrier|ice barrier] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:mage mana shield|mana shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (10.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2005, 'strategy:mage buff arcane pvp', 1, 'buff arcane pvp [h:object|strategy] [c:co ~buff arcane pvp|toggle combat][c:nc ~buff arcane pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:mage mana shield|mana shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (10.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (11.000)', '', '', '', '', '', '', '', '', '', 0), (2006, 'value:should spirit healer', 1, 'should spirit healer [h:object|value] [c:cdebug values should spirit healer|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (2007, 'trigger:feared', 1, 'feared [h:object|trigger] [c:feared|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), - (2008, 'strategy:shaman buff enhancement raid', 1, 'buff enhancement raid [h:object|strategy] [c:co ~buff enhancement raid|toggle combat][c:nc ~buff enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (20.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (20.000)\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (10.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2008, 'strategy:shaman buff enhancement raid', 1, 'buff enhancement raid [h:object|strategy] [c:co ~buff enhancement raid|toggle combat][c:nc ~buff enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2009, 'trigger:mage mirror image', 1, 'mirror image [h:object|trigger] [c:mirror image|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage mirror image|mirror image] (21.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage mirror image|mirror image] (21.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage mirror image|mirror image] (21.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:mage mirror image|mirror image] (21.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage mirror image|mirror image] (21.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage mirror image|mirror image] (21.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:mage mirror image|mirror image] (21.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage mirror image|mirror image] (21.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage mirror image|mirror image] (21.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (2010, 'strategy:rogue poisons', 1, 'poisons [h:object|strategy] [c:co ~poisons|toggle combat][c:nc ~poisons|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (2011, 'strategy:rogue poison off instant', 1, 'poison off instant [h:object|strategy] [c:co ~poison off instant|toggle combat][c:nc ~poison off instant|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] do [h:action:rogue apply instant poison|apply instant poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2012, 'action:mage scorch', 1, 'scorch [h:object|action] [c:do scorch|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage improved scorch|improved scorch] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage improved scorch|improved scorch] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage improved scorch|improved scorch] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), - (2013, 'strategy:warrior aoe fury pvp', 1, 'aoe fury pvp [h:object|strategy] [c:co ~aoe fury pvp|toggle combat][c:nc ~aoe fury pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior demoralizing shout|demoralizing shout] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (23.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)', '', '', '', '', '', '', '', '', '', 0), - (2014, 'strategy:rogue buff combat pvp', 1, 'buff combat pvp [h:object|strategy] [c:co ~buff combat pvp|toggle combat][c:nc ~buff combat pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue adrenaline rush|adrenaline rush] do [h:action:rogue adrenaline rush|adrenaline rush] (26.000)\r\nOn: [h:trigger:rogue blade flurry|blade flurry] do [h:action:rogue blade flurry|blade flurry] (25.000)\r\nOn: [h:trigger:rogue killing spree|killing spree] do [h:action:rogue killing spree|killing spree] (24.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2015, 'strategy:warrior buff arms pve', 1, 'buff arms pve [h:object|strategy] [c:co ~buff arms pve|toggle combat][c:nc ~buff arms pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (30.000)\r\nOn: [h:trigger:feared|feared] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2012, 'action:mage scorch', 1, 'scorch [h:object|action] [c:do scorch|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage no fire vulnerability|no fire vulnerability] with relevance (12.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage no fire vulnerability|no fire vulnerability] with relevance (12.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage no fire vulnerability|no fire vulnerability] with relevance (12.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), + (2013, 'strategy:warrior aoe fury pvp', 1, 'aoe fury pvp [h:object|strategy] [c:co ~aoe fury pvp|toggle combat][c:nc ~aoe fury pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (25.000)[h:action:warrior cleave|cleave] (23.000)[h:action:warrior bloodthirst|bloodthirst] (24.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2014, 'strategy:rogue buff combat pvp', 1, 'buff combat pvp [h:object|strategy] [c:co ~buff combat pvp|toggle combat][c:nc ~buff combat pvp|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2015, 'strategy:warrior buff arms pve', 1, 'buff arms pve [h:object|strategy] [c:co ~buff arms pve|toggle combat][c:nc ~buff arms pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (30.000)\r\nOn: [h:trigger:target of fear cast|target of fear cast] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2016, 'trigger:paladin hand of sacrifice', 1, 'hand of sacrifice [h:object|trigger] [c:hand of sacrifice|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin hand of sacrifice on party|hand of sacrifice on party] (78.000) for [h:strategy:paladin holy pve|holy pve]\r\nExecutes: [h:action:paladin hand of sacrifice on party|hand of sacrifice on party] (78.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nExecutes: [h:action:paladin hand of sacrifice on party|hand of sacrifice on party] (78.000) for [h:strategy:paladin holy raid|holy raid]', '', '', '', '', '', '', '', '', '', 0), - (2017, 'strategy:warrior buff protection pve', 1, 'buff protection pve [h:object|strategy] [c:co ~buff protection pve|toggle combat][c:nc ~buff protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:warrior defensive stance|defensive stance] do [h:action:warrior defensive stance|defensive stance] (30.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nOn: [h:trigger:warrior commanding shout|commanding shout] do [h:action:warrior commanding shout|commanding shout] (20.000)\r\nOn: [h:trigger:feared|feared] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2017, 'strategy:warrior buff protection pve', 1, 'buff protection pve [h:object|strategy] [c:co ~buff protection pve|toggle combat][c:nc ~buff protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:target of fear cast|target of fear cast] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nOn: [h:trigger:warrior defensive stance|defensive stance] do [h:action:warrior defensive stance|defensive stance] (30.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2018, 'trigger:mage ice barrier', 1, 'ice barrier [h:object|trigger] [c:ice barrier|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage ice barrier|ice barrier] (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage ice barrier|ice barrier] (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage ice barrier|ice barrier] (20.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), (2019, 'trigger:mage remove glyph of living bomb', 1, 'remove glyph of living bomb [h:object|trigger] [c:remove glyph of living bomb|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (2020, 'strategy:mage arcane pvp', 1, 'arcane pvp [h:object|strategy] [c:co ~arcane pvp|toggle combat][c:nc ~arcane pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (21.000)[h:action:mage evocation|evocation] (20.000)\r\nOn: [h:trigger:mage arcane blast|arcane blast] do [h:action:mage arcane blast|arcane blast] (11.000)\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mage missile barrage|missile barrage] do [h:action:mage arcane missiles|arcane missiles] (10.000)\r\nOn: [h:trigger:mage spellsteal|spellsteal] do [h:action:mage spellsteal|spellsteal] (40.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:mage fire blast|fire blast] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (21.000)\r\nDefault:[h:action:mage arcane missiles|arcane missiles] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] do [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] do [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000)\r\nOn: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] do [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] do [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] do [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nOn: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] do [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000)\r\nOn: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] do [h:action:mage remove glyph of frostbolt|remove glyph of frostbolt] (11.000)\r\nOn: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] do [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] do [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] do [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2020, 'strategy:mage arcane pvp', 1, 'arcane pvp [h:object|strategy] [c:co ~arcane pvp|toggle combat][c:nc ~arcane pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (24.000)[h:action:mage evocation|evocation] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage pyroblast|pyroblast] (21.000)[h:action:mage frostbolt|frostbolt] (20.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:mage fire blast|fire blast] (20.000)[h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:mage arcane missiles|arcane missiles] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2021, 'strategy:rogue poison off crippling', 1, 'poison off crippling [h:object|strategy] [c:co ~poison off crippling|toggle combat][c:nc ~poison off crippling|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand] do [h:action:rogue apply crippling poison|apply crippling poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2022, 'strategy:shaman totem water cleansing', 1, 'totem water cleansing [h:object|strategy] [c:co ~totem water cleansing|toggle combat][c:nc ~totem water cleansing|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman disease cleansing totem|disease cleansing totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2023, 'strategy:mage cc fire pvp', 1, 'cc fire pvp [h:object|strategy] [c:co ~cc fire pvp|toggle combat][c:nc ~cc fire pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)\r\nOn: [h:trigger:enemy too close for spell|enemy too close for spell] do [h:action:mage dragon\'s breath|dragon\'s breath] (90.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2024, 'strategy:mage buff fire pve', 1, 'buff fire pve [h:object|strategy] [c:co ~buff fire pve|toggle combat][c:nc ~buff fire pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage combustion|combustion] do [h:action:mage combustion|combustion] (21.000)\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage mirror image|mirror image] do [h:action:mage mirror image|mirror image] (21.000)\r\nOn: [h:trigger:mage molten armor|molten armor] do [h:action:mage molten armor|molten armor] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (12.000)\r\nOn: [h:trigger:mage molten armor|molten armor] do [h:action:mage molten armor|molten armor] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2025, 'strategy:shaman cure restoration pve', 1, 'cure restoration pve [h:object|strategy] [c:co ~cure restoration pve|toggle combat][c:nc ~cure restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (2026, 'strategy:paladin aura retribution pve', 1, 'aura retribution pve [h:object|strategy] [c:co ~aura retribution pve|toggle combat][c:nc ~aura retribution pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin sanctity aura|sanctity aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2023, 'strategy:mage cc fire pvp', 1, 'cc fire pvp [h:object|strategy] [c:co ~cc fire pvp|toggle combat][c:nc ~cc fire pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)[h:action:mage blast wave|blast wave] (40.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2024, 'strategy:mage buff fire pve', 1, 'buff fire pve [h:object|strategy] [c:co ~buff fire pve|toggle combat][c:nc ~buff fire pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:mage mana shield|mana shield] (20.000)\r\nOn: [h:trigger:mage mage armor|mage armor] do [h:action:mage mage armor|mage armor] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (12.000)\r\nOn: [h:trigger:mage mage armor|mage armor] do [h:action:mage mage armor|mage armor] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2025, 'strategy:shaman cure restoration pve', 1, 'cure restoration pve [h:object|strategy] [c:co ~cure restoration pve|toggle combat][c:nc ~cure restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2026, 'strategy:paladin aura retribution pve', 1, 'aura retribution pve [h:object|strategy] [c:co ~aura retribution pve|toggle combat][c:nc ~aura retribution pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin sanctity aura|sanctity aura] (11.000)[h:action:paladin paladin aura|paladin aura] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2027, 'strategy:shaman totems restoration pvp', 1, 'totems restoration pvp [h:object|strategy] [c:co ~totems restoration pvp|toggle combat][c:nc ~totems restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman wrath of air totem|wrath of air totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman flametongue totem|flametongue totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman healing stream totem|healing stream totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2028, 'strategy:shaman restoration raid', 1, 'restoration raid [h:object|strategy] [c:co ~restoration raid|toggle combat][c:nc ~restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman riptide|riptide] (80.000)[h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (81.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:shaman chain heal|chain heal] (70.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)[h:action:shaman riptide on party|riptide on party] (80.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)\r\nNon combat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (80.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (80.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:shaman ready to remove totems|ready to remove totems] do [h:action:shaman totemic recall|totemic recall] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2029, 'strategy:shaman elemental raid', 1, 'elemental raid [h:object|strategy] [c:co ~elemental raid|toggle combat][c:nc ~elemental raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)\r\nDefault:[h:action:shaman lightning bolt|lightning bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:shaman ready to remove totems|ready to remove totems] do [h:action:shaman totemic recall|totemic recall] (10.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2030, 'strategy:paladin retribution raid', 1, 'retribution raid [h:object|strategy] [c:co ~retribution raid|toggle combat][c:nc ~retribution raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:paladin the art of war|the art of war] do [h:action:paladin exorcism|exorcism] (23.000)[h:action:paladin flash of light|flash of light] (22.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:paladin judgement of wisdom|judgement of wisdom] do [h:action:paladin judgement of wisdom|judgement of wisdom] (12.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:paladin judgement of light|judgement of light] do [h:action:paladin judgement of light|judgement of light] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of command|seal of command] (13.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:paladin divine storm|divine storm] (10.000)[h:action:paladin crusader strike|crusader strike] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2028, 'strategy:shaman restoration raid', 1, 'restoration raid [h:object|strategy] [c:co ~restoration raid|toggle combat][c:nc ~restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (81.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)[h:action:shaman riptide|riptide] (80.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:shaman mana tide totem|mana tide totem] (90.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (81.000)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:shaman chain heal|chain heal] (70.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman riptide on party|riptide on party] (80.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (80.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (80.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (90.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2029, 'strategy:shaman elemental raid', 1, 'elemental raid [h:object|strategy] [c:co ~elemental raid|toggle combat][c:nc ~elemental raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nDefault:[h:action:shaman lightning bolt|lightning bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2030, 'strategy:paladin retribution raid', 1, 'retribution raid [h:object|strategy] [c:co ~retribution raid|toggle combat][c:nc ~retribution raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:paladin judgement|judgement] do [h:action:paladin judgement|judgement] (12.000)\r\nOn: [h:trigger:paladin exorcism|exorcism] do [h:action:paladin exorcism|exorcism] (14.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin holy light|holy light] (90.000)[h:action:paladin divine shield|divine shield] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:paladin crusader strike|crusader strike] do [h:action:paladin crusader strike|crusader strike] (10.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:paladin seal|seal] do [h:action:paladin seal of command|seal of command] (13.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (90.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2031, 'strategy:shaman totem air grounding', 1, 'totem air grounding [h:object|strategy] [c:co ~totem air grounding|toggle combat][c:nc ~totem air grounding|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman grounding totem|grounding totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2032, 'action:mage remove glyph of fireball', 1, 'remove glyph of fireball [h:object|action] [c:do remove glyph of fireball|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] with relevance (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] with relevance (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] with relevance (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] with relevance (11.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] with relevance (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] with relevance (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (2033, 'trigger:shaman trigger spec appropriate fire totem', 1, 'trigger spec appropriate fire totem [h:object|trigger] [c:trigger spec appropriate fire totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nExecutes: [h:action:shaman frost resistance totem|frost resistance totem] (20.000) for [h:strategy:shaman totem fire resistance|totem fire resistance]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totem fire flametongue|totem fire flametongue]\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totem fire magma|totem fire magma]\r\nExecutes: [h:action:shaman fire nova|fire nova] (20.000) for [h:strategy:shaman totem fire nova|totem fire nova]\r\nExecutes: [h:action:shaman searing totem|searing totem] (20.000) for [h:strategy:shaman totem fire searing|totem fire searing]\r\nExecutes: [h:action:shaman totem of wrath|totem of wrath] (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nExecutes: [h:action:shaman totem of wrath|totem of wrath] (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nExecutes: [h:action:shaman totem of wrath|totem of wrath] (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (2034, 'strategy:rogue buff assassination raid', 1, 'buff assassination raid [h:object|strategy] [c:co ~buff assassination raid|toggle combat][c:nc ~buff assassination raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue cold blood|cold blood] (25.000)', '', '', '', '', '', '', '', '', '', 0), - (2035, 'trigger:in pvp', 1, 'in pvp [h:object|trigger] [c:in pvp|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock update pvp strats|update pvp strats] (100.000) for [h:strategy:warlock affliction|affliction]\r\nExecutes: [h:action:warlock update pvp strats|update pvp strats] (100.000) for [h:strategy:warlock demonology|demonology]\r\nExecutes: [h:action:warlock update pvp strats|update pvp strats] (100.000) for [h:strategy:warlock destruction|destruction]\r\nNon combat behavior:\r\nExecutes: [h:action:warlock update pvp strats|update pvp strats] (100.000) for [h:strategy:warlock affliction|affliction]\r\nExecutes: [h:action:warlock update pvp strats|update pvp strats] (100.000) for [h:strategy:warlock demonology|demonology]\r\nExecutes: [h:action:warlock update pvp strats|update pvp strats] (100.000) for [h:strategy:warlock destruction|destruction]', '', '', '', '', '', '', '', '', '', 0), + (2033, 'trigger:shaman trigger spec appropriate fire totem', 1, 'trigger spec appropriate fire totem [h:object|trigger] [c:trigger spec appropriate fire totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totem fire magma|totem fire magma]\r\nExecutes: [h:action:shaman totem of wrath|totem of wrath] (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nExecutes: [h:action:shaman totem of wrath|totem of wrath] (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totem fire flametongue|totem fire flametongue]\r\nExecutes: [h:action:shaman fire nova|fire nova] (20.000) for [h:strategy:shaman totem fire nova|totem fire nova]\r\nExecutes: [h:action:shaman frost resistance totem|frost resistance totem] (20.000) for [h:strategy:shaman totem fire resistance|totem fire resistance]\r\nExecutes: [h:action:shaman searing totem|searing totem] (20.000) for [h:strategy:shaman totem fire searing|totem fire searing]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nExecutes: [h:action:shaman totem of wrath|totem of wrath] (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nExecutes: [h:action:shaman flametongue totem|flametongue totem] (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (2034, 'strategy:rogue buff assassination raid', 1, 'buff assassination raid [h:object|strategy] [c:co ~buff assassination raid|toggle combat][c:nc ~buff assassination raid|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2035, 'trigger:in pvp', 1, 'in pvp [h:object|trigger] [c:in pvp|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid balance|balance]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nNon combat behavior:\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid balance|balance]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update pvp strats|update pvp strats] (100.000) for [h:strategy:druid tank feral|tank feral]', '', '', '', '', '', '', '', '', '', 0), (2036, 'strategy:rogue poisons assassination pve', 1, 'poisons assassination pve [h:object|strategy] [c:co ~poisons assassination pve|toggle combat][c:nc ~poisons assassination pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] do [h:action:rogue apply instant poison|apply instant poison] (10.000)\r\nOn: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] do [h:action:rogue apply instant poison|apply instant poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2037, 'strategy:warlock destruction', 1, 'destruction [h:object|strategy] [c:co ~destruction|toggle combat][c:nc ~destruction|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warlock update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warlock update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warlock update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warlock update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warlock update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warlock update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (2038, 'strategy:shaman cure enhancement pve', 1, 'cure enhancement pve [h:object|strategy] [c:co ~cure enhancement pve|toggle combat][c:nc ~cure enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (2039, 'strategy:mage buff fire pvp', 1, 'buff fire pvp [h:object|strategy] [c:co ~buff fire pvp|toggle combat][c:nc ~buff fire pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage combustion|combustion] do [h:action:mage combustion|combustion] (21.000)\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage mirror image|mirror image] do [h:action:mage mirror image|mirror image] (21.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (12.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (12.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2038, 'strategy:shaman cure enhancement pve', 1, 'cure enhancement pve [h:object|strategy] [c:co ~cure enhancement pve|toggle combat][c:nc ~cure enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2039, 'strategy:mage buff fire pvp', 1, 'buff fire pvp [h:object|strategy] [c:co ~buff fire pvp|toggle combat][c:nc ~buff fire pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:mage mana shield|mana shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage ice armor|ice armor] do [h:action:mage ice armor|ice armor] (10.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (11.000)', '', '', '', '', '', '', '', '', '', 0), (2040, 'action:shaman windwall totem', 1, 'windwall totem [h:object|action] [c:do windwall totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totem air windwall|totem air windwall]', '', '', '', '', '', '', '', '', '', 0), (2041, 'strategy:paladin aura fire', 1, 'aura fire [h:object|strategy] [c:co ~aura fire|toggle combat][c:nc ~aura fire|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin fire resistance aura|fire resistance aura] do [h:action:paladin fire resistance aura|fire resistance aura] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2042, 'trigger:paladin blessing of might', 1, 'blessing of might [h:object|trigger] [c:blessing of might|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin blessing of might|blessing of might] (10.000) for [h:strategy:paladin blessing might|blessing might]', '', '', '', '', '', '', '', '', '', 0), - (2043, 'strategy:warlock aoe affliction pvp', 1, 'aoe affliction pvp [h:object|strategy] [c:co ~aoe affliction pvp|toggle combat][c:nc ~aoe affliction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:warlock rain of fire|rain of fire] (20.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warlock siphon life on attacker|siphon life on attacker] do [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000)\r\nOn: [h:trigger:warlock unstable affliction on attacker|unstable affliction on attacker] do [h:action:warlock unstable affliction on attacker|unstable affliction on attacker] (24.000)', '', '', '', '', '', '', '', '', '', 0), - (2044, 'action:mage ice armor', 1, 'ice armor [h:object|action] [c:do ice armor|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (10.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (10.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (10.000) for [h:strategy:mage buff frost pvp|buff frost pvp]', '', '', '', '', '', '', '', '', '', 0), - (2045, 'strategy:warrior arms raid', 1, 'arms raid [h:object|strategy] [c:co ~arms raid|toggle combat][c:nc ~arms raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior mortal strike|mortal strike] do [h:action:warrior mortal strike|mortal strike] (11.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warrior overpower|overpower] do [h:action:warrior overpower|overpower] (20.000)\r\nOn: [h:trigger:warrior rend|rend] do [h:action:warrior rend|rend] (10.000)\r\nOn: [h:trigger:warrior sudden death|sudden death] do [h:action:warrior execute|execute] (21.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (22.000)\r\nOn: [h:trigger:warrior taste for blood|taste for blood] do [h:action:warrior overpower|overpower] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warrior victory rush|victory rush] do [h:action:warrior victory rush|victory rush] (20.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2043, 'strategy:warlock aoe affliction pvp', 1, 'aoe affliction pvp [h:object|strategy] [c:co ~aoe affliction pvp|toggle combat][c:nc ~aoe affliction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:warlock rain of fire|rain of fire] (20.000)\r\nOn: [h:trigger:warlock siphon life on attacker|siphon life on attacker] do [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000)', '', '', '', '', '', '', '', '', '', 0), + (2044, 'action:mage ice armor', 1, 'ice armor [h:object|action] [c:do ice armor|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (10.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (10.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage ice armor|ice armor] with relevance (10.000) for [h:strategy:mage buff fire pvp|buff fire pvp]', '', '', '', '', '', '', '', '', '', 0), + (2045, 'strategy:warrior arms raid', 1, 'arms raid [h:object|strategy] [c:co ~arms raid|toggle combat][c:nc ~arms raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior whirlwind|whirlwind] do [h:action:warrior whirlwind|whirlwind] (13.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior mortal strike|mortal strike] do [h:action:warrior mortal strike|mortal strike] (11.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:warrior overpower|overpower] do [h:action:warrior overpower|overpower] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warrior rend|rend] do [h:action:warrior rend|rend] (10.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (22.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2046, 'strategy:paladin blessing protection pve', 1, 'blessing protection pve [h:object|strategy] [c:co ~blessing protection pve|toggle combat][c:nc ~blessing protection pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin pve blessing|pve blessing] (10.000)\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin pve blessing on party|pve blessing on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing|greater blessing] do [h:action:paladin pve greater blessing|pve greater blessing] (11.000)\r\nOn: [h:trigger:paladin greater blessing on party|greater blessing on party] do [h:action:paladin pve greater blessing on party|pve greater blessing on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), - (2047, 'strategy:paladin cure retribution pvp', 1, 'cure retribution pvp [h:object|strategy] [c:co ~cure retribution pvp|toggle combat][c:nc ~cure retribution pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2047, 'strategy:paladin cure retribution pvp', 1, 'cure retribution pvp [h:object|strategy] [c:co ~cure retribution pvp|toggle combat][c:nc ~cure retribution pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), (2048, 'strategy:rogue poison off anesthetic', 1, 'poison off anesthetic [h:object|strategy] [c:co ~poison off anesthetic|toggle combat][c:nc ~poison off anesthetic|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply anesthetic poison main hand|apply anesthetic poison main hand] do [h:action:rogue apply anesthetic poison|apply anesthetic poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2049, 'trigger:pull rti', 1, 'pull rti [h:object|trigger] [c:pull rti|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|pull rti target] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (2050, 'action:shaman stormstrike', 1, 'stormstrike [h:object|action] [c:do stormstrike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (10.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (10.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (10.000) for [h:strategy:shaman enhancement raid|enhancement raid]', '', '', '', '', '', '', '', '', '', 0), - (2051, 'strategy:shaman buff restoration pve', 1, 'buff restoration pve [h:object|strategy] [c:co ~buff restoration pve|toggle combat][c:nc ~buff restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (20.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (20.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2052, 'strategy:warrior cc fury pvp', 1, 'cc fury pvp [h:object|strategy] [c:co ~cc fury pvp|toggle combat][c:nc ~cc fury pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior hamstring on snare target|hamstring on snare target] do [h:action:warrior piercing howl|piercing howl] (20.000)\r\nOn: [h:trigger:warrior pummel|pummel] do [h:action:warrior pummel|pummel] (40.000)\r\nOn: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] do [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000)\r\nOn: [h:trigger:warrior shield bash|shield bash] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2050, 'action:shaman stormstrike', 1, 'stormstrike [h:object|action] [c:do stormstrike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman stormstrike|stormstrike] with relevance (11.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nTriggers from: [h:trigger:shaman stormstrike|stormstrike] with relevance (11.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nTriggers from: [h:trigger:shaman stormstrike|stormstrike] with relevance (11.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]', '', '', '', '', '', '', '', '', '', 0), + (2051, 'strategy:shaman buff restoration pve', 1, 'buff restoration pve [h:object|strategy] [c:co ~buff restoration pve|toggle combat][c:nc ~buff restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2052, 'strategy:warrior cc fury pvp', 1, 'cc fury pvp [h:object|strategy] [c:co ~cc fury pvp|toggle combat][c:nc ~cc fury pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior hamstring on snare target|hamstring on snare target] do [h:action:warrior piercing howl|piercing howl] (20.000)\r\nOn: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] do [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000)\r\nOn: [h:trigger:warrior pummel|pummel] do [h:action:warrior pummel|pummel] (40.000)\r\nOn: [h:trigger:warrior shield bash|shield bash] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), (2053, 'action:skip spells list', 1, 'skip spells list [h:object|action] [c:do skip spells list|execute]\r\nThis chat command gives control over the list of spells bots aren\'t allowed to cast.\r\nExamples:\r\nss ? : List the ignored spells.\r\nss [spell name] : Never cast this spell.\r\nss -[spell name] : Remove this spell from the ignored spell list.\r\n\r\nUsed values:\r\n[h:value|skip spells list] \r\nCombat behavior:\r\nTriggers from: [h:trigger|ss] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|ss] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|ss] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|ss] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (2054, 'strategy:rogue poisons combat raid', 1, 'poisons combat raid [h:object|strategy] [c:co ~poisons combat raid|toggle combat][c:nc ~poisons combat raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] do [h:action:rogue apply deadly poison|apply deadly poison] (10.000)\r\nOn: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] do [h:action:rogue apply instant poison|apply instant poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2055, 'action:warlock update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warlock affliction|affliction]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warlock demonology|demonology]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warlock destruction|destruction]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warlock affliction|affliction]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warlock demonology|demonology]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warlock destruction|destruction]', '', '', '', '', '', '', '', '', '', 0), - (2056, 'strategy:shaman buff elemental pvp', 1, 'buff elemental pvp [h:object|strategy] [c:co ~buff elemental pvp|toggle combat][c:nc ~buff elemental pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (20.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman flametongue weapon|flametongue weapon] (20.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman flametongue weapon|flametongue weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2056, 'strategy:shaman buff elemental pvp', 1, 'buff elemental pvp [h:object|strategy] [c:co ~buff elemental pvp|toggle combat][c:nc ~buff elemental pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman flametongue weapon|flametongue weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2057, 'action:mount anim', 1, 'mount anim [h:object|action] [c:do mount anim|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (1.000) for [h:strategy|emote]', '', '', '', '', '', '', '', '', '', 0), (2058, 'strategy:focus heal target', 1, 'focus heal target [h:object|strategy] [c:co ~focus heal target|toggle combat][c:nc ~focus heal target|toggle noncombat]\r\nThis strategy will make the bot focus heal the specified target using the \'set focus heal \' command', '', '', '', '', '', '', '', '', '', 0), - (2059, 'strategy:wbuff', 1, 'wbuff [h:object|strategy] [c:co ~wbuff|toggle combat][c:nc ~wbuff|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|need world buff] do [h:action|world buff] (1.000)', '', '', '', '', '', '', '', '', '', 0), - (2060, 'strategy:warrior aoe fury raid', 1, 'aoe fury raid [h:object|strategy] [c:co ~aoe fury raid|toggle combat][c:nc ~aoe fury raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior demoralizing shout|demoralizing shout] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (23.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)', '', '', '', '', '', '', '', '', '', 0), - (2061, 'strategy:warrior aoe arms pvp', 1, 'aoe arms pvp [h:object|strategy] [c:co ~aoe arms pvp|toggle combat][c:nc ~aoe arms pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (23.000)[h:action:warrior bladestorm|bladestorm] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)', '', '', '', '', '', '', '', '', '', 0), - (2062, 'strategy:warrior aoe arms raid', 1, 'aoe arms raid [h:object|strategy] [c:co ~aoe arms raid|toggle combat][c:nc ~aoe arms raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (23.000)[h:action:warrior bladestorm|bladestorm] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)', '', '', '', '', '', '', '', '', '', 0), - (2063, 'strategy:warrior aoe protection pvp', 1, 'aoe protection pvp [h:object|strategy] [c:co ~aoe protection pvp|toggle combat][c:nc ~aoe protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior demoralizing shout|demoralizing shout] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (23.000)[h:action:warrior challenging shout|challenging shout] (21.000)[h:action:warrior battle shout|battle shout] (20.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)', '', '', '', '', '', '', '', '', '', 0), + (2059, 'strategy:wbuff', 1, 'wbuff [h:object|strategy] [c:co ~wbuff|toggle combat][c:nc ~wbuff|toggle noncombat]\r\nThis cheat strategy which automatically applies predefined worldbuffs to the bots if they don\'t have them.\r\nNon combat behavior:\r\nOn: [h:trigger|need world buff] do [h:action|world buff] (1.000)', '', '', '', '', '', '', '', '', '', 0), + (2060, 'strategy:warrior aoe fury raid', 1, 'aoe fury raid [h:object|strategy] [c:co ~aoe fury raid|toggle combat][c:nc ~aoe fury raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (25.000)[h:action:warrior cleave|cleave] (23.000)[h:action:warrior bloodthirst|bloodthirst] (24.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2061, 'strategy:warrior aoe arms pvp', 1, 'aoe arms pvp [h:object|strategy] [c:co ~aoe arms pvp|toggle combat][c:nc ~aoe arms pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (25.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (24.000)[h:action:warrior cleave|cleave] (23.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2062, 'strategy:warrior aoe arms raid', 1, 'aoe arms raid [h:object|strategy] [c:co ~aoe arms raid|toggle combat][c:nc ~aoe arms raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)[h:action:warrior sweeping strikes|sweeping strikes] (25.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior whirlwind|whirlwind] (24.000)[h:action:warrior cleave|cleave] (23.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2063, 'strategy:warrior aoe protection pvp', 1, 'aoe protection pvp [h:object|strategy] [c:co ~aoe protection pvp|toggle combat][c:nc ~aoe protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:warrior cleave|cleave] (23.000)[h:action:warrior challenging shout|challenging shout] (21.000)[h:action:warrior battle shout|battle shout] (20.000)\r\nOn: [h:trigger:warrior thunder clap|thunder clap] do [h:action:warrior thunder clap|thunder clap] (22.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warrior aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:warrior thunder clap on snare target|thunder clap on snare target] do [h:action:warrior thunder clap on snare target|thunder clap on snare target] (21.000)', '', '', '', '', '', '', '', '', '', 0), (2064, 'action:mage remove glyph of molten armor', 1, 'remove glyph of molten armor [h:object|action] [c:do remove glyph of molten armor|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] with relevance (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] with relevance (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] with relevance (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] with relevance (11.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] with relevance (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] with relevance (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (2065, 'strategy:warrior cc fury raid', 1, 'cc fury raid [h:object|strategy] [c:co ~cc fury raid|toggle combat][c:nc ~cc fury raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior hamstring on snare target|hamstring on snare target] do [h:action:warrior piercing howl|piercing howl] (20.000)\r\nOn: [h:trigger:warrior pummel|pummel] do [h:action:warrior pummel|pummel] (40.000)\r\nOn: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] do [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2066, 'strategy:warlock demonology pvp', 1, 'demonology pvp [h:object|strategy] [c:co ~demonology pvp|toggle combat][c:nc ~demonology pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2067, 'strategy:warrior buff fury pve', 1, 'buff fury pve [h:object|strategy] [c:co ~buff fury pve|toggle combat][c:nc ~buff fury pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nOn: [h:trigger:warrior berserker stance|berserker stance] do [h:action:warrior berserker stance|berserker stance] (30.000)\r\nOn: [h:trigger:warrior death wish|death wish] do [h:action:warrior death wish|death wish] (20.000)\r\nOn: [h:trigger:feared|feared] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2065, 'strategy:warrior cc fury raid', 1, 'cc fury raid [h:object|strategy] [c:co ~cc fury raid|toggle combat][c:nc ~cc fury raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior hamstring on snare target|hamstring on snare target] do [h:action:warrior piercing howl|piercing howl] (20.000)\r\nOn: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] do [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000)\r\nOn: [h:trigger:warrior pummel|pummel] do [h:action:warrior pummel|pummel] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2066, 'strategy:warlock demonology pvp', 1, 'demonology pvp [h:object|strategy] [c:co ~demonology pvp|toggle combat][c:nc ~demonology pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock sacrifice|sacrifice] (90.000)[h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:warlock shadowburn|shadowburn] (20.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:initialize pet|initialize pet] (11.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2067, 'strategy:warrior buff fury pve', 1, 'buff fury pve [h:object|strategy] [c:co ~buff fury pve|toggle combat][c:nc ~buff fury pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:target of fear cast|target of fear cast] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nOn: [h:trigger:warrior berserker stance|berserker stance] do [h:action:warrior berserker stance|berserker stance] (30.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2068, 'action:paladin blessing of sanctuary on party', 1, 'blessing of sanctuary on party [h:object|action] [c:do blessing of sanctuary on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of sanctuary on party|blessing of sanctuary on party] with relevance (12.000) for [h:strategy:paladin blessing sanctuary|blessing sanctuary]', '', '', '', '', '', '', '', '', '', 0), - (2069, 'strategy:warrior cc fury pve', 1, 'cc fury pve [h:object|strategy] [c:co ~cc fury pve|toggle combat][c:nc ~cc fury pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior hamstring on snare target|hamstring on snare target] do [h:action:warrior piercing howl|piercing howl] (20.000)\r\nOn: [h:trigger:warrior pummel|pummel] do [h:action:warrior pummel|pummel] (40.000)\r\nOn: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] do [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2070, 'strategy:warrior buff fury raid', 1, 'buff fury raid [h:object|strategy] [c:co ~buff fury raid|toggle combat][c:nc ~buff fury raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nOn: [h:trigger:warrior berserker stance|berserker stance] do [h:action:warrior berserker stance|berserker stance] (30.000)\r\nOn: [h:trigger:warrior death wish|death wish] do [h:action:warrior death wish|death wish] (20.000)\r\nOn: [h:trigger:feared|feared] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2071, 'strategy:warrior arms pvp', 1, 'arms pvp [h:object|strategy] [c:co ~arms pvp|toggle combat][c:nc ~arms pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior mortal strike|mortal strike] do [h:action:warrior mortal strike|mortal strike] (11.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warrior overpower|overpower] do [h:action:warrior overpower|overpower] (20.000)\r\nOn: [h:trigger:warrior rend|rend] do [h:action:warrior rend|rend] (10.000)\r\nOn: [h:trigger:warrior sudden death|sudden death] do [h:action:warrior execute|execute] (21.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (22.000)\r\nOn: [h:trigger:warrior taste for blood|taste for blood] do [h:action:warrior overpower|overpower] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warrior victory rush|victory rush] do [h:action:warrior victory rush|victory rush] (20.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2072, 'strategy:warrior buff arms raid', 1, 'buff arms raid [h:object|strategy] [c:co ~buff arms raid|toggle combat][c:nc ~buff arms raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (30.000)\r\nOn: [h:trigger:feared|feared] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2073, 'strategy:warrior buff protection raid', 1, 'buff protection raid [h:object|strategy] [c:co ~buff protection raid|toggle combat][c:nc ~buff protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:warrior defensive stance|defensive stance] do [h:action:warrior defensive stance|defensive stance] (30.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nOn: [h:trigger:warrior commanding shout|commanding shout] do [h:action:warrior commanding shout|commanding shout] (20.000)\r\nOn: [h:trigger:feared|feared] do [h:action:warrior berserker rage|berserker rage] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2074, 'strategy:warrior fury pve', 1, 'fury pve [h:object|strategy] [c:co ~fury pve|toggle combat][c:nc ~fury pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior bloodthirst|bloodthirst] do [h:action:warrior bloodthirst|bloodthirst] (13.000)\r\nOn: [h:trigger:warrior slam!|slam!] do [h:action:warrior slam|slam] (21.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:warrior intercept on snare target|intercept on snare target] do [h:action:warrior intercept on snare target|intercept on snare target] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior whirlwind|whirlwind] (12.000)[h:action:warrior heroic strike|heroic strike] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (14.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warrior victory rush|victory rush] do [h:action:warrior victory rush|victory rush] (20.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2069, 'strategy:warrior cc fury pve', 1, 'cc fury pve [h:object|strategy] [c:co ~cc fury pve|toggle combat][c:nc ~cc fury pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior hamstring on snare target|hamstring on snare target] do [h:action:warrior piercing howl|piercing howl] (20.000)\r\nOn: [h:trigger:warrior pummel on enemy healer|pummel on enemy healer] do [h:action:warrior pummel on enemy healer|pummel on enemy healer] (40.000)\r\nOn: [h:trigger:warrior pummel|pummel] do [h:action:warrior pummel|pummel] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2070, 'strategy:warrior buff fury raid', 1, 'buff fury raid [h:object|strategy] [c:co ~buff fury raid|toggle combat][c:nc ~buff fury raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:target of fear cast|target of fear cast] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nOn: [h:trigger:warrior berserker stance|berserker stance] do [h:action:warrior berserker stance|berserker stance] (30.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:stunned|stunned] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2071, 'strategy:warrior arms pvp', 1, 'arms pvp [h:object|strategy] [c:co ~arms pvp|toggle combat][c:nc ~arms pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior whirlwind|whirlwind] do [h:action:warrior whirlwind|whirlwind] (13.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior mortal strike|mortal strike] do [h:action:warrior mortal strike|mortal strike] (11.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:warrior overpower|overpower] do [h:action:warrior overpower|overpower] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:warrior rend|rend] do [h:action:warrior rend|rend] (10.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (22.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2072, 'strategy:warrior buff arms raid', 1, 'buff arms raid [h:object|strategy] [c:co ~buff arms raid|toggle combat][c:nc ~buff arms raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (30.000)\r\nOn: [h:trigger:target of fear cast|target of fear cast] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2073, 'strategy:warrior buff protection raid', 1, 'buff protection raid [h:object|strategy] [c:co ~buff protection raid|toggle combat][c:nc ~buff protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior battle shout|battle shout] do [h:action:warrior battle shout|battle shout] (21.000)\r\nOn: [h:trigger:target of fear cast|target of fear cast] do [h:action:warrior berserker rage|berserker rage] (40.000)\r\nOn: [h:trigger:warrior defensive stance|defensive stance] do [h:action:warrior defensive stance|defensive stance] (30.000)\r\nOn: [h:trigger:warrior bloodrage|bloodrage] do [h:action:warrior bloodrage|bloodrage] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:stoneshield potion|stoneshield potion] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warrior battle stance|battle stance] do [h:action:warrior battle stance|battle stance] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2074, 'strategy:warrior fury pve', 1, 'fury pve [h:object|strategy] [c:co ~fury pve|toggle combat][c:nc ~fury pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior intercept on snare target|intercept on snare target] do [h:action:warrior intercept on snare target|intercept on snare target] (10.000)\r\nOn: [h:trigger:warrior bloodthirst|bloodthirst] do [h:action:warrior bloodthirst|bloodthirst] (13.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior whirlwind|whirlwind] do [h:action:warrior whirlwind|whirlwind] (12.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior intimidating shout|intimidating shout] (90.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (30.000)\r\nOn: [h:trigger:warrior heroic strike|heroic strike] do [h:action:warrior heroic strike|heroic strike] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warrior target low health|target low health] do [h:action:warrior execute|execute] (14.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2075, 'strategy:warrior cc arms pve', 1, 'cc arms pve [h:object|strategy] [c:co ~cc arms pve|toggle combat][c:nc ~cc arms pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior hamstring on snare target|hamstring on snare target] do [h:action:warrior piercing howl|piercing howl] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2076, 'strategy:warrior cc arms pvp', 1, 'cc arms pvp [h:object|strategy] [c:co ~cc arms pvp|toggle combat][c:nc ~cc arms pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior hamstring on snare target|hamstring on snare target] do [h:action:warrior piercing howl|piercing howl] (20.000)\r\nOn: [h:trigger:warrior shield bash|shield bash] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), (2077, 'strategy:warrior cc arms raid', 1, 'cc arms raid [h:object|strategy] [c:co ~cc arms raid|toggle combat][c:nc ~cc arms raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior hamstring on snare target|hamstring on snare target] do [h:action:warrior piercing howl|piercing howl] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2078, 'strategy:warrior cc protection pvp', 1, 'cc protection pvp [h:object|strategy] [c:co ~cc protection pvp|toggle combat][c:nc ~cc protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] do [h:action:warrior concussion blow|concussion blow] (40.000)\r\nOn: [h:trigger:warrior shockwave|shockwave] do [h:action:warrior shockwave|shockwave] (40.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior shield bash|shield bash] do [h:action:throw grenade|throw grenade] (40.000)[h:action:warrior shield bash|shield bash] (40.000)\r\nOn: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] do [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000)\r\nOn: [h:trigger:warrior shockwave on snare target|shockwave on snare target] do [h:action:warrior shockwave on snare target|shockwave on snare target] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2079, 'strategy:rogue subtlety pve', 1, 'subtlety pve [h:object|strategy] [c:co ~subtlety pve|toggle combat][c:nc ~subtlety pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)[h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue cloak of shadows|cloak of shadows] do [h:action:rogue cloak of shadows|cloak of shadows] (42.000)\r\nDefault:[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:rogue shadowstep|shadowstep] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ghostly strike|ghostly strike] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2080, 'strategy:warrior cc protection raid', 1, 'cc protection raid [h:object|strategy] [c:co ~cc protection raid|toggle combat][c:nc ~cc protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] do [h:action:warrior concussion blow|concussion blow] (40.000)\r\nOn: [h:trigger:warrior shockwave|shockwave] do [h:action:warrior shockwave|shockwave] (40.000)\r\nOn: [h:trigger:warrior shield bash|shield bash] do [h:action:warrior shield bash|shield bash] (40.000)\r\nOn: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] do [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000)\r\nOn: [h:trigger:warrior shockwave on snare target|shockwave on snare target] do [h:action:warrior shockwave on snare target|shockwave on snare target] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2081, 'strategy:warrior protection pve', 1, 'protection pve [h:object|strategy] [c:co ~protection pve|toggle combat][c:nc ~protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior revenge|revenge] do [h:action:warrior revenge|revenge] (11.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior last stand|last stand] (92.000)[h:action:warrior shield wall|shield wall] (91.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:warrior disarm|disarm] do [h:action:warrior disarm|disarm] (10.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000)\r\nOn: [h:trigger:warrior greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:warrior blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] do [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior shield slam|shield slam] (14.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:warrior intervene|intervene] (90.000)\r\nOn: [h:trigger:warrior shield block|shield block] do [h:action:warrior shield block|shield block] (32.000)\r\nOn: [h:trigger:warrior spell reflection|spell reflection] do [h:action:warrior spell reflection|spell reflection] (31.000)\r\nOn: [h:trigger:warrior sunder armor|sunder armor] do [h:action:warrior devastate|devastate] (13.000)\r\nOn: [h:trigger:warrior sword and board|sword and board] do [h:action:warrior shield slam|shield slam] (20.000)\r\nOn: [h:trigger:warrior taunt on snare target|taunt on snare target] do [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warrior victory rush|victory rush] do [h:action:warrior victory rush|victory rush] (20.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2078, 'strategy:warrior cc protection pvp', 1, 'cc protection pvp [h:object|strategy] [c:co ~cc protection pvp|toggle combat][c:nc ~cc protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] do [h:action:warrior concussion blow|concussion blow] (40.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior shield bash|shield bash] do [h:action:warrior shield bash|shield bash] (40.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] do [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2079, 'strategy:rogue subtlety pve', 1, 'subtlety pve [h:object|strategy] [c:co ~subtlety pve|toggle combat][c:nc ~subtlety pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ghostly strike|ghostly strike] (12.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2080, 'strategy:warrior cc protection raid', 1, 'cc protection raid [h:object|strategy] [c:co ~cc protection raid|toggle combat][c:nc ~cc protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior concussion blow on snare target|concussion blow on snare target] do [h:action:warrior concussion blow|concussion blow] (40.000)\r\nOn: [h:trigger:warrior shield bash|shield bash] do [h:action:warrior shield bash|shield bash] (40.000)\r\nOn: [h:trigger:warrior shield bash on enemy healer|shield bash on enemy healer] do [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2081, 'strategy:warrior protection pve', 1, 'protection pve [h:object|strategy] [c:co ~protection pve|toggle combat][c:nc ~protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior bloodthirst|bloodthirst] do [h:action:warrior bloodthirst|bloodthirst] (20.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warrior blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warrior last stand|last stand] (92.000)[h:action:warrior shield wall|shield wall] (91.000)\r\nOn: [h:trigger:warrior disarm|disarm] do [h:action:warrior disarm|disarm] (10.000)\r\nOn: [h:trigger:warrior demoralizing shout|demoralizing shout] do [h:action:warrior demoralizing shout|demoralizing shout] (24.000)\r\nOn: [h:trigger:warrior enemy out of melee range|enemy out of melee range] do [h:action:warrior charge|charge] (37.000)[h:action:warrior heroic throw|heroic throw] (38.000)\r\nOn: [h:trigger:warrior greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior heroic strike|heroic strike] (12.000)\r\nOn: [h:trigger:warrior intercept and far enemy and light rage available|intercept and far enemy and light rage available] do [h:action:warrior berserker stance|berserker stance] (36.000)[h:action:warrior intercept|intercept] (35.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warrior rage available|rage available] do [h:action:warrior shield slam|shield slam] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warrior sunder armor|sunder armor] do [h:action:warrior devastate|devastate] (22.000)\r\nOn: [h:trigger:warrior revenge|revenge] do [h:action:warrior revenge|revenge] (21.000)\r\nOn: [h:trigger:warrior shield block|shield block] do [h:action:warrior shield block|shield block] (23.000)\r\nOn: [h:trigger:warrior taunt on snare target|taunt on snare target] do [h:action:warrior heroic throw on snare target|heroic throw on snare target] (30.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:warrior greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warrior blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2082, 'strategy:paladin blessing retribution pve', 1, 'blessing retribution pve [h:object|strategy] [c:co ~blessing retribution pve|toggle combat][c:nc ~blessing retribution pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin pve blessing|pve blessing] (10.000)\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin pve blessing on party|pve blessing on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing|greater blessing] do [h:action:paladin pve greater blessing|pve greater blessing] (11.000)\r\nOn: [h:trigger:paladin greater blessing on party|greater blessing on party] do [h:action:paladin pve greater blessing on party|pve greater blessing on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), (2083, 'strategy:paladin aura sanctity', 1, 'aura sanctity [h:object|strategy] [c:co ~aura sanctity|toggle combat][c:nc ~aura sanctity|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin sanctity aura|sanctity aura] do [h:action:paladin sanctity aura|sanctity aura] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2084, 'strategy:paladin aoe holy raid', 1, 'aoe holy raid [h:object|strategy] [c:co ~aoe holy raid|toggle combat][c:nc ~aoe holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2084, 'strategy:paladin aoe holy raid', 1, 'aoe holy raid [h:object|strategy] [c:co ~aoe holy raid|toggle combat][c:nc ~aoe holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2085, 'strategy:paladin aoe', 1, 'aoe [h:object|strategy] [c:co ~aoe|toggle combat][c:nc ~aoe|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (2086, 'action:rpg item', 1, 'rpg item [h:object|action] [c:do rpg item|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg item] with relevance (1.001) for [h:strategy|rpg craft]', '', '', '', '', '', '', '', '', '', 0), - (2087, 'strategy:paladin cc protection pve', 1, 'cc protection pve [h:object|strategy] [c:co ~cc protection pve|toggle combat][c:nc ~cc protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2087, 'strategy:paladin cc protection pve', 1, 'cc protection pve [h:object|strategy] [c:co ~cc protection pve|toggle combat][c:nc ~cc protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)', '', '', '', '', '', '', '', '', '', 0), (2088, 'strategy:shaman totem fire flametongue', 1, 'totem fire flametongue [h:object|strategy] [c:co ~totem fire flametongue|toggle combat][c:nc ~totem fire flametongue|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman flametongue totem|flametongue totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2089, 'strategy:paladin aura', 1, 'aura [h:object|strategy] [c:co ~aura|toggle combat][c:nc ~aura|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (2090, 'strategy:paladin cc holy pve', 1, 'cc holy pve [h:object|strategy] [c:co ~cc holy pve|toggle combat][c:nc ~cc holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2091, 'strategy:paladin aoe protection pve', 1, 'aoe protection pve [h:object|strategy] [c:co ~aoe protection pve|toggle combat][c:nc ~aoe protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin avenger\'s shield|avenger\'s shield] do [h:action:paladin avenger\'s shield|avenger\'s shield] (20.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:paladin hammer of the righteous|hammer of the righteous] (23.000)[h:action:oil of immolation|oil of immolation] (24.000)[h:action:paladin avenger\'s shield|avenger\'s shield] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2091, 'strategy:paladin aoe protection pve', 1, 'aoe protection pve [h:object|strategy] [c:co ~aoe protection pve|toggle combat][c:nc ~aoe protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin consecration|consecration] do [h:action:paladin consecration|consecration] (20.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:oil of immolation|oil of immolation] (22.000)[h:action:paladin consecration|consecration] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:paladin aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2092, 'strategy:paladin cc holy pvp', 1, 'cc holy pvp [h:object|strategy] [c:co ~cc holy pvp|toggle combat][c:nc ~cc holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), (2093, 'strategy:paladin aura crusader', 1, 'aura crusader [h:object|strategy] [c:co ~aura crusader|toggle combat][c:nc ~aura crusader|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin crusader aura|crusader aura] do [h:action:paladin crusader aura|crusader aura] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2094, 'strategy:shaman cure restoration pvp', 1, 'cure restoration pvp [h:object|strategy] [c:co ~cure restoration pvp|toggle combat][c:nc ~cure restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (2095, 'strategy:paladin aura retribution pvp', 1, 'aura retribution pvp [h:object|strategy] [c:co ~aura retribution pvp|toggle combat][c:nc ~aura retribution pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin sanctity aura|sanctity aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), - (2096, 'strategy:warlock pet demonology pve', 1, 'pet demonology pve [h:object|strategy] [c:co ~pet demonology pve|toggle combat][c:nc ~pet demonology pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon voidwalker|summon voidwalker] (11.000)[h:action:warlock summon imp|summon imp] (10.000)[h:action:warlock summon felguard|summon felguard] (12.000)', '', '', '', '', '', '', '', '', '', 0), + (2094, 'strategy:shaman cure restoration pvp', 1, 'cure restoration pvp [h:object|strategy] [c:co ~cure restoration pvp|toggle combat][c:nc ~cure restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2095, 'strategy:paladin aura retribution pvp', 1, 'aura retribution pvp [h:object|strategy] [c:co ~aura retribution pvp|toggle combat][c:nc ~aura retribution pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin sanctity aura|sanctity aura] (11.000)[h:action:paladin paladin aura|paladin aura] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2096, 'strategy:warlock pet demonology pve', 1, 'pet demonology pve [h:object|strategy] [c:co ~pet demonology pve|toggle combat][c:nc ~pet demonology pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon voidwalker|summon voidwalker] (11.000)[h:action:warlock summon imp|summon imp] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2097, 'strategy:paladin blessing holy pvp', 1, 'blessing holy pvp [h:object|strategy] [c:co ~blessing holy pvp|toggle combat][c:nc ~blessing holy pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing|blessing] do [h:action:paladin pvp blessing|pvp blessing] (10.000)\r\nOn: [h:trigger:paladin blessing on party|blessing on party] do [h:action:paladin pvp blessing on party|pvp blessing on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing|greater blessing] do [h:action:paladin pvp greater blessing|pvp greater blessing] (11.000)\r\nOn: [h:trigger:paladin greater blessing on party|greater blessing on party] do [h:action:paladin pvp greater blessing on party|pvp greater blessing on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), (2098, 'strategy:paladin aura protection raid', 1, 'aura protection raid [h:object|strategy] [c:co ~aura protection raid|toggle combat][c:nc ~aura protection raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin retribution aura|retribution aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), (2099, 'strategy:paladin aura frost', 1, 'aura frost [h:object|strategy] [c:co ~aura frost|toggle combat][c:nc ~aura frost|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin frost resistance aura|frost resistance aura] do [h:action:paladin frost resistance aura|frost resistance aura] (10.000)', '', '', '', '', '', '', '', '', '', 0), @@ -2123,147 +2123,147 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (2102, 'strategy:paladin aura holy pvp', 1, 'aura holy pvp [h:object|strategy] [c:co ~aura holy pvp|toggle combat][c:nc ~aura holy pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin concentration aura|concentration aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), (2103, 'strategy:paladin blessing might', 1, 'blessing might [h:object|strategy] [c:co ~blessing might|toggle combat][c:nc ~blessing might|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin blessing of might|blessing of might] do [h:action:paladin blessing of might|blessing of might] (10.000)\r\nOn: [h:trigger:paladin blessing of might on party|blessing of might on party] do [h:action:paladin blessing of might on party|blessing of might on party] (12.000)\r\nOn: [h:trigger:paladin greater blessing of might|greater blessing of might] do [h:action:paladin greater blessing of might|greater blessing of might] (11.000)\r\nOn: [h:trigger:paladin greater blessing of might on party|greater blessing of might on party] do [h:action:paladin greater blessing of might on party|greater blessing of might on party] (13.000)', '', '', '', '', '', '', '', '', '', 0), (2104, 'trigger:mage learn glyph of frostbolt', 1, 'learn glyph of frostbolt [h:object|trigger] [c:learn glyph of frostbolt|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (2105, 'strategy:shaman cure restoration raid', 1, 'cure restoration raid [h:object|strategy] [c:co ~cure restoration raid|toggle combat][c:nc ~cure restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (2106, 'strategy:paladin aura retribution raid', 1, 'aura retribution raid [h:object|strategy] [c:co ~aura retribution raid|toggle combat][c:nc ~aura retribution raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin sanctity aura|sanctity aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2105, 'strategy:shaman cure restoration raid', 1, 'cure restoration raid [h:object|strategy] [c:co ~cure restoration raid|toggle combat][c:nc ~cure restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2106, 'strategy:paladin aura retribution raid', 1, 'aura retribution raid [h:object|strategy] [c:co ~aura retribution raid|toggle combat][c:nc ~aura retribution raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin no paladin aura|no paladin aura] do [h:action:paladin sanctity aura|sanctity aura] (11.000)[h:action:paladin paladin aura|paladin aura] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2107, 'strategy:paladin aura retribution', 1, 'aura retribution [h:object|strategy] [c:co ~aura retribution|toggle combat][c:nc ~aura retribution|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:paladin retribution aura|retribution aura] do [h:action:paladin retribution aura|retribution aura] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2108, 'strategy:paladin blessing', 1, 'blessing [h:object|strategy] [c:co ~blessing|toggle combat][c:nc ~blessing|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (2109, 'strategy:paladin buff protection raid', 1, 'buff protection raid [h:object|strategy] [c:co ~buff protection raid|toggle combat][c:nc ~buff protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin avenging wrath|avenging wrath] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)\r\nOn: [h:trigger:paladin righteous fury|righteous fury] do [h:action:paladin righteous fury|righteous fury] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2109, 'strategy:paladin buff protection raid', 1, 'buff protection raid [h:object|strategy] [c:co ~buff protection raid|toggle combat][c:nc ~buff protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:stoneshield potion|stoneshield potion] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)\r\nOn: [h:trigger:paladin righteous fury|righteous fury] do [h:action:paladin righteous fury|righteous fury] (11.000)', '', '', '', '', '', '', '', '', '', 0), (2110, 'strategy:paladin buff', 1, 'buff [h:object|strategy] [c:co ~buff|toggle combat][c:nc ~buff|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (2111, 'strategy:paladin buff holy pve', 1, 'buff holy pve [h:object|strategy] [c:co ~buff holy pve|toggle combat][c:nc ~buff holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin divine favor|divine favor] do [h:action:paladin divine favor|divine favor] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin avenging wrath|avenging wrath] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2112, 'strategy:paladin buff holy raid', 1, 'buff holy raid [h:object|strategy] [c:co ~buff holy raid|toggle combat][c:nc ~buff holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin divine favor|divine favor] do [h:action:paladin divine favor|divine favor] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin avenging wrath|avenging wrath] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2113, 'strategy:paladin buff retribution pvp', 1, 'buff retribution pvp [h:object|strategy] [c:co ~buff retribution pvp|toggle combat][c:nc ~buff retribution pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin avenging wrath|avenging wrath] (21.000)\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2114, 'strategy:paladin cc retribution pve', 1, 'cc retribution pve [h:object|strategy] [c:co ~cc retribution pve|toggle combat][c:nc ~cc retribution pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin repentance|repentance] do [h:action:paladin repentance|repentance] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)\r\nOn: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] do [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000)\r\nOn: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] do [h:action:paladin repentance on snare target|repentance on snare target] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2115, 'strategy:paladin cure holy pve', 1, 'cure holy pve [h:object|strategy] [c:co ~cure holy pve|toggle combat][c:nc ~cure holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (2116, 'strategy:paladin cure holy pvp', 1, 'cure holy pvp [h:object|strategy] [c:co ~cure holy pvp|toggle combat][c:nc ~cure holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (2117, 'strategy:paladin cure holy raid', 1, 'cure holy raid [h:object|strategy] [c:co ~cure holy raid|toggle combat][c:nc ~cure holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (2118, 'strategy:paladin cure protection raid', 1, 'cure protection raid [h:object|strategy] [c:co ~cure protection raid|toggle combat][c:nc ~cure protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (2119, 'strategy:paladin cure retribution pve', 1, 'cure retribution pve [h:object|strategy] [c:co ~cure retribution pve|toggle combat][c:nc ~cure retribution pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2111, 'strategy:paladin buff holy pve', 1, 'buff holy pve [h:object|strategy] [c:co ~buff holy pve|toggle combat][c:nc ~buff holy pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2112, 'strategy:paladin buff holy raid', 1, 'buff holy raid [h:object|strategy] [c:co ~buff holy raid|toggle combat][c:nc ~buff holy raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2113, 'strategy:paladin buff retribution pvp', 1, 'buff retribution pvp [h:object|strategy] [c:co ~buff retribution pvp|toggle combat][c:nc ~buff retribution pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:often|often] do [h:action:apply stone|apply stone] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2114, 'strategy:paladin cc retribution pve', 1, 'cc retribution pve [h:object|strategy] [c:co ~cc retribution pve|toggle combat][c:nc ~cc retribution pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin hammer of justice|hammer of justice] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] do [h:action:paladin repentance on enemy healer|repentance on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy] do [h:action:paladin hammer of justice|hammer of justice] (40.000)\r\nOn: [h:trigger:paladin repentance|repentance] do [h:action:paladin repentance|repentance] (40.000)\r\nOn: [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] do [h:action:paladin repentance on snare target|repentance on snare target] (40.000)\r\nOn: [h:trigger:paladin turn undead|turn undead] do [h:action:paladin turn undead|turn undead] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] do [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] (40.000)\r\nOn: [h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] do [h:action:paladin hammer of justice on snare target|hammer of justice on snare target] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2115, 'strategy:paladin cure holy pve', 1, 'cure holy pve [h:object|strategy] [c:co ~cure holy pve|toggle combat][c:nc ~cure holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2116, 'strategy:paladin cure holy pvp', 1, 'cure holy pvp [h:object|strategy] [c:co ~cure holy pvp|toggle combat][c:nc ~cure holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2117, 'strategy:paladin cure holy raid', 1, 'cure holy raid [h:object|strategy] [c:co ~cure holy raid|toggle combat][c:nc ~cure holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2118, 'strategy:paladin cure protection raid', 1, 'cure protection raid [h:object|strategy] [c:co ~cure protection raid|toggle combat][c:nc ~cure protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2119, 'strategy:paladin cure retribution pve', 1, 'cure retribution pve [h:object|strategy] [c:co ~cure retribution pve|toggle combat][c:nc ~cure retribution pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse|cleanse] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse magic on party|cleanse magic on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse disease on party|cleanse disease on party] (50.000)\r\nOn: [h:trigger:paladin cleanse|cleanse] do [h:action:paladin cleanse poison on party|cleanse poison on party] (50.000)\r\nOn: [h:trigger:party member rooted|party member rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:paladin blessing of freedom|blessing of freedom] (50.000)', '', '', '', '', '', '', '', '', '', 0), (2120, 'action:paladin greater blessing of kings on party', 1, 'greater blessing of kings on party [h:object|action] [c:do greater blessing of kings on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing of kings on party|greater blessing of kings on party] with relevance (13.000) for [h:strategy:paladin blessing kings|blessing kings]', '', '', '', '', '', '', '', '', '', 0), - (2121, 'strategy:paladin holy pvp', 1, 'holy pvp [h:object|strategy] [c:co ~holy pvp|toggle combat][c:nc ~holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:paladin flash of light|flash of light] (60.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (74.000)[h:action:paladin divine favor|divine favor] (76.000)[h:action:paladin holy shock on party|holy shock on party] (75.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:paladin judgement of light|judgement of light] (11.000)\r\nOn: [h:trigger:paladin hand of sacrifice|hand of sacrifice] do [h:action:paladin hand of sacrifice on party|hand of sacrifice on party] (78.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (71.000)[h:action:paladin divine favor|divine favor] (73.000)[h:action:paladin holy shock|holy shock] (72.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:paladin flash of light|flash of light] (70.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:paladin flash of light on party|flash of light on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:paladin flash of light on party|flash of light on party] (70.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of light|seal of light] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2122, 'strategy:paladin holy raid', 1, 'holy raid [h:object|strategy] [c:co ~holy raid|toggle combat][c:nc ~holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:paladin flash of light|flash of light] (60.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (74.000)[h:action:paladin divine favor|divine favor] (76.000)[h:action:paladin holy shock on party|holy shock on party] (75.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:paladin judgement of light|judgement of light] (11.000)\r\nOn: [h:trigger:paladin hand of sacrifice|hand of sacrifice] do [h:action:paladin hand of sacrifice on party|hand of sacrifice on party] (78.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (71.000)[h:action:paladin divine favor|divine favor] (73.000)[h:action:paladin holy shock|holy shock] (72.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:paladin flash of light|flash of light] (70.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:paladin flash of light on party|flash of light on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:paladin flash of light on party|flash of light on party] (70.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of light|seal of light] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2123, 'strategy:paladin protection', 1, 'protection [h:object|strategy] [c:co ~protection|toggle combat][c:nc ~protection|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (2124, 'strategy:paladin protection pve', 1, 'protection pve [h:object|strategy] [c:co ~protection pve|toggle combat][c:nc ~protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:paladin hand of reckoning|hand of reckoning] (90.000)\r\nOn: [h:trigger:paladin holy shield|holy shield] do [h:action:paladin holy shield|holy shield] (23.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:paladin judgement of light|judgement of light] do [h:action:paladin judgement of light|judgement of light] (10.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:paladin judgement of wisdom|judgement of wisdom] (22.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin exorcism|exorcism] (13.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of vengeance|seal of vengeance] (12.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2125, 'strategy:paladin protection pvp', 1, 'protection pvp [h:object|strategy] [c:co ~protection pvp|toggle combat][c:nc ~protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:paladin hand of reckoning|hand of reckoning] (90.000)\r\nOn: [h:trigger:paladin holy shield|holy shield] do [h:action:paladin holy shield|holy shield] (23.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:paladin judgement of light|judgement of light] do [h:action:paladin judgement of light|judgement of light] (10.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:paladin consecration|consecration] (14.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:paladin judgement of wisdom|judgement of wisdom] (22.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)[h:action:paladin exorcism|exorcism] (13.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of vengeance|seal of vengeance] (12.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2126, 'strategy:paladin retribution pvp', 1, 'retribution pvp [h:object|strategy] [c:co ~retribution pvp|toggle combat][c:nc ~retribution pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin the art of war|the art of war] do [h:action:paladin exorcism|exorcism] (23.000)[h:action:paladin flash of light|flash of light] (22.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:paladin judgement of wisdom|judgement of wisdom] do [h:action:paladin judgement of wisdom|judgement of wisdom] (12.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:paladin judgement of light|judgement of light] do [h:action:paladin judgement of light|judgement of light] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:paladin consecration|consecration] (14.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:paladin seal of justice|seal of justice] do [h:action:paladin seal of command|seal of command] (13.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:paladin divine storm|divine storm] (10.000)[h:action:paladin crusader strike|crusader strike] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2121, 'strategy:paladin holy pvp', 1, 'holy pvp [h:object|strategy] [c:co ~holy pvp|toggle combat][c:nc ~holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:medium health|medium health] do [h:action:paladin flash of light|flash of light] (70.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:paladin flash of light|flash of light] (60.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:paladin judgement|judgement] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)[h:action:paladin holy shock|holy shock] (72.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:paladin flash of light on party|flash of light on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)[h:action:paladin holy shock on party|holy shock on party] (75.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:paladin flash of light on party|flash of light on party] (70.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:paladin seal|seal] do [h:action:paladin seal of light|seal of light] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:medium health|medium health] do [h:action:paladin flash of light|flash of light] (70.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:paladin flash of light|flash of light] (60.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:paladin flash of light on party|flash of light on party] (60.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (90.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:paladin flash of light on party|flash of light on party] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2122, 'strategy:paladin holy raid', 1, 'holy raid [h:object|strategy] [c:co ~holy raid|toggle combat][c:nc ~holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:medium health|medium health] do [h:action:paladin flash of light|flash of light] (70.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:paladin flash of light|flash of light] (60.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin divine shield|divine shield] (91.000)[h:action:paladin holy light|holy light] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:paladin judgement|judgement] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)[h:action:paladin holy shock|holy shock] (72.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:paladin flash of light on party|flash of light on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)[h:action:paladin holy shock on party|holy shock on party] (75.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:paladin flash of light on party|flash of light on party] (70.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nOn: [h:trigger:paladin seal|seal] do [h:action:paladin seal of light|seal of light] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:medium health|medium health] do [h:action:paladin flash of light|flash of light] (70.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:paladin flash of light|flash of light] (60.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:paladin flash of light on party|flash of light on party] (60.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (90.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:paladin flash of light on party|flash of light on party] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2123, 'strategy:paladin protection', 1, 'protection [h:object|strategy] [c:co ~protection|toggle combat][c:nc ~protection|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:paladin update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:paladin update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:paladin update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2124, 'strategy:paladin protection pve', 1, 'protection pve [h:object|strategy] [c:co ~protection pve|toggle combat][c:nc ~protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:paladin exorcism|exorcism] do [h:action:paladin exorcism|exorcism] (13.000)\r\nOn: [h:trigger:paladin judgement|judgement] do [h:action:paladin judgement|judgement] (11.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:paladin blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:paladin greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:paladin holy shield|holy shield] do [h:action:paladin holy shield|holy shield] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:paladin hand of reckoning|hand of reckoning] (30.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nOn: [h:trigger:paladin seal|seal] do [h:action:paladin seal of vengeance|seal of vengeance] (12.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:paladin blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:paladin greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (90.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2125, 'strategy:paladin protection pvp', 1, 'protection pvp [h:object|strategy] [c:co ~protection pvp|toggle combat][c:nc ~protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:paladin exorcism|exorcism] do [h:action:paladin exorcism|exorcism] (13.000)\r\nOn: [h:trigger:paladin judgement|judgement] do [h:action:paladin judgement|judgement] (11.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:paladin blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:paladin greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:paladin holy shield|holy shield] do [h:action:paladin holy shield|holy shield] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:paladin hand of reckoning|hand of reckoning] (30.000)\r\nOn: [h:trigger:medium mana|medium mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:paladin seal|seal] do [h:action:paladin seal of vengeance|seal of vengeance] (12.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:paladin blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:paladin greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (90.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2126, 'strategy:paladin retribution pvp', 1, 'retribution pvp [h:object|strategy] [c:co ~retribution pvp|toggle combat][c:nc ~retribution pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:paladin judgement|judgement] do [h:action:paladin judgement|judgement] (12.000)\r\nOn: [h:trigger:paladin exorcism|exorcism] do [h:action:paladin exorcism|exorcism] (14.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:paladin lay on hands|lay on hands] (92.000)[h:action:paladin holy light|holy light] (90.000)[h:action:paladin divine shield|divine shield] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:paladin crusader strike|crusader strike] do [h:action:paladin crusader strike|crusader strike] (10.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:paladin seal of wisdom|seal of wisdom] (21.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:paladin seal|seal] do [h:action:paladin seal of command|seal of command] (13.000)\r\nOn: [h:trigger:paladin target low health|target low health] do [h:action:paladin hammer of wrath|hammer of wrath] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:paladin holy light|holy light] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:paladin redemption|redemption] (90.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2127, 'strategy:rogue poisons subtlety pve', 1, 'poisons subtlety pve [h:object|strategy] [c:co ~poisons subtlety pve|toggle combat][c:nc ~poisons subtlety pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] do [h:action:rogue apply instant poison|apply instant poison] (10.000)\r\nOn: [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] do [h:action:rogue apply instant poison|apply instant poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2128, 'strategy:rogue aoe assassination raid', 1, 'aoe assassination raid [h:object|strategy] [c:co ~aoe assassination raid|toggle combat][c:nc ~aoe assassination raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2129, 'list:rogue action', 1, 'rogue action : \r\n[h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:goblin sapper|goblin sapper] [h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell]\r\n[h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:oil of immolation|oil of immolation] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start]\r\n[h:action:repop|repop] [h:action:reset|reset] [h:action:rogue adrenaline rush|adrenaline rush] [h:action:rogue ambush|ambush] [h:action:rogue apply anesthetic poison|apply anesthetic poison] [h:action:rogue apply crippling poison|apply crippling poison]\r\n[h:action:rogue apply deadly poison|apply deadly poison] [h:action:rogue apply instant poison|apply instant poison] [h:action:rogue apply mind poison|apply mind poison] [h:action:rogue apply wound poison|apply wound poison]\r\n[h:action:rogue blade flurry|blade flurry] [h:action:rogue blind|blind] [h:action:rogue cheap shot|cheap shot] [h:action:rogue check stealth|check stealth] [h:action:rogue cloak of shadows|cloak of shadows] [h:action:rogue cold blood|cold blood]\r\n[h:action:rogue evasion|evasion] [h:action:rogue eviscerate|eviscerate] [h:action:rogue feint|feint] [h:action:rogue ghostly strike|ghostly strike] [h:action:rogue gouge|gouge] [h:action:rogue kick on enemy healer|kick on enemy healer]\r\n[h:action:rogue kick|kick] [h:action:rogue killing spree|killing spree] [h:action:rogue premeditation|premeditation] [h:action:rogue riposte|riposte] [h:action:rogue rupture|rupture] [h:action:rogue sap|sap] [h:action:rogue shadowstep|shadowstep]\r\n[h:action:rogue sinister strike|sinister strike] [h:action:rogue slice and dice|slice and dice] [h:action:rogue sprint|sprint] [h:action:rogue stealth|stealth] [h:action:rogue unstealth|unstealth] [h:action:rogue update pve strats|update pve strats]\r\n[h:action:rogue update pvp strats|update pvp strats] [h:action:rogue update raid strats|update raid strats] [h:action:rogue vanish|vanish] [h:action:select new target|select new target] [h:action:set combat state|set combat state]\r\n[h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), + (2128, 'strategy:rogue aoe assassination raid', 1, 'aoe assassination raid [h:object|strategy] [c:co ~aoe assassination raid|toggle combat][c:nc ~aoe assassination raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2129, 'list:rogue action', 1, 'rogue action : \r\n[h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:free action potion|free action potion] [h:action:goblin sapper|goblin sapper]\r\n[h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:oil of immolation|oil of immolation] [h:action:pull action|pull action]\r\n[h:action:pull end|pull end] [h:action:pull start|pull start] [h:action:repop|repop] [h:action:reset|reset] [h:action:rogue adrenaline rush|adrenaline rush] [h:action:rogue ambush|ambush] [h:action:rogue apply anesthetic poison|apply anesthetic poison]\r\n[h:action:rogue apply crippling poison|apply crippling poison] [h:action:rogue apply deadly poison|apply deadly poison] [h:action:rogue apply instant poison|apply instant poison] [h:action:rogue apply mind poison|apply mind poison]\r\n[h:action:rogue apply wound poison|apply wound poison] [h:action:rogue blade flurry|blade flurry] [h:action:rogue blind|blind] [h:action:rogue cheap shot|cheap shot] [h:action:rogue check stealth|check stealth] [h:action:rogue cold blood|cold blood]\r\n[h:action:rogue evasion|evasion] [h:action:rogue eviscerate|eviscerate] [h:action:rogue feint|feint] [h:action:rogue ghostly strike|ghostly strike] [h:action:rogue gouge|gouge] [h:action:rogue kick on enemy healer|kick on enemy healer]\r\n[h:action:rogue kick|kick] [h:action:rogue premeditation|premeditation] [h:action:rogue preparation|preparation] [h:action:rogue riposte|riposte] [h:action:rogue rupture|rupture] [h:action:rogue sap|sap] [h:action:rogue sinister strike|sinister strike]\r\n[h:action:rogue slice and dice|slice and dice] [h:action:rogue sprint|sprint] [h:action:rogue stealth|stealth] [h:action:rogue unstealth|unstealth] [h:action:rogue update pve strats|update pve strats] [h:action:rogue update pvp strats|update pvp strats]\r\n[h:action:rogue update raid strats|update raid strats] [h:action:rogue vanish|vanish] [h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state]\r\n[h:action:set non combat state|set non combat state] [h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), (2130, 'strategy:rogue cc subtlety pve', 1, 'cc subtlety pve [h:object|strategy] [c:co ~cc subtlety pve|toggle combat][c:nc ~cc subtlety pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)', '', '', '', '', '', '', '', '', '', 0), - (2131, 'strategy:rogue aoe assassination pve', 1, 'aoe assassination pve [h:object|strategy] [c:co ~aoe assassination pve|toggle combat][c:nc ~aoe assassination pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2132, 'strategy:rogue aoe assassination pvp', 1, 'aoe assassination pvp [h:object|strategy] [c:co ~aoe assassination pvp|toggle combat][c:nc ~aoe assassination pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2133, 'strategy:rogue aoe subtlety pvp', 1, 'aoe subtlety pvp [h:object|strategy] [c:co ~aoe subtlety pvp|toggle combat][c:nc ~aoe subtlety pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2131, 'strategy:rogue aoe assassination pve', 1, 'aoe assassination pve [h:object|strategy] [c:co ~aoe assassination pve|toggle combat][c:nc ~aoe assassination pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2132, 'strategy:rogue aoe assassination pvp', 1, 'aoe assassination pvp [h:object|strategy] [c:co ~aoe assassination pvp|toggle combat][c:nc ~aoe assassination pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2133, 'strategy:rogue aoe subtlety pvp', 1, 'aoe subtlety pvp [h:object|strategy] [c:co ~aoe subtlety pvp|toggle combat][c:nc ~aoe subtlety pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:rogue aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2134, 'strategy:rogue assassination', 1, 'assassination [h:object|strategy] [c:co ~assassination|toggle combat][c:nc ~assassination|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:rogue update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:rogue update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:rogue update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:rogue update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:rogue update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:rogue update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (2135, 'strategy:warlock aoe affliction pve', 1, 'aoe affliction pve [h:object|strategy] [c:co ~aoe affliction pve|toggle combat][c:nc ~aoe affliction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:warlock rain of fire|rain of fire] (20.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warlock siphon life on attacker|siphon life on attacker] do [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000)\r\nOn: [h:trigger:warlock unstable affliction on attacker|unstable affliction on attacker] do [h:action:warlock unstable affliction on attacker|unstable affliction on attacker] (24.000)', '', '', '', '', '', '', '', '', '', 0), + (2135, 'strategy:warlock aoe affliction pve', 1, 'aoe affliction pve [h:object|strategy] [c:co ~aoe affliction pve|toggle combat][c:nc ~aoe affliction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:warlock rain of fire|rain of fire] (20.000)\r\nOn: [h:trigger:warlock siphon life on attacker|siphon life on attacker] do [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000)', '', '', '', '', '', '', '', '', '', 0), (2136, 'strategy:rogue poison off wound', 1, 'poison off wound [h:object|strategy] [c:co ~poison off wound|toggle combat][c:nc ~poison off wound|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply wound poison main hand|apply wound poison main hand] do [h:action:rogue apply wound poison|apply wound poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2137, 'strategy:rogue buff', 1, 'buff [h:object|strategy] [c:co ~buff|toggle combat][c:nc ~buff|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (2138, 'strategy:rogue cc assassination raid', 1, 'cc assassination raid [h:object|strategy] [c:co ~cc assassination raid|toggle combat][c:nc ~cc assassination raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)', '', '', '', '', '', '', '', '', '', 0), - (2139, 'strategy:rogue buff subtlety pvp', 1, 'buff subtlety pvp [h:object|strategy] [c:co ~buff subtlety pvp|toggle combat][c:nc ~buff subtlety pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2139, 'strategy:rogue buff subtlety pvp', 1, 'buff subtlety pvp [h:object|strategy] [c:co ~buff subtlety pvp|toggle combat][c:nc ~buff subtlety pvp|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), (2140, 'strategy:rogue cc assassination pve', 1, 'cc assassination pve [h:object|strategy] [c:co ~cc assassination pve|toggle combat][c:nc ~cc assassination pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)', '', '', '', '', '', '', '', '', '', 0), - (2141, 'strategy:rogue stealth assassination pvp', 1, 'stealth assassination pvp [h:object|strategy] [c:co ~stealth assassination pvp|toggle combat][c:nc ~stealth assassination pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)[h:action:rogue unstealth|unstealth] (20.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2141, 'strategy:rogue stealth assassination pvp', 1, 'stealth assassination pvp [h:object|strategy] [c:co ~stealth assassination pvp|toggle combat][c:nc ~stealth assassination pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)[h:action:rogue unstealth|unstealth] (20.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2142, 'strategy:rogue poison main anesthetic', 1, 'poison main anesthetic [h:object|strategy] [c:co ~poison main anesthetic|toggle combat][c:nc ~poison main anesthetic|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply anesthetic poison main hand|apply anesthetic poison main hand] do [h:action:rogue apply anesthetic poison|apply anesthetic poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2143, 'strategy:rogue cc subtlety pvp', 1, 'cc subtlety pvp [h:object|strategy] [c:co ~cc subtlety pvp|toggle combat][c:nc ~cc subtlety pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2144, 'strategy:rogue combat pve', 1, 'combat pve [h:object|strategy] [c:co ~combat pve|toggle combat][c:nc ~combat pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:rogue cloak of shadows|cloak of shadows] do [h:action:rogue cloak of shadows|cloak of shadows] (42.000)\r\nDefault:[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)[h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (21.000)\r\nOn: [h:trigger:rogue riposte|riposte] do [h:action:rogue riposte|riposte] (23.000)\r\nOn: [h:trigger:rogue rupture|rupture] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sinister strike|sinister strike] do [h:action:rogue sinister strike|sinister strike] (10.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2145, 'strategy:rogue combat raid', 1, 'combat raid [h:object|strategy] [c:co ~combat raid|toggle combat][c:nc ~combat raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:rogue feint|feint] (50.000)\r\nOn: [h:trigger:rogue cloak of shadows|cloak of shadows] do [h:action:rogue cloak of shadows|cloak of shadows] (42.000)\r\nDefault:[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)[h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (21.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:rogue riposte|riposte] do [h:action:rogue riposte|riposte] (23.000)\r\nOn: [h:trigger:rogue rupture|rupture] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sinister strike|sinister strike] do [h:action:rogue sinister strike|sinister strike] (10.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2143, 'strategy:rogue cc subtlety pvp', 1, 'cc subtlety pvp [h:object|strategy] [c:co ~cc subtlety pvp|toggle combat][c:nc ~cc subtlety pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:rogue kick on enemy healer|kick on enemy healer] do [h:action:rogue kick on enemy healer|kick on enemy healer] (42.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue kick|kick] (41.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:rogue gouge|gouge] (40.000)\r\nOn: [h:trigger:rogue sap|sap] do [h:action:rogue sap|sap] (41.000)', '', '', '', '', '', '', '', '', '', 0), + (2144, 'strategy:rogue combat pve', 1, 'combat pve [h:object|strategy] [c:co ~combat pve|toggle combat][c:nc ~combat pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue riposte|riposte] do [h:action:rogue riposte|riposte] (23.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (21.000)\r\nOn: [h:trigger:rogue rupture|rupture] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sinister strike|sinister strike] do [h:action:rogue sinister strike|sinister strike] (10.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (22.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2145, 'strategy:rogue combat raid', 1, 'combat raid [h:object|strategy] [c:co ~combat raid|toggle combat][c:nc ~combat raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:rogue riposte|riposte] do [h:action:rogue riposte|riposte] (23.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:rogue feint|feint] (50.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (21.000)\r\nOn: [h:trigger:high threat|high threat] do [h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:rogue rupture|rupture] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sinister strike|sinister strike] do [h:action:rogue sinister strike|sinister strike] (10.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (22.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2146, 'strategy:rogue poisons combat pvp', 1, 'poisons combat pvp [h:object|strategy] [c:co ~poisons combat pvp|toggle combat][c:nc ~poisons combat pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand] do [h:action:rogue apply crippling poison|apply crippling poison] (10.000)\r\nOn: [h:trigger:rogue apply mind poison main hand|apply mind poison main hand] do [h:action:rogue apply mind poison|apply mind poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2147, 'strategy:rogue poison main deadly', 1, 'poison main deadly [h:object|strategy] [c:co ~poison main deadly|toggle combat][c:nc ~poison main deadly|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] do [h:action:rogue apply deadly poison|apply deadly poison] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2148, 'strategy:rogue stealth assassination pve', 1, 'stealth assassination pve [h:object|strategy] [c:co ~stealth assassination pve|toggle combat][c:nc ~stealth assassination pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2149, 'strategy:rogue stealth assassination raid', 1, 'stealth assassination raid [h:object|strategy] [c:co ~stealth assassination raid|toggle combat][c:nc ~stealth assassination raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2150, 'strategy:rogue stealth combat pvp', 1, 'stealth combat pvp [h:object|strategy] [c:co ~stealth combat pvp|toggle combat][c:nc ~stealth combat pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)[h:action:rogue unstealth|unstealth] (20.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2151, 'strategy:rogue stealth combat raid', 1, 'stealth combat raid [h:object|strategy] [c:co ~stealth combat raid|toggle combat][c:nc ~stealth combat raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2152, 'strategy:rogue subtlety raid', 1, 'subtlety raid [h:object|strategy] [c:co ~subtlety raid|toggle combat][c:nc ~subtlety raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)[h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue cloak of shadows|cloak of shadows] do [h:action:rogue cloak of shadows|cloak of shadows] (42.000)\r\nDefault:[h:action:melee|melee] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:rogue enemy out of melee range|enemy out of melee range] do [h:action:rogue shadowstep|shadowstep] (23.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:rogue feint|feint] (50.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ghostly strike|ghostly strike] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2153, 'strategy:shaman aoe enhancement raid', 1, 'aoe enhancement raid [h:object|strategy] [c:co ~aoe enhancement raid|toggle combat][c:nc ~aoe enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman fire nova|fire nova] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2148, 'strategy:rogue stealth assassination pve', 1, 'stealth assassination pve [h:object|strategy] [c:co ~stealth assassination pve|toggle combat][c:nc ~stealth assassination pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2149, 'strategy:rogue stealth assassination raid', 1, 'stealth assassination raid [h:object|strategy] [c:co ~stealth assassination raid|toggle combat][c:nc ~stealth assassination raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2150, 'strategy:rogue stealth combat pvp', 1, 'stealth combat pvp [h:object|strategy] [c:co ~stealth combat pvp|toggle combat][c:nc ~stealth combat pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:rogue sprint|sprint] (20.000)[h:action:rogue unstealth|unstealth] (20.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2151, 'strategy:rogue stealth combat raid', 1, 'stealth combat raid [h:object|strategy] [c:co ~stealth combat raid|toggle combat][c:nc ~stealth combat raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ambush|ambush] (13.000)\r\nOn: [h:trigger:rogue kick|kick] do [h:action:rogue cheap shot|cheap shot] (11.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue cheap shot|cheap shot] (12.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue stealth|stealth] (90.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue check stealth|check stealth] (20.000)\r\nOn: [h:trigger:rogue stealth|stealth] do [h:action:rogue unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2152, 'strategy:rogue subtlety raid', 1, 'subtlety raid [h:object|strategy] [c:co ~subtlety raid|toggle combat][c:nc ~subtlety raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue eviscerate|eviscerate] (22.000)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:rogue rupture|rupture] (20.000)\r\nOn: [h:trigger:rogue sprint|sprint] do [h:action:rogue sprint|sprint] (21.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:low health|low health] do [h:action:rogue evasion|evasion] (90.000)[h:action:rogue feint|feint] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:rogue blind|blind] (92.000)[h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:high threat|high threat] do [h:action:rogue vanish|vanish] (90.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:rogue feint|feint] (50.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:rogue trigger|trigger] do [h:action:rogue ghostly strike|ghostly strike] (12.000)\r\nOn: [h:trigger:rogue slice and dice|slice and dice] do [h:action:rogue slice and dice|slice and dice] (21.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2153, 'strategy:shaman aoe enhancement raid', 1, 'aoe enhancement raid [h:object|strategy] [c:co ~aoe enhancement raid|toggle combat][c:nc ~aoe enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman fire nova|fire nova] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2154, 'strategy:shaman totem earth stoneskin', 1, 'totem earth stoneskin [h:object|strategy] [c:co ~totem earth stoneskin|toggle combat][c:nc ~totem earth stoneskin|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman stoneskin totem|stoneskin totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2155, 'strategy:shaman buff enhancement pve', 1, 'buff enhancement pve [h:object|strategy] [c:co ~buff enhancement pve|toggle combat][c:nc ~buff enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (20.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (20.000)\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (10.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2156, 'strategy:shaman aoe elemental raid', 1, 'aoe elemental raid [h:object|strategy] [c:co ~aoe elemental raid|toggle combat][c:nc ~aoe elemental raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman chain lightning|chain lightning] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2157, 'strategy:shaman aoe enhancement pve', 1, 'aoe enhancement pve [h:object|strategy] [c:co ~aoe enhancement pve|toggle combat][c:nc ~aoe enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman fire nova|fire nova] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2158, 'strategy:shaman aoe enhancement pvp', 1, 'aoe enhancement pvp [h:object|strategy] [c:co ~aoe enhancement pvp|toggle combat][c:nc ~aoe enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman fire nova|fire nova] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2155, 'strategy:shaman buff enhancement pve', 1, 'buff enhancement pve [h:object|strategy] [c:co ~buff enhancement pve|toggle combat][c:nc ~buff enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2156, 'strategy:shaman aoe elemental raid', 1, 'aoe elemental raid [h:object|strategy] [c:co ~aoe elemental raid|toggle combat][c:nc ~aoe elemental raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman chain lightning|chain lightning] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2157, 'strategy:shaman aoe enhancement pve', 1, 'aoe enhancement pve [h:object|strategy] [c:co ~aoe enhancement pve|toggle combat][c:nc ~aoe enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman fire nova|fire nova] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2158, 'strategy:shaman aoe enhancement pvp', 1, 'aoe enhancement pvp [h:object|strategy] [c:co ~aoe enhancement pvp|toggle combat][c:nc ~aoe enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:oil of immolation|oil of immolation] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:shaman fire nova|fire nova] (20.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:shaman aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2159, 'strategy:shaman buff', 1, 'buff [h:object|strategy] [c:co ~buff|toggle combat][c:nc ~buff|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (2160, 'strategy:shaman cure elemental pve', 1, 'cure elemental pve [h:object|strategy] [c:co ~cure elemental pve|toggle combat][c:nc ~cure elemental pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (2161, 'strategy:shaman buff enhancement pvp', 1, 'buff enhancement pvp [h:object|strategy] [c:co ~buff enhancement pvp|toggle combat][c:nc ~buff enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (20.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (20.000)\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (10.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2162, 'strategy:shaman elemental pve', 1, 'elemental pve [h:object|strategy] [c:co ~elemental pve|toggle combat][c:nc ~elemental pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)\r\nDefault:[h:action:shaman lightning bolt|lightning bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:shaman ready to remove totems|ready to remove totems] do [h:action:shaman totemic recall|totemic recall] (10.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2163, 'strategy:shaman buff restoration pvp', 1, 'buff restoration pvp [h:object|strategy] [c:co ~buff restoration pvp|toggle combat][c:nc ~buff restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (20.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (20.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2164, 'strategy:shaman buff restoration raid', 1, 'buff restoration raid [h:object|strategy] [c:co ~buff restoration raid|toggle combat][c:nc ~buff restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman bloodlust|bloodlust] do [h:action:shaman bloodlust|bloodlust] (20.000)\r\nOn: [h:trigger:shaman earth shield on tank|earth shield on tank] do [h:action:shaman earth shield on party|earth shield on party] (20.000)\r\nOn: [h:trigger:shaman heroism|heroism] do [h:action:shaman heroism|heroism] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (20.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman earth shield on tank|earth shield on tank] do [h:action:shaman earth shield on party|earth shield on party] (10.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water shield|water shield] do [h:action:shaman water shield|water shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2165, 'strategy:shaman cure elemental pvp', 1, 'cure elemental pvp [h:object|strategy] [c:co ~cure elemental pvp|toggle combat][c:nc ~cure elemental pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (2166, 'strategy:shaman cure elemental raid', 1, 'cure elemental raid [h:object|strategy] [c:co ~cure elemental raid|toggle combat][c:nc ~cure elemental raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), - (2167, 'strategy:shaman cure enhancement pvp', 1, 'cure enhancement pvp [h:object|strategy] [c:co ~cure enhancement pvp|toggle combat][c:nc ~cure enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2160, 'strategy:shaman cure elemental pve', 1, 'cure elemental pve [h:object|strategy] [c:co ~cure elemental pve|toggle combat][c:nc ~cure elemental pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2161, 'strategy:shaman buff enhancement pvp', 1, 'buff enhancement pvp [h:object|strategy] [c:co ~buff enhancement pvp|toggle combat][c:nc ~buff enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman lightning shield|lightning shield] do [h:action:shaman lightning shield|lightning shield] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman windfury weapon|windfury weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2162, 'strategy:shaman elemental pve', 1, 'elemental pve [h:object|strategy] [c:co ~elemental pve|toggle combat][c:nc ~elemental pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nDefault:[h:action:shaman lightning bolt|lightning bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2163, 'strategy:shaman buff restoration pvp', 1, 'buff restoration pvp [h:object|strategy] [c:co ~buff restoration pvp|toggle combat][c:nc ~buff restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2164, 'strategy:shaman buff restoration raid', 1, 'buff restoration raid [h:object|strategy] [c:co ~buff restoration raid|toggle combat][c:nc ~buff restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman rockbiter weapon|rockbiter weapon] do [h:action:shaman earthliving weapon|earthliving weapon] (10.000)\r\nOn: [h:trigger:shaman water breathing|water breathing] do [h:action:shaman water breathing|water breathing] (10.000)\r\nOn: [h:trigger:shaman water breathing on party on party|water breathing on party on party] do [h:action:shaman water breathing on party|water breathing on party] (10.000)\r\nOn: [h:trigger:shaman water walking|water walking] do [h:action:shaman water walking|water walking] (10.000)\r\nOn: [h:trigger:shaman water walking on party on party|water walking on party on party] do [h:action:shaman water walking on party|water walking on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2165, 'strategy:shaman cure elemental pvp', 1, 'cure elemental pvp [h:object|strategy] [c:co ~cure elemental pvp|toggle combat][c:nc ~cure elemental pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2166, 'strategy:shaman cure elemental raid', 1, 'cure elemental raid [h:object|strategy] [c:co ~cure elemental raid|toggle combat][c:nc ~cure elemental raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2167, 'strategy:shaman cure enhancement pvp', 1, 'cure enhancement pvp [h:object|strategy] [c:co ~cure enhancement pvp|toggle combat][c:nc ~cure enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), (2168, 'strategy:shaman totem earth stoneclaw', 1, 'totem earth stoneclaw [h:object|strategy] [c:co ~totem earth stoneclaw|toggle combat][c:nc ~totem earth stoneclaw|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman stoneclaw totem|stoneclaw totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2169, 'strategy:shaman restoration pve', 1, 'restoration pve [h:object|strategy] [c:co ~restoration pve|toggle combat][c:nc ~restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman riptide|riptide] (80.000)[h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (81.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:shaman chain heal|chain heal] (70.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)[h:action:shaman riptide on party|riptide on party] (80.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)\r\nNon combat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (80.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (80.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:shaman ready to remove totems|ready to remove totems] do [h:action:shaman totemic recall|totemic recall] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2170, 'strategy:shaman cure enhancement raid', 1, 'cure enhancement raid [h:object|strategy] [c:co ~cure enhancement raid|toggle combat][c:nc ~cure enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit|cleanse spirit] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party] (50.000)\r\nOn: [h:trigger:shaman cleanse spirit|cleanse spirit] do [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2169, 'strategy:shaman restoration pve', 1, 'restoration pve [h:object|strategy] [c:co ~restoration pve|toggle combat][c:nc ~restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (81.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)[h:action:shaman riptide|riptide] (80.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:shaman mana tide totem|mana tide totem] (90.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (81.000)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:shaman chain heal|chain heal] (70.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman riptide on party|riptide on party] (80.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (80.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (80.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (90.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2170, 'strategy:shaman cure enhancement raid', 1, 'cure enhancement raid [h:object|strategy] [c:co ~cure enhancement raid|toggle combat][c:nc ~cure enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease|cure disease] (50.000)\r\nOn: [h:trigger:shaman cure disease|cure disease] do [h:action:shaman cure disease on party|cure disease on party] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison|cure poison] (50.000)\r\nOn: [h:trigger:shaman cure poison|cure poison] do [h:action:shaman cure poison on party|cure poison on party] (50.000)', '', '', '', '', '', '', '', '', '', 0), (2171, 'strategy:shaman elemental', 1, 'elemental [h:object|strategy] [c:co ~elemental|toggle combat][c:nc ~elemental|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:shaman update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:shaman update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:shaman update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:shaman update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:shaman update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:shaman update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (2172, 'strategy:shaman elemental pvp', 1, 'elemental pvp [h:object|strategy] [c:co ~elemental pvp|toggle combat][c:nc ~elemental pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)\r\nDefault:[h:action:shaman lightning bolt|lightning bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (20.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:shaman ready to remove totems|ready to remove totems] do [h:action:shaman totemic recall|totemic recall] (10.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2172, 'strategy:shaman elemental pvp', 1, 'elemental pvp [h:object|strategy] [c:co ~elemental pvp|toggle combat][c:nc ~elemental pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman chain lightning|chain lightning] do [h:action:shaman chain lightning|chain lightning] (21.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:shaman fire nova|fire nova] (20.000)\r\nDefault:[h:action:shaman lightning bolt|lightning bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2173, 'trigger:self res', 1, 'self res [h:object|trigger] [c:self res|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|self resurrect] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (2174, 'strategy:shaman enhancement pve', 1, 'enhancement pve [h:object|strategy] [c:co ~enhancement pve|toggle combat][c:nc ~enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:shaman stormstrike|stormstrike] (10.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:shaman ready to remove totems|ready to remove totems] do [h:action:shaman totemic recall|totemic recall] (10.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2174, 'strategy:shaman enhancement pve', 1, 'enhancement pve [h:object|strategy] [c:co ~enhancement pve|toggle combat][c:nc ~enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman earth shock|earth shock] do [h:action:shaman earth shock|earth shock] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:shaman stormstrike|stormstrike] do [h:action:shaman stormstrike|stormstrike] (11.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2175, 'strategy:shaman totem air windfury', 1, 'totem air windfury [h:object|strategy] [c:co ~totem air windfury|toggle combat][c:nc ~totem air windfury|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman windfury totem|windfury totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2176, 'strategy:shaman restoration pvp', 1, 'restoration pvp [h:object|strategy] [c:co ~restoration pvp|toggle combat][c:nc ~restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman riptide|riptide] (80.000)[h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (81.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:shaman chain heal|chain heal] (70.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)[h:action:shaman riptide on party|riptide on party] (80.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)\r\nNon combat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (80.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (80.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (20.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (60.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:shaman ready to remove totems|ready to remove totems] do [h:action:shaman totemic recall|totemic recall] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2177, 'strategy:mage arcane raid', 1, 'arcane raid [h:object|strategy] [c:co ~arcane raid|toggle combat][c:nc ~arcane raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage arcane blast|arcane blast] do [h:action:mage arcane blast|arcane blast] (11.000)\r\nOn: [h:trigger:high threat|high threat] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mage have aggro|have aggro] do [h:action:shoot|shoot] (20.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (21.000)[h:action:mage evocation|evocation] (20.000)\r\nOn: [h:trigger:mage missile barrage|missile barrage] do [h:action:mage arcane missiles|arcane missiles] (10.000)\r\nOn: [h:trigger:mage spellsteal|spellsteal] do [h:action:mage spellsteal|spellsteal] (40.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage my attacker count|my attacker count] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (21.000)\r\nDefault:[h:action:mage arcane missiles|arcane missiles] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] do [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] do [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000)\r\nOn: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] do [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] do [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] do [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nOn: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] do [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000)\r\nOn: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] do [h:action:mage remove glyph of frostbolt|remove glyph of frostbolt] (11.000)\r\nOn: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] do [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] do [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] do [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2176, 'strategy:shaman restoration pvp', 1, 'restoration pvp [h:object|strategy] [c:co ~restoration pvp|toggle combat][c:nc ~restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (81.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)[h:action:shaman riptide|riptide] (80.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:shaman mana tide totem|mana tide totem] (90.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (81.000)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:shaman chain heal|chain heal] (70.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:shaman purge|purge] do [h:action:shaman purge|purge] (50.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman riptide on party|riptide on party] (80.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:shaman lesser healing wave on party|lesser healing wave on party] (60.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:shaman lesser healing wave|lesser healing wave] (60.000)\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:shaman healing wave|healing wave] (80.000)\r\nOn: [h:trigger:low health|low health] do [h:action:shaman healing wave|healing wave] (70.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:shaman healing wave on party|healing wave on party] (80.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:shaman ancestral spirit|ancestral spirit] (90.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:shaman ghost wolf|ghost wolf] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2177, 'strategy:mage arcane raid', 1, 'arcane raid [h:object|strategy] [c:co ~arcane raid|toggle combat][c:nc ~arcane raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:high threat|high threat] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:mage have aggro|have aggro] do [h:action:shoot|shoot] (29.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (24.000)[h:action:mage evocation|evocation] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage pyroblast|pyroblast] (21.000)[h:action:mage frostbolt|frostbolt] (20.000)\r\nOn: [h:trigger:mage my attacker count|my attacker count] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:mage arcane missiles|arcane missiles] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2178, 'strategy:shaman totem fire magma', 1, 'totem fire magma [h:object|strategy] [c:co ~totem fire magma|toggle combat][c:nc ~totem fire magma|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman magma totem|magma totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2179, 'strategy:shaman totem fire nova', 1, 'totem fire nova [h:object|strategy] [c:co ~totem fire nova|toggle combat][c:nc ~totem fire nova|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman fire nova|fire nova] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2180, 'strategy:shaman totems enhancement pvp', 1, 'totems enhancement pvp [h:object|strategy] [c:co ~totems enhancement pvp|toggle combat][c:nc ~totems enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman windfury totem|windfury totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman flametongue totem|flametongue totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2181, 'strategy:warlock cc destruction pve', 1, 'cc destruction pve [h:object|strategy] [c:co ~cc destruction pve|toggle combat][c:nc ~cc destruction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock shadowfury|shadowfury] do [h:action:warlock shadowfury|shadowfury] (41.000)\r\nOn: [h:trigger:warlock shadowfury on snare target|shadowfury on snare target] do [h:action:warlock shadowfury on snare target|shadowfury on snare target] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2180, 'strategy:shaman totems enhancement pvp', 1, 'totems enhancement pvp [h:object|strategy] [c:co ~totems enhancement pvp|toggle combat][c:nc ~totems enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman windfury totem|windfury totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman flametongue totem|flametongue totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] do [h:action:shaman magma totem|magma totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman mana spring totem|mana spring totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2181, 'strategy:warlock cc destruction pve', 1, 'cc destruction pve [h:object|strategy] [c:co ~cc destruction pve|toggle combat][c:nc ~cc destruction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:warlock spell lock|spell lock] do [h:action:warlock spell lock|spell lock] (46.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)', '', '', '', '', '', '', '', '', '', 0), (2182, 'strategy:shaman totems restoration raid', 1, 'totems restoration raid [h:object|strategy] [c:co ~totems restoration raid|toggle combat][c:nc ~totems restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] do [h:action:shaman wrath of air totem|wrath of air totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] do [h:action:shaman strength of earth totem|strength of earth totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] do [h:action:shaman flametongue totem|flametongue totem] (20.000)\r\nOn: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] do [h:action:shaman healing stream totem|healing stream totem] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2183, 'strategy:mage cc arcane pve', 1, 'cc arcane pve [h:object|strategy] [c:co ~cc arcane pve|toggle combat][c:nc ~cc arcane pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2184, 'trigger:warlock life tap', 1, 'life tap [h:object|trigger] [c:life tap|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), + (2184, 'trigger:warlock life tap', 1, 'life tap [h:object|trigger] [c:life tap|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock life tap|life tap] (23.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), (2185, 'strategy:mage aoe', 1, 'aoe [h:object|strategy] [c:co ~aoe|toggle combat][c:nc ~aoe|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (2186, 'strategy:mage aoe fire pve', 1, 'aoe fire pve [h:object|strategy] [c:co ~aoe fire pve|toggle combat][c:nc ~aoe fire pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage blizzard|blizzard] (20.000)\r\nOn: [h:trigger:mage living bomb|living bomb] do [h:action:mage living bomb|living bomb] (22.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)[h:action:mage flamestrike|flamestrike] (21.000)', '', '', '', '', '', '', '', '', '', 0), - (2187, 'strategy:mage aoe fire raid', 1, 'aoe fire raid [h:object|strategy] [c:co ~aoe fire raid|toggle combat][c:nc ~aoe fire raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage blizzard|blizzard] (20.000)\r\nOn: [h:trigger:mage living bomb|living bomb] do [h:action:mage living bomb|living bomb] (22.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)[h:action:mage flamestrike|flamestrike] (21.000)', '', '', '', '', '', '', '', '', '', 0), - (2188, 'strategy:mage aoe arcane pvp', 1, 'aoe arcane pvp [h:object|strategy] [c:co ~aoe arcane pvp|toggle combat][c:nc ~aoe arcane pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy too close for spell|enemy too close for spell] do [h:action:mage arcane explosion|arcane explosion] (20.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2189, 'strategy:mage aoe frost pve', 1, 'aoe frost pve [h:object|strategy] [c:co ~aoe frost pve|toggle combat][c:nc ~aoe frost pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (40.000)[h:action:mage blizzard|blizzard] (21.000)[h:action:mage flamestrike|flamestrike] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2186, 'strategy:mage aoe fire pve', 1, 'aoe fire pve [h:object|strategy] [c:co ~aoe fire pve|toggle combat][c:nc ~aoe fire pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage blizzard|blizzard] (20.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:mage flamestrike|flamestrike] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2187, 'strategy:mage aoe fire raid', 1, 'aoe fire raid [h:object|strategy] [c:co ~aoe fire raid|toggle combat][c:nc ~aoe fire raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage blizzard|blizzard] (20.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:mage flamestrike|flamestrike] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2188, 'strategy:mage aoe arcane pvp', 1, 'aoe arcane pvp [h:object|strategy] [c:co ~aoe arcane pvp|toggle combat][c:nc ~aoe arcane pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy too close for spell|enemy too close for spell] do [h:action:mage arcane explosion|arcane explosion] (20.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2189, 'strategy:mage aoe frost pve', 1, 'aoe frost pve [h:object|strategy] [c:co ~aoe frost pve|toggle combat][c:nc ~aoe frost pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:mage aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:mage blizzard|blizzard] (21.000)[h:action:mage flamestrike|flamestrike] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2190, 'strategy:mage cc arcane raid', 1, 'cc arcane raid [h:object|strategy] [c:co ~cc arcane raid|toggle combat][c:nc ~cc arcane raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2191, 'action:shaman flametongue totem', 1, 'flametongue totem [h:object|action] [c:do flametongue totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totem fire flametongue|totem fire flametongue]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (2192, 'strategy:mage arcane pve', 1, 'arcane pve [h:object|strategy] [c:co ~arcane pve|toggle combat][c:nc ~arcane pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (21.000)[h:action:mage evocation|evocation] (20.000)\r\nOn: [h:trigger:mage arcane blast|arcane blast] do [h:action:mage arcane blast|arcane blast] (11.000)\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mage missile barrage|missile barrage] do [h:action:mage arcane missiles|arcane missiles] (10.000)\r\nOn: [h:trigger:mage spellsteal|spellsteal] do [h:action:mage spellsteal|spellsteal] (40.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (21.000)\r\nDefault:[h:action:mage arcane missiles|arcane missiles] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] do [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] do [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000)\r\nOn: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] do [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] do [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] do [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nOn: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] do [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000)\r\nOn: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] do [h:action:mage remove glyph of frostbolt|remove glyph of frostbolt] (11.000)\r\nOn: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] do [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] do [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] do [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2193, 'strategy:mage buff arcane pve', 1, 'buff arcane pve [h:object|strategy] [c:co ~buff arcane pve|toggle combat][c:nc ~buff arcane pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage arcane power|arcane power] do [h:action:mage arcane power|arcane power] (22.000)\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage presence of mind|presence of mind] (21.000)\r\nOn: [h:trigger:mage mirror image|mirror image] do [h:action:mage mirror image|mirror image] (21.000)\r\nOn: [h:trigger:mage molten armor|molten armor] do [h:action:mage molten armor|molten armor] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (12.000)\r\nOn: [h:trigger:mage molten armor|molten armor] do [h:action:mage molten armor|molten armor] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2194, 'strategy:mage buff arcane raid', 1, 'buff arcane raid [h:object|strategy] [c:co ~buff arcane raid|toggle combat][c:nc ~buff arcane raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage arcane power|arcane power] do [h:action:mage arcane power|arcane power] (22.000)\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage presence of mind|presence of mind] (21.000)\r\nOn: [h:trigger:mage mirror image|mirror image] do [h:action:mage mirror image|mirror image] (21.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (12.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2195, 'strategy:mage buff frost pve', 1, 'buff frost pve [h:object|strategy] [c:co ~buff frost pve|toggle combat][c:nc ~buff frost pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage cold snap|cold snap] do [h:action:mage cold snap|cold snap] (23.000)\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage ice barrier|ice barrier] do [h:action:mage ice barrier|ice barrier] (20.000)\r\nOn: [h:trigger:mage icy veins|icy veins] do [h:action:mage icy veins|icy veins] (21.000)\r\nOn: [h:trigger:mage mirror image|mirror image] do [h:action:mage mirror image|mirror image] (21.000)\r\nOn: [h:trigger:mage molten armor|molten armor] do [h:action:mage molten armor|molten armor] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (12.000)\r\nOn: [h:trigger:mage molten armor|molten armor] do [h:action:mage molten armor|molten armor] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2191, 'action:shaman flametongue totem', 1, 'flametongue totem [h:object|action] [c:do flametongue totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totem fire flametongue|totem fire flametongue]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] with relevance (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (2192, 'strategy:mage arcane pve', 1, 'arcane pve [h:object|strategy] [c:co ~arcane pve|toggle combat][c:nc ~arcane pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (24.000)[h:action:mage evocation|evocation] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage pyroblast|pyroblast] (21.000)[h:action:mage frostbolt|frostbolt] (20.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:mage arcane missiles|arcane missiles] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2193, 'strategy:mage buff arcane pve', 1, 'buff arcane pve [h:object|strategy] [c:co ~buff arcane pve|toggle combat][c:nc ~buff arcane pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:mage mana shield|mana shield] (20.000)\r\nOn: [h:trigger:mage mage armor|mage armor] do [h:action:mage mage armor|mage armor] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (12.000)\r\nOn: [h:trigger:mage mage armor|mage armor] do [h:action:mage mage armor|mage armor] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2194, 'strategy:mage buff arcane raid', 1, 'buff arcane raid [h:object|strategy] [c:co ~buff arcane raid|toggle combat][c:nc ~buff arcane raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:mage mana shield|mana shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2195, 'strategy:mage buff frost pve', 1, 'buff frost pve [h:object|strategy] [c:co ~buff frost pve|toggle combat][c:nc ~buff frost pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage ice barrier|ice barrier] do [h:action:mage ice barrier|ice barrier] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:mage mana shield|mana shield] (20.000)\r\nOn: [h:trigger:mage mage armor|mage armor] do [h:action:mage mage armor|mage armor] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (12.000)\r\nOn: [h:trigger:mage mage armor|mage armor] do [h:action:mage mage armor|mage armor] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (11.000)', '', '', '', '', '', '', '', '', '', 0), (2196, 'strategy:mage cure fire raid', 1, 'cure fire raid [h:object|strategy] [c:co ~cure fire raid|toggle combat][c:nc ~cure fire raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (51.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (10.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2197, 'strategy:mage buff frost raid', 1, 'buff frost raid [h:object|strategy] [c:co ~buff frost raid|toggle combat][c:nc ~buff frost raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage cold snap|cold snap] do [h:action:mage cold snap|cold snap] (23.000)\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage ice barrier|ice barrier] do [h:action:mage ice barrier|ice barrier] (20.000)\r\nOn: [h:trigger:mage icy veins|icy veins] do [h:action:mage icy veins|icy veins] (21.000)\r\nOn: [h:trigger:mage mirror image|mirror image] do [h:action:mage mirror image|mirror image] (21.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (12.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2197, 'strategy:mage buff frost raid', 1, 'buff frost raid [h:object|strategy] [c:co ~buff frost raid|toggle combat][c:nc ~buff frost raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage fire ward|fire ward] do [h:action:mage fire ward|fire ward] (20.000)\r\nOn: [h:trigger:mage frost ward|frost ward] do [h:action:mage frost ward|frost ward] (20.000)\r\nOn: [h:trigger:mage ice barrier|ice barrier] do [h:action:mage ice barrier|ice barrier] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:mage mana shield|mana shield] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage arcane brilliance on party|arcane brilliance on party] do [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000)\r\nOn: [h:trigger:mage arcane intellect|arcane intellect] do [h:action:mage arcane intellect|arcane intellect] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:mage arcane intellect on party|arcane intellect on party] do [h:action:mage arcane intellect on party|arcane intellect on party] (13.000)\r\nOn: [h:trigger:give food|give food] do [h:action:give food|give food] (11.000)\r\nOn: [h:trigger:give water|give water] do [h:action:give water|give water] (11.000)', '', '', '', '', '', '', '', '', '', 0), (2198, 'strategy:mage cure fire pve', 1, 'cure fire pve [h:object|strategy] [c:co ~cure fire pve|toggle combat][c:nc ~cure fire pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (51.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (10.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2199, 'strategy:mage cc frost pvp', 1, 'cc frost pvp [h:object|strategy] [c:co ~cc frost pvp|toggle combat][c:nc ~cc frost pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage counterspell|counterspell] do [h:action:mage counterspell|counterspell] (41.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:mage counterspell on enemy healer|counterspell on enemy healer] do [h:action:mage counterspell on enemy healer|counterspell on enemy healer] (42.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:mage frost nova|frost nova] (90.000)\r\nOn: [h:trigger:mage polymorph|polymorph] do [h:action:mage polymorph|polymorph] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2200, 'strategy:mage frost pve', 1, 'frost pve [h:object|strategy] [c:co ~frost pve|toggle combat][c:nc ~frost pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mage fingers of frost|fingers of frost] do [h:action:mage deep freeze|deep freeze] (11.000)\r\nOn: [h:trigger:mage ice lance|ice lance] do [h:action:mage ice lance|ice lance] (10.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (21.000)[h:action:mage evocation|evocation] (20.000)\r\nOn: [h:trigger:mage fireball!|fireball!] do [h:action:mage frostfire bolt|frostfire bolt] (12.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage spellsteal|spellsteal] do [h:action:mage spellsteal|spellsteal] (40.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (21.000)\r\nDefault:[h:action:mage frostbolt|frostbolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] do [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] do [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000)\r\nOn: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] do [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] do [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] do [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nOn: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] do [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000)\r\nOn: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] do [h:action:mage remove glyph of frostbolt|remove glyph of frostbolt] (11.000)\r\nOn: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] do [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] do [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] do [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2200, 'strategy:mage frost pve', 1, 'frost pve [h:object|strategy] [c:co ~frost pve|toggle combat][c:nc ~frost pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (24.000)[h:action:mage evocation|evocation] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage pyroblast|pyroblast] (21.000)[h:action:mage frostbolt|frostbolt] (20.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:mage frostbolt|frostbolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2201, 'strategy:mage cure arcane pvp', 1, 'cure arcane pvp [h:object|strategy] [c:co ~cure arcane pvp|toggle combat][c:nc ~cure arcane pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (51.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse|remove curse] (10.000)\r\nOn: [h:trigger:mage remove curse|remove curse] do [h:action:mage remove curse on party|remove curse on party] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2202, 'strategy:mage fire pvp', 1, 'fire pvp [h:object|strategy] [c:co ~fire pvp|toggle combat][c:nc ~fire pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mage hot streak|hot streak] do [h:action:mage pyroblast|pyroblast] (12.000)\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage frostbolt|frostbolt] (10.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:enemy player ten yards|enemy player ten yards] do [h:action:mage blast wave|blast wave] (16.000)\r\nOn: [h:trigger:mage living bomb|living bomb] do [h:action:mage living bomb|living bomb] (13.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (21.000)[h:action:mage evocation|evocation] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage improved scorch|improved scorch] do [h:action:mage scorch|scorch] (11.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage spellsteal|spellsteal] do [h:action:mage spellsteal|spellsteal] (40.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:mage fire blast|fire blast] (20.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (21.000)\r\nDefault:[h:action:mage fireball|fireball] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] do [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] do [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000)\r\nOn: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] do [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] do [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] do [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nOn: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] do [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000)\r\nOn: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] do [h:action:mage remove glyph of frostbolt|remove glyph of frostbolt] (11.000)\r\nOn: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] do [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] do [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] do [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2203, 'strategy:mage fire raid', 1, 'fire raid [h:object|strategy] [c:co ~fire raid|toggle combat][c:nc ~fire raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:high threat|high threat] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage frostbolt|frostbolt] (10.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:enemy player ten yards|enemy player ten yards] do [h:action:mage blast wave|blast wave] (16.000)\r\nOn: [h:trigger:mage have aggro|have aggro] do [h:action:shoot|shoot] (20.000)\r\nOn: [h:trigger:mage living bomb|living bomb] do [h:action:mage living bomb|living bomb] (13.000)\r\nOn: [h:trigger:mage hot streak|hot streak] do [h:action:mage pyroblast|pyroblast] (12.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (21.000)[h:action:mage evocation|evocation] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage my attacker count|my attacker count] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:mage improved scorch|improved scorch] do [h:action:mage scorch|scorch] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage spellsteal|spellsteal] do [h:action:mage spellsteal|spellsteal] (40.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (21.000)\r\nDefault:[h:action:mage fireball|fireball] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] do [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] do [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000)\r\nOn: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] do [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] do [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] do [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nOn: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] do [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000)\r\nOn: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] do [h:action:mage remove glyph of frostbolt|remove glyph of frostbolt] (11.000)\r\nOn: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] do [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] do [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] do [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2204, 'strategy:mage frost raid', 1, 'frost raid [h:object|strategy] [c:co ~frost raid|toggle combat][c:nc ~frost raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:high threat|high threat] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mage fingers of frost|fingers of frost] do [h:action:mage deep freeze|deep freeze] (11.000)\r\nOn: [h:trigger:mage fireball!|fireball!] do [h:action:mage frostfire bolt|frostfire bolt] (12.000)\r\nOn: [h:trigger:mage have aggro|have aggro] do [h:action:shoot|shoot] (20.000)\r\nOn: [h:trigger:mage ice lance|ice lance] do [h:action:mage ice lance|ice lance] (10.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (21.000)[h:action:mage evocation|evocation] (20.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage my attacker count|my attacker count] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage spellsteal|spellsteal] do [h:action:mage spellsteal|spellsteal] (40.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (21.000)\r\nDefault:[h:action:mage frostbolt|frostbolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] do [h:action:mage learn glyph of mirror image|learn glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] do [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000)\r\nOn: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] do [h:action:mage learn glyph of frostbolt|learn glyph of frostbolt] (11.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] do [h:action:mage learn glyph of living bomb|learn glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] do [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nOn: [h:trigger:mage remove glyph of fireball|remove glyph of fireball] do [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000)\r\nOn: [h:trigger:mage remove glyph of frostbolt|remove glyph of frostbolt] do [h:action:mage remove glyph of frostbolt|remove glyph of frostbolt] (11.000)\r\nOn: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] do [h:action:mage remove glyph of living bomb|remove glyph of living bomb] (11.000)\r\nOn: [h:trigger:mage remove glyph of mirror image|remove glyph of mirror image] do [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000)\r\nOn: [h:trigger:mage remove glyph of molten armor|remove glyph of molten armor] do [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2202, 'strategy:mage fire pvp', 1, 'fire pvp [h:object|strategy] [c:co ~fire pvp|toggle combat][c:nc ~fire pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage frostbolt|frostbolt] (10.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (24.000)[h:action:mage evocation|evocation] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage pyroblast|pyroblast] (21.000)[h:action:mage frostbolt|frostbolt] (20.000)\r\nOn: [h:trigger:mage no fire vulnerability|no fire vulnerability] do [h:action:mage scorch|scorch] (12.000)\r\nOn: [h:trigger:mage pyroblast|pyroblast] do [h:action:mage pyroblast|pyroblast] (11.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:mage fire blast|fire blast] (20.000)[h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:mage fireball|fireball] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2203, 'strategy:mage fire raid', 1, 'fire raid [h:object|strategy] [c:co ~fire raid|toggle combat][c:nc ~fire raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:high threat|high threat] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:mage fire spells locked|fire spells locked] do [h:action:mage frostbolt|frostbolt] (10.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:mage have aggro|have aggro] do [h:action:shoot|shoot] (29.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (24.000)[h:action:mage evocation|evocation] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage pyroblast|pyroblast] (21.000)[h:action:mage frostbolt|frostbolt] (20.000)\r\nOn: [h:trigger:mage my attacker count|my attacker count] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:mage no fire vulnerability|no fire vulnerability] do [h:action:mage scorch|scorch] (12.000)\r\nOn: [h:trigger:mage pyroblast|pyroblast] do [h:action:mage pyroblast|pyroblast] (11.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:mage fireball|fireball] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2204, 'strategy:mage frost raid', 1, 'frost raid [h:object|strategy] [c:co ~frost raid|toggle combat][c:nc ~frost raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:high threat|high threat] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:mage blink|blink] do [h:action:mage blink|blink] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:critical health|critical health] do [h:action:mage ice block|ice block] (91.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:mage have aggro|have aggro] do [h:action:shoot|shoot] (29.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:mage mana gem|mana gem] (24.000)[h:action:mage evocation|evocation] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage pyroblast|pyroblast] (21.000)[h:action:mage frostbolt|frostbolt] (20.000)\r\nOn: [h:trigger:mage my attacker count|my attacker count] do [h:action:mage invisibility|invisibility] (40.000)\r\nOn: [h:trigger:mage target low health|target low health] do [h:action:mage fire blast|fire blast] (22.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:mage frostbolt|frostbolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:mage no drink trigger|no drink trigger] do [h:action:mage conjure water|conjure water] (10.000)\r\nOn: [h:trigger:mage no food trigger|no food trigger] do [h:action:mage conjure food|conjure food] (10.000)\r\nOn: [h:trigger:mage no mana gem trigger|no mana gem trigger] do [h:action:mage conjure mana gem|conjure mana gem] (10.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2205, 'strategy:warlock affliction', 1, 'affliction [h:object|strategy] [c:co ~affliction|toggle combat][c:nc ~affliction|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warlock update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warlock update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warlock update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:warlock update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:warlock update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:warlock update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), - (2206, 'strategy:warlock affliction pve', 1, 'affliction pve [h:object|strategy] [c:co ~affliction pve|toggle combat][c:nc ~affliction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:warlock dark pact|dark pact] (22.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:warlock siphon life|siphon life] do [h:action:warlock siphon life|siphon life] (10.000)\r\nOn: [h:trigger:warlock unstable affliction|unstable affliction] do [h:action:warlock unstable affliction|unstable affliction] (11.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2207, 'strategy:warlock affliction pvp', 1, 'affliction pvp [h:object|strategy] [c:co ~affliction pvp|toggle combat][c:nc ~affliction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:warlock dark pact|dark pact] (22.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:warlock siphon life|siphon life] do [h:action:warlock siphon life|siphon life] (10.000)\r\nOn: [h:trigger:warlock unstable affliction|unstable affliction] do [h:action:warlock unstable affliction|unstable affliction] (11.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2208, 'strategy:warlock affliction raid', 1, 'affliction raid [h:object|strategy] [c:co ~affliction raid|toggle combat][c:nc ~affliction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:warlock dark pact|dark pact] (22.000)\r\nOn: [h:trigger:warlock have aggro|have aggro] do [h:action:shoot|shoot] (29.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:warlock soulshatter|soulshatter] (40.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:warlock siphon life|siphon life] do [h:action:warlock siphon life|siphon life] (10.000)\r\nOn: [h:trigger:warlock unstable affliction|unstable affliction] do [h:action:warlock unstable affliction|unstable affliction] (11.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2209, 'strategy:warlock aoe affliction raid', 1, 'aoe affliction raid [h:object|strategy] [c:co ~aoe affliction raid|toggle combat][c:nc ~aoe affliction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:warlock rain of fire|rain of fire] (20.000)[h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:warlock siphon life on attacker|siphon life on attacker] do [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000)\r\nOn: [h:trigger:warlock unstable affliction on attacker|unstable affliction on attacker] do [h:action:warlock unstable affliction on attacker|unstable affliction on attacker] (24.000)', '', '', '', '', '', '', '', '', '', 0), - (2210, 'strategy:warlock demonology raid', 1, 'demonology raid [h:object|strategy] [c:co ~demonology raid|toggle combat][c:nc ~demonology raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:warlock soulshatter|soulshatter] (40.000)\r\nOn: [h:trigger:warlock have aggro|have aggro] do [h:action:shoot|shoot] (29.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), - (2211, 'strategy:warlock cc destruction raid', 1, 'cc destruction raid [h:object|strategy] [c:co ~cc destruction raid|toggle combat][c:nc ~cc destruction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock shadowfury|shadowfury] do [h:action:warlock shadowfury|shadowfury] (41.000)\r\nOn: [h:trigger:warlock shadowfury on snare target|shadowfury on snare target] do [h:action:warlock shadowfury on snare target|shadowfury on snare target] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2212, 'strategy:warlock aoe demonology raid', 1, 'aoe demonology raid [h:object|strategy] [c:co ~aoe demonology raid|toggle combat][c:nc ~aoe demonology raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:warlock rain of fire|rain of fire] (20.000)[h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2213, 'strategy:warlock aoe destruction pvp', 1, 'aoe destruction pvp [h:object|strategy] [c:co ~aoe destruction pvp|toggle combat][c:nc ~aoe destruction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:warlock rain of fire|rain of fire] (20.000)[h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2214, 'strategy:warlock aoe destruction raid', 1, 'aoe destruction raid [h:object|strategy] [c:co ~aoe destruction raid|toggle combat][c:nc ~aoe destruction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)[h:action:warlock seed of corruption on attacker|seed of corruption on attacker] (22.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:warlock rain of fire|rain of fire] (20.000)[h:action:throw grenade|throw grenade] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2206, 'strategy:warlock affliction pve', 1, 'affliction pve [h:object|strategy] [c:co ~affliction pve|toggle combat][c:nc ~affliction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock sacrifice|sacrifice] (90.000)[h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:warlock dark pact|dark pact] (22.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warlock siphon life|siphon life] do [h:action:warlock siphon life|siphon life] (10.000)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:initialize pet|initialize pet] (11.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2207, 'strategy:warlock affliction pvp', 1, 'affliction pvp [h:object|strategy] [c:co ~affliction pvp|toggle combat][c:nc ~affliction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock sacrifice|sacrifice] (90.000)[h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:warlock dark pact|dark pact] (22.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:warlock siphon life|siphon life] do [h:action:warlock siphon life|siphon life] (10.000)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:warlock shadowburn|shadowburn] (20.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:initialize pet|initialize pet] (11.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2208, 'strategy:warlock affliction raid', 1, 'affliction raid [h:object|strategy] [c:co ~affliction raid|toggle combat][c:nc ~affliction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock have aggro|have aggro] do [h:action:shoot|shoot] (29.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock sacrifice|sacrifice] (90.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:low mana|low mana] do [h:action:warlock dark pact|dark pact] (22.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warlock siphon life|siphon life] do [h:action:warlock siphon life|siphon life] (10.000)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:initialize pet|initialize pet] (11.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2209, 'strategy:warlock aoe affliction raid', 1, 'aoe affliction raid [h:object|strategy] [c:co ~aoe affliction raid|toggle combat][c:nc ~aoe affliction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:warlock rain of fire|rain of fire] (20.000)\r\nOn: [h:trigger:warlock siphon life on attacker|siphon life on attacker] do [h:action:warlock siphon life on attacker|siphon life on attacker] (23.000)', '', '', '', '', '', '', '', '', '', 0), + (2210, 'strategy:warlock demonology raid', 1, 'demonology raid [h:object|strategy] [c:co ~demonology raid|toggle combat][c:nc ~demonology raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock have aggro|have aggro] do [h:action:shoot|shoot] (29.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock sacrifice|sacrifice] (90.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:initialize pet|initialize pet] (11.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2211, 'strategy:warlock cc destruction raid', 1, 'cc destruction raid [h:object|strategy] [c:co ~cc destruction raid|toggle combat][c:nc ~cc destruction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:warlock spell lock|spell lock] do [h:action:warlock spell lock|spell lock] (46.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)', '', '', '', '', '', '', '', '', '', 0), + (2212, 'strategy:warlock aoe demonology raid', 1, 'aoe demonology raid [h:object|strategy] [c:co ~aoe demonology raid|toggle combat][c:nc ~aoe demonology raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:warlock rain of fire|rain of fire] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2213, 'strategy:warlock aoe destruction pvp', 1, 'aoe destruction pvp [h:object|strategy] [c:co ~aoe destruction pvp|toggle combat][c:nc ~aoe destruction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:warlock rain of fire|rain of fire] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2214, 'strategy:warlock aoe destruction raid', 1, 'aoe destruction raid [h:object|strategy] [c:co ~aoe destruction raid|toggle combat][c:nc ~aoe destruction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock corruption on attacker|corruption on attacker] do [h:action:warlock corruption on attacker|corruption on attacker] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:warlock aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:warlock rain of fire|rain of fire] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2215, 'strategy:warlock buff', 1, 'buff [h:object|strategy] [c:co ~buff|toggle combat][c:nc ~buff|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), - (2216, 'strategy:warlock buff affliction pve', 1, 'buff affliction pve [h:object|strategy] [c:co ~buff affliction pve|toggle combat][c:nc ~buff affliction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2217, 'action:hunter flare', 1, 'flare [h:object|action] [c:do flare|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (65.000) for [h:strategy:hunter dps|dps]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (10.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (2218, 'action:paladin pve blessing on party', 1, 'pve blessing on party [h:object|action] [c:do pve blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]', '', '', '', '', '', '', '', '', '', 0), - (2219, 'strategy:warlock buff affliction raid', 1, 'buff affliction raid [h:object|strategy] [c:co ~buff affliction raid|toggle combat][c:nc ~buff affliction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2220, 'strategy:warlock buff demonology pve', 1, 'buff demonology pve [h:object|strategy] [c:co ~buff demonology pve|toggle combat][c:nc ~buff demonology pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2221, 'strategy:warlock buff demonology pvp', 1, 'buff demonology pvp [h:object|strategy] [c:co ~buff demonology pvp|toggle combat][c:nc ~buff demonology pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2222, 'strategy:warlock pet affliction pvp', 1, 'pet affliction pvp [h:object|strategy] [c:co ~pet affliction pvp|toggle combat][c:nc ~pet affliction pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon succubus|summon succubus] (10.000)[h:action:warlock summon felhunter|summon felhunter] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2223, 'strategy:warlock buff demonology raid', 1, 'buff demonology raid [h:object|strategy] [c:co ~buff demonology raid|toggle combat][c:nc ~buff demonology raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2224, 'strategy:warlock curse agony', 1, 'curse agony [h:object|strategy] [c:co ~curse agony|toggle combat][c:nc ~curse agony|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of agony|curse of agony] do [h:action:warlock curse of agony|curse of agony] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2225, 'strategy:warlock buff destruction pve', 1, 'buff destruction pve [h:object|strategy] [c:co ~buff destruction pve|toggle combat][c:nc ~buff destruction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2226, 'strategy:warlock buff destruction pvp', 1, 'buff destruction pvp [h:object|strategy] [c:co ~buff destruction pvp|toggle combat][c:nc ~buff destruction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), - (2227, 'action:paladin raid greater blessing on party', 1, 'raid greater blessing on party [h:object|action] [c:do raid greater blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (2228, 'strategy:warlock curse doom', 1, 'curse doom [h:object|strategy] [c:co ~curse doom|toggle combat][c:nc ~curse doom|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of doom|curse of doom] do [h:action:warlock curse of doom|curse of doom] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2229, 'strategy:warlock cc affliction raid', 1, 'cc affliction raid [h:object|strategy] [c:co ~cc affliction raid|toggle combat][c:nc ~cc affliction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2230, 'strategy:warlock cc demonology pve', 1, 'cc demonology pve [h:object|strategy] [c:co ~cc demonology pve|toggle combat][c:nc ~cc demonology pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)', '', '', '', '', '', '', '', '', '', 0), - (2231, 'strategy:warlock cc demonology pvp', 1, 'cc demonology pvp [h:object|strategy] [c:co ~cc demonology pvp|toggle combat][c:nc ~cc demonology pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock fear pvp|fear pvp] do [h:action:warlock fear|fear] (41.000)', '', '', '', '', '', '', '', '', '', 0), - (2232, 'action:warrior update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior fury|fury]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior fury|fury]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior protection|protection]', '', '', '', '', '', '', '', '', '', 0), - (2233, 'strategy:warlock cc destruction pvp', 1, 'cc destruction pvp [h:object|strategy] [c:co ~cc destruction pvp|toggle combat][c:nc ~cc destruction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock fear pvp|fear pvp] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock shadowfury|shadowfury] do [h:action:warlock shadowfury|shadowfury] (41.000)\r\nOn: [h:trigger:warlock shadowfury on snare target|shadowfury on snare target] do [h:action:warlock shadowfury on snare target|shadowfury on snare target] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2216, 'strategy:warlock buff affliction pve', 1, 'buff affliction pve [h:object|strategy] [c:co ~buff affliction pve|toggle combat][c:nc ~buff affliction pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:warlock item target|item target] do [h:action:warlock item target|item target] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2217, 'action:hunter flare', 1, 'flare [h:object|action] [c:do flare|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (21.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (21.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (21.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (21.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (21.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (21.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (21.000) for [h:strategy:hunter survival pve|survival pve]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (21.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (21.000) for [h:strategy:hunter survival raid|survival raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (13.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (13.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (13.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (13.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (13.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (13.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (13.000) for [h:strategy:hunter survival pve|survival pve]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (13.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nTriggers from: [h:trigger:hunter stealthed nearby|stealthed nearby] with relevance (13.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2218, 'action:paladin pve blessing on party', 1, 'pve blessing on party [h:object|action] [c:do pve blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (2219, 'strategy:warlock buff affliction raid', 1, 'buff affliction raid [h:object|strategy] [c:co ~buff affliction raid|toggle combat][c:nc ~buff affliction raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:warlock item target|item target] do [h:action:warlock item target|item target] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2220, 'strategy:warlock buff demonology pve', 1, 'buff demonology pve [h:object|strategy] [c:co ~buff demonology pve|toggle combat][c:nc ~buff demonology pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:warlock item target|item target] do [h:action:warlock item target|item target] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2221, 'strategy:warlock buff demonology pvp', 1, 'buff demonology pvp [h:object|strategy] [c:co ~buff demonology pvp|toggle combat][c:nc ~buff demonology pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:warlock item target|item target] do [h:action:warlock item target|item target] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2222, 'strategy:warlock pet affliction pvp', 1, 'pet affliction pvp [h:object|strategy] [c:co ~pet affliction pvp|toggle combat][c:nc ~pet affliction pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon felhunter|summon felhunter] (10.000)[h:action:warlock summon succubus|summon succubus] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2223, 'strategy:warlock buff demonology raid', 1, 'buff demonology raid [h:object|strategy] [c:co ~buff demonology raid|toggle combat][c:nc ~buff demonology raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:warlock item target|item target] do [h:action:warlock item target|item target] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2224, 'strategy:warlock curse agony', 1, 'curse agony [h:object|strategy] [c:co ~curse agony|toggle combat][c:nc ~curse agony|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of agony|curse of agony] do [h:action:warlock curse of agony|curse of agony] (20.000)\r\nOn: [h:trigger:warlock curse of agony on attacker|curse of agony on attacker] do [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2225, 'strategy:warlock buff destruction pve', 1, 'buff destruction pve [h:object|strategy] [c:co ~buff destruction pve|toggle combat][c:nc ~buff destruction pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:warlock item target|item target] do [h:action:warlock item target|item target] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2226, 'strategy:warlock buff destruction pvp', 1, 'buff destruction pvp [h:object|strategy] [c:co ~buff destruction pvp|toggle combat][c:nc ~buff destruction pvp|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock demon armor|demon armor] do [h:action:warlock fel armor|fel armor] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:warlock item target|item target] do [h:action:warlock item target|item target] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2227, 'action:paladin raid greater blessing on party', 1, 'raid greater blessing on party [h:object|action] [c:do raid greater blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]', '', '', '', '', '', '', '', '', '', 0), + (2228, 'strategy:warlock curse doom', 1, 'curse doom [h:object|strategy] [c:co ~curse doom|toggle combat][c:nc ~curse doom|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of doom|curse of doom] do [h:action:warlock curse of doom|curse of doom] (20.000)\r\nOn: [h:trigger:warlock curse of doom on attacker|curse of doom on attacker] do [h:action:warlock curse of doom on attacker|curse of doom on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2229, 'strategy:warlock cc affliction raid', 1, 'cc affliction raid [h:object|strategy] [c:co ~cc affliction raid|toggle combat][c:nc ~cc affliction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:warlock spell lock|spell lock] do [h:action:warlock spell lock|spell lock] (46.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)', '', '', '', '', '', '', '', '', '', 0), + (2230, 'strategy:warlock cc demonology pve', 1, 'cc demonology pve [h:object|strategy] [c:co ~cc demonology pve|toggle combat][c:nc ~cc demonology pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:warlock spell lock|spell lock] do [h:action:warlock spell lock|spell lock] (46.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)', '', '', '', '', '', '', '', '', '', 0), + (2231, 'strategy:warlock cc demonology pvp', 1, 'cc demonology pvp [h:object|strategy] [c:co ~cc demonology pvp|toggle combat][c:nc ~cc demonology pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:warlock spell lock|spell lock] do [h:action:warlock spell lock|spell lock] (46.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock fear pvp|fear pvp] do [h:action:warlock fear|fear] (41.000)', '', '', '', '', '', '', '', '', '', 0), + (2232, 'action:warrior update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior fury|fury]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:warrior fury|fury]', '', '', '', '', '', '', '', '', '', 0), + (2233, 'strategy:warlock cc destruction pvp', 1, 'cc destruction pvp [h:object|strategy] [c:co ~cc destruction pvp|toggle combat][c:nc ~cc destruction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock banish|banish] do [h:action:warlock banish|banish] (42.000)\r\nOn: [h:trigger:warlock death coil on snare target|death coil on snare target] do [h:action:warlock death coil on snare target|death coil on snare target] (43.000)\r\nOn: [h:trigger:warlock death coil|death coil] do [h:action:warlock death coil|death coil] (45.000)\r\nOn: [h:trigger:enemy ten yards|enemy ten yards] do [h:action:warlock howl of terror|howl of terror] (40.000)\r\nOn: [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] do [h:action:warlock death coil on enemy healer|death coil on enemy healer] (44.000)\r\nOn: [h:trigger:warlock spell lock|spell lock] do [h:action:warlock spell lock|spell lock] (46.000)\r\nOn: [h:trigger:warlock fear|fear] do [h:action:warlock fear|fear] (41.000)\r\nOn: [h:trigger:warlock fear pvp|fear pvp] do [h:action:warlock fear|fear] (41.000)', '', '', '', '', '', '', '', '', '', 0), (2234, 'strategy:warlock curse affliction pve', 1, 'curse affliction pve [h:object|strategy] [c:co ~curse affliction pve|toggle combat][c:nc ~curse affliction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock no curse|no curse] do [h:action:warlock curse of agony|curse of agony] (12.000)\r\nOn: [h:trigger:warlock no curse on attacker|no curse on attacker] do [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), - (2235, 'strategy:warlock destruction raid', 1, 'destruction raid [h:object|strategy] [c:co ~destruction raid|toggle combat][c:nc ~destruction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock backlash|backlash] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:warlock conflagrate|conflagrate] do [h:action:warlock conflagrate|conflagrate] (12.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:warlock have aggro|have aggro] do [h:action:shoot|shoot] (29.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock immolate|immolate] do [h:action:warlock immolate|immolate] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:warlock soulshatter|soulshatter] (40.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nDefault:[h:action:warlock incinerate|incinerate] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2235, 'strategy:warlock destruction raid', 1, 'destruction raid [h:object|strategy] [c:co ~destruction raid|toggle combat][c:nc ~destruction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock have aggro|have aggro] do [h:action:shoot|shoot] (29.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:warlock conflagrate|conflagrate] do [h:action:warlock conflagrate|conflagrate] (12.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock immolate|immolate] do [h:action:warlock immolate|immolate] (11.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock sacrifice|sacrifice] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:initialize pet|initialize pet] (11.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2236, 'strategy:warlock curse destruction pvp', 1, 'curse destruction pvp [h:object|strategy] [c:co ~curse destruction pvp|toggle combat][c:nc ~curse destruction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock no curse|no curse] do [h:action:warlock curse of agony|curse of agony] (12.000)\r\nOn: [h:trigger:warlock no curse on attacker|no curse on attacker] do [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), (2237, 'strategy:warlock curse affliction raid', 1, 'curse affliction raid [h:object|strategy] [c:co ~curse affliction raid|toggle combat][c:nc ~curse affliction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock no curse|no curse] do [h:action:warlock curse of agony|curse of agony] (12.000)\r\nOn: [h:trigger:warlock no curse on attacker|no curse on attacker] do [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), (2238, 'strategy:warlock curse demonology pvp', 1, 'curse demonology pvp [h:object|strategy] [c:co ~curse demonology pvp|toggle combat][c:nc ~curse demonology pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock no curse|no curse] do [h:action:warlock curse of agony|curse of agony] (12.000)\r\nOn: [h:trigger:warlock no curse on attacker|no curse on attacker] do [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), (2239, 'strategy:warlock curse destruction raid', 1, 'curse destruction raid [h:object|strategy] [c:co ~curse destruction raid|toggle combat][c:nc ~curse destruction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock no curse|no curse] do [h:action:warlock curse of agony|curse of agony] (12.000)\r\nOn: [h:trigger:warlock no curse on attacker|no curse on attacker] do [h:action:warlock curse of agony on attacker|curse of agony on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), (2240, 'trigger:paladin greater blessing of wisdom on party', 1, 'greater blessing of wisdom on party [h:object|trigger] [c:greater blessing of wisdom on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin greater blessing of wisdom on party|greater blessing of wisdom on party] (13.000) for [h:strategy:paladin blessing wisdom|blessing wisdom]', '', '', '', '', '', '', '', '', '', 0), - (2241, 'trigger:stunned', 1, 'stunned [h:object|trigger] [c:stunned|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (90.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), - (2242, 'strategy:warlock curse recklessness', 1, 'curse recklessness [h:object|strategy] [c:co ~curse recklessness|toggle combat][c:nc ~curse recklessness|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of recklessness|curse of recklessness] do [h:action:warlock curse of recklessness|curse of recklessness] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2243, 'strategy:warlock curse shadow', 1, 'curse shadow [h:object|strategy] [c:co ~curse shadow|toggle combat][c:nc ~curse shadow|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of shadow|curse of shadow] do [h:action:warlock curse of shadow|curse of shadow] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2244, 'strategy:warlock curse weakness', 1, 'curse weakness [h:object|strategy] [c:co ~curse weakness|toggle combat][c:nc ~curse weakness|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of weakness|curse of weakness] do [h:action:warlock curse of weakness|curse of weakness] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2245, 'strategy:warlock destruction pve', 1, 'destruction pve [h:object|strategy] [c:co ~destruction pve|toggle combat][c:nc ~destruction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock backlash|backlash] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:repop|repop] (0.800)[h:action:hearthstone|hearthstone] (0.900)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:warlock conflagrate|conflagrate] do [h:action:warlock conflagrate|conflagrate] (12.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock immolate|immolate] do [h:action:warlock immolate|immolate] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nDefault:[h:action:warlock incinerate|incinerate] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2241, 'trigger:stunned', 1, 'stunned [h:object|trigger] [c:stunned|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff fury raid|buff fury raid]', '', '', '', '', '', '', '', '', '', 0), + (2242, 'strategy:warlock curse recklessness', 1, 'curse recklessness [h:object|strategy] [c:co ~curse recklessness|toggle combat][c:nc ~curse recklessness|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of recklessness|curse of recklessness] do [h:action:warlock curse of recklessness|curse of recklessness] (20.000)\r\nOn: [h:trigger:warlock curse of recklessness on attacker|curse of recklessness on attacker] do [h:action:warlock curse of recklessness on attacker|curse of recklessness on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2243, 'strategy:warlock curse shadow', 1, 'curse shadow [h:object|strategy] [c:co ~curse shadow|toggle combat][c:nc ~curse shadow|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of shadow|curse of shadow] do [h:action:warlock curse of shadow|curse of shadow] (20.000)\r\nOn: [h:trigger:warlock curse of shadow on attacker|curse of shadow on attacker] do [h:action:warlock curse of shadow on attacker|curse of shadow on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2244, 'strategy:warlock curse weakness', 1, 'curse weakness [h:object|strategy] [c:co ~curse weakness|toggle combat][c:nc ~curse weakness|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock curse of weakness|curse of weakness] do [h:action:warlock curse of weakness|curse of weakness] (20.000)\r\nOn: [h:trigger:warlock curse of weakness on attacker|curse of weakness on attacker] do [h:action:warlock curse of weakness on attacker|curse of weakness on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2245, 'strategy:warlock destruction pve', 1, 'destruction pve [h:object|strategy] [c:co ~destruction pve|toggle combat][c:nc ~destruction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:warlock shadow trance|shadow trance] do [h:action:warlock shadow bolt|shadow bolt] (22.000)\r\nOn: [h:trigger:warlock conflagrate|conflagrate] do [h:action:warlock conflagrate|conflagrate] (12.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:warlock immolate|immolate] do [h:action:warlock immolate|immolate] (11.000)\r\nOn: [h:trigger:warlock drain soul|drain soul] do [h:action:warlock drain soul|drain soul] (21.000)\r\nOn: [h:trigger:warlock corruption|corruption] do [h:action:warlock corruption|corruption] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:warlock sacrifice|sacrifice] (90.000)[h:action:warlock drain life|drain life] (60.000)\r\nOn: [h:trigger:warlock life tap|life tap] do [h:action:warlock life tap|life tap] (23.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:warlock target low health|target low health] do [h:action:warlock shadowburn|shadowburn] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:warlock shadow bolt|shadow bolt] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:warlock item count|item count] do [h:action:warlock create healthstone|create healthstone] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nOn: [h:trigger:often|often] do [h:action:initialize pet|initialize pet] (11.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), (2246, 'strategy:warlock pet affliction raid', 1, 'pet affliction raid [h:object|strategy] [c:co ~pet affliction raid|toggle combat][c:nc ~pet affliction raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon imp|summon imp] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2247, 'strategy:warlock pet destruction pve', 1, 'pet destruction pve [h:object|strategy] [c:co ~pet destruction pve|toggle combat][c:nc ~pet destruction pve|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon voidwalker|summon voidwalker] (11.000)[h:action:warlock summon imp|summon imp] (10.000)', '', '', '', '', '', '', '', '', '', 0), (2248, 'strategy:warlock pet destruction raid', 1, 'pet destruction raid [h:object|strategy] [c:co ~pet destruction raid|toggle combat][c:nc ~pet destruction raid|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:no pet|no pet] do [h:action:warlock summon imp|summon imp] (10.000)', '', '', '', '', '', '', '', '', '', 0), @@ -2271,20 +2271,20 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (2250, 'strategy:warlock pet felhunter', 1, 'pet felhunter [h:object|strategy] [c:co ~pet felhunter|toggle combat][c:nc ~pet felhunter|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock no felhunter|no felhunter] do [h:action:warlock summon felhunter|summon felhunter] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2251, 'strategy:warlock pet succubus', 1, 'pet succubus [h:object|strategy] [c:co ~pet succubus|toggle combat][c:nc ~pet succubus|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock no succubus|no succubus] do [h:action:warlock summon succubus|summon succubus] (20.000)', '', '', '', '', '', '', '', '', '', 0), (2252, 'strategy:warlock pet voidwalker', 1, 'pet voidwalker [h:object|strategy] [c:co ~pet voidwalker|toggle combat][c:nc ~pet voidwalker|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger:warlock no voidwalker|no voidwalker] do [h:action:warlock summon voidwalker|summon voidwalker] (20.000)', '', '', '', '', '', '', '', '', '', 0), - (2253, 'trigger:val', 1, 'val [h:object|trigger] [c:val|trigger now]\r\n\r\nDead state behavior:\r\nExecutes: [h:action|spirit healer] (102.000) for [h:strategy|dead]', '', '', '', '', '', '', '', '', '', 0), + (2253, 'trigger:val', 1, 'val [h:object|trigger] [c:val|trigger now]\r\n\r\nDead state behavior:\r\nExecutes: [h:action|repop] (104.000) for [h:strategy|dead]', '', '', '', '', '', '', '', '', '', 0), (2254, 'trigger:bg free', 1, 'bg free [h:object|trigger] [c:bg free|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|action] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|action] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|action] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|action] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (2255, 'trigger:lfg', 1, 'lfg [h:object|trigger] [c:lfg|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|lfg] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|lfg] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|lfg] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|lfg] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (2256, 'trigger:fire protection potion ready', 1, 'fire protection potion ready [h:object|trigger] [c:fire protection potion ready|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|fire protection potion] (100.000) for [h:strategy|magmadar]\r\nNon combat behavior:\r\nExecutes: [h:action|fire protection potion] (100.000) for [h:strategy|molten core]', '', '', '', '', '', '', '', '', '', 0), - (2257, 'trigger:rpg', 1, 'rpg [h:object|trigger] [c:rpg|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg cancel] (1.001)[h:action|rpg stay] (1.001)[h:action|rpg work] (1.001)[h:action|rpg emote] (1.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), + (2257, 'trigger:rpg', 1, 'rpg [h:object|trigger] [c:rpg|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg stay] (1.001)[h:action|rpg cancel] (1.001)[h:action|rpg work] (1.001)[h:action|rpg emote] (1.001) for [h:strategy|rpg]', '', '', '', '', '', '', '', '', '', 0), (2258, 'trigger:rpg item', 1, 'rpg item [h:object|trigger] [c:rpg item|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg item] (1.001) for [h:strategy|rpg craft]', '', '', '', '', '', '', '', '', '', 0), - (2259, 'list:generic trigger', 1, 'generic triggers : \r\n[h:trigger|accept quest] [h:trigger|accept] [h:trigger|activate taxi] [h:trigger|add all loot] [h:trigger|ah bid] [h:trigger|ah] [h:trigger|all] [h:trigger|aoe] [h:trigger|arcane torrent] [h:trigger|area trigger] [h:trigger|arena team invite]\r\n[h:trigger|at dark portal azeroth] [h:trigger|at dark portal outland] [h:trigger|attack] [h:trigger|b] [h:trigger|bank] [h:trigger|bb] [h:trigger|berserking] [h:trigger|bg active] [h:trigger|bg free] [h:trigger|bg invite active] [h:trigger|bg status]\r\n[h:trigger|bg waiting] [h:trigger|blood fury] [h:trigger|buff] [h:trigger|buy tabard trigger] [h:trigger|c] [h:trigger|can loot] [h:trigger|cannibalize] [h:trigger|cannot equip] [h:trigger|cast] [h:trigger|castnc] [h:trigger|cdebug] [h:trigger|chat]\r\n[h:trigger|cheat] [h:trigger|check mount state] [h:trigger|co] [h:trigger|collision] [h:trigger|complete quest] [h:trigger|corpse near] [h:trigger|craft] [h:trigger|critical health] [h:trigger|cs] [h:trigger|de] [h:trigger|dead] [h:trigger|debug]\r\n[h:trigger|destroy] [h:trigger|drop] [h:trigger|duel requested] [h:trigger|e] [h:trigger|emote] [h:trigger|end magmadar fight] [h:trigger|end onyxia fight] [h:trigger|enemy flagcarrier near] [h:trigger|enemy is close] [h:trigger|enemy out of melee range]\r\n[h:trigger|enemy player near] [h:trigger|enemy too close for melee] [h:trigger|enemy too close for spell] [h:trigger|enter molten core] [h:trigger|enter onyxia\'s lair] [h:trigger|falling far] [h:trigger|far from current loot]\r\n[h:trigger|far from rpg target] [h:trigger|far from travel target] [h:trigger|fire protection potion ready] [h:trigger|flee] [h:trigger|focus heal] [h:trigger|follow] [h:trigger|formation] [h:trigger|free] [h:trigger|gb] [h:trigger|give leader]\r\n[h:trigger|go] [h:trigger|gossip hello] [h:trigger|grind] [h:trigger|group invite] [h:trigger|group set leader] [h:trigger|guard] [h:trigger|guild accept] [h:trigger|guild demote] [h:trigger|guild invite] [h:trigger|guild join] [h:trigger|guild leader]\r\n[h:trigger|guild leave] [h:trigger|guild promote] [h:trigger|guild remove] [h:trigger|has area debuff] [h:trigger|has nearest adds] [h:trigger|have aggro] [h:trigger|help] [h:trigger|high mana] [h:trigger|hire] [h:trigger|home] [h:trigger|in vehicle]\r\n[h:trigger|inventory change failure] [h:trigger|invite] [h:trigger|item push result] [h:trigger|join] [h:trigger|keep] [h:trigger|leader is afk] [h:trigger|leave large guild trigger] [h:trigger|leave molten core] [h:trigger|leave onyxia\'s lair]\r\n[h:trigger|leave] [h:trigger|levelup] [h:trigger|lfg proposal active] [h:trigger|lfg proposal] [h:trigger|lfg role check] [h:trigger|lfg teleport] [h:trigger|lfg] [h:trigger|ll] [h:trigger|log] [h:trigger|loot available] [h:trigger|loot response]\r\n[h:trigger|loot roll] [h:trigger|loot start roll] [h:trigger|los] [h:trigger|low health] [h:trigger|low mana] [h:trigger|magmadar lava bomb] [h:trigger|mail] [h:trigger|mana tap] [h:trigger|max dps] [h:trigger|mc rune close] [h:trigger|mc rune in sight]\r\n[h:trigger|move long stuck] [h:trigger|move stuck] [h:trigger|nc] [h:trigger|near dark portal] [h:trigger|need world buff] [h:trigger|no attackers] [h:trigger|no possible targets] [h:trigger|no rpg target] [h:trigger|no rti target] [h:trigger|no target]\r\n[h:trigger|no travel target] [h:trigger|not dps aoe target active] [h:trigger|not dps target active] [h:trigger|not enough money] [h:trigger|not enough reputation] [h:trigger|nt] [h:trigger|often] [h:trigger|out of react range] [h:trigger|outfit]\r\n[h:trigger|outnumbered] [h:trigger|panic] [h:trigger|party command] [h:trigger|petition offer] [h:trigger|petition turn in trigger] [h:trigger|player has flag] [h:trigger|position] [h:trigger|possible attack targets] [h:trigger|pull rti] [h:trigger|pull]\r\n[h:trigger|q] [h:trigger|quest objective completed] [h:trigger|quest share] [h:trigger|quests] [h:trigger|r] [h:trigger|ra] [h:trigger|random bot update] [h:trigger|random] [h:trigger|range] [h:trigger|react] [h:trigger|ready check]\r\n[h:trigger|receive emote] [h:trigger|receive text emote] [h:trigger|release spirit] [h:trigger|release] [h:trigger|repair] [h:trigger|reputation] [h:trigger|reset ai] [h:trigger|reset strats] [h:trigger|reset values] [h:trigger|resurrect request]\r\n[h:trigger|return to pull position] [h:trigger|return to stay position] [h:trigger|return] [h:trigger|revive from corpse] [h:trigger|revive] [h:trigger|roll] [h:trigger|rooted] [h:trigger|rpg ah buy] [h:trigger|rpg ah sell] [h:trigger|rpg buy petition]\r\n[h:trigger|rpg buy] [h:trigger|rpg craft] [h:trigger|rpg discover] [h:trigger|rpg duel] [h:trigger|rpg end quest] [h:trigger|rpg get mail] [h:trigger|rpg heal] [h:trigger|rpg home bind] [h:trigger|rpg item] [h:trigger|rpg queue bg] [h:trigger|rpg repair]\r\n[h:trigger|rpg repeat quest] [h:trigger|rpg sell] [h:trigger|rpg spell] [h:trigger|rpg start quest] [h:trigger|rpg taxi] [h:trigger|rpg trade useful] [h:trigger|rpg train] [h:trigger|rpg use] [h:trigger|rpg wander] [h:trigger|rpg] [h:trigger|rti]\r\n[h:trigger|rtsc] [h:trigger|runaway] [h:trigger|s] [h:trigger|save mana] [h:trigger|see spell] [h:trigger|seldom] [h:trigger|self res] [h:trigger|sendmail] [h:trigger|share] [h:trigger|sit] [h:trigger|spell] [h:trigger|spells] [h:trigger|ss]\r\n[h:trigger|stance] [h:trigger|start magmadar fight] [h:trigger|start onyxia fight] [h:trigger|stats] [h:trigger|stay] [h:trigger|stoneform] [h:trigger|stop follow] [h:trigger|summon request] [h:trigger|summon] [h:trigger|t] [h:trigger|talents]\r\n[h:trigger|talk] [h:trigger|tank attack] [h:trigger|target changed] [h:trigger|taxi done] [h:trigger|taxi] [h:trigger|teleport] [h:trigger|timer] [h:trigger|trade status] [h:trigger|trainer] [h:trigger|trigger] [h:trigger|ue] [h:trigger|uninvite guid]\r\n[h:trigger|uninvite] [h:trigger|unknown dungeon] [h:trigger|update follow] [h:trigger|use game object] [h:trigger|use] [h:trigger|val] [h:trigger|very often] [h:trigger|wait for attack safe distance] [h:trigger|wait for attack time] [h:trigger|war stomp]\r\n[h:trigger|warning] [h:trigger|who] [h:trigger|will of the forsaken] [h:trigger|within area trigger] [h:trigger|wts] [h:trigger|xpgain] ', '', '', '', '', '', '', '', '', '', 0), - (2260, 'list:priest trigger', 1, 'priest triggers : \r\n[h:trigger:almost full health|almost full health] [h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck]\r\n[h:trigger:combat start|combat start] [h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:enemy five yards|enemy five yards] [h:trigger:invalid target|invalid target]\r\n[h:trigger:low health|low health] [h:trigger:low mana|low mana] [h:trigger:medium aoe heal|medium aoe heal] [h:trigger:medium health|medium health] [h:trigger:medium mana|medium mana] [h:trigger:medium threat|medium threat] [h:trigger:mounted|mounted]\r\n[h:trigger:near dark portal|near dark portal] [h:trigger:often|often] [h:trigger:party member almost full health|party member almost full health] [h:trigger:party member critical health|party member critical health]\r\n[h:trigger:party member low health|party member low health] [h:trigger:party member medium health|party member medium health] [h:trigger:priest binding heal|binding heal] [h:trigger:priest chastise on snare target|chastise on snare target]\r\n[h:trigger:priest cure disease|cure disease] [h:trigger:priest devouring plague|devouring plague] [h:trigger:priest dispel magic|dispel magic] [h:trigger:priest divine spirit on party|divine spirit on party] [h:trigger:priest divine spirit|divine spirit]\r\n[h:trigger:priest fear ward|fear ward] [h:trigger:priest feedback|feedback] [h:trigger:priest hex of weakness|hex of weakness] [h:trigger:priest holy fire|holy fire] [h:trigger:priest inner fire|inner fire] [h:trigger:priest inner focus|inner focus]\r\n[h:trigger:priest power infusion|power infusion] [h:trigger:priest power word: fortitude on party|power word: fortitude on party] [h:trigger:priest power word: fortitude|power word: fortitude]\r\n[h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] [h:trigger:priest prayer of spirit on party|prayer of spirit on party]\r\n[h:trigger:priest shackle undead|shackle undead] [h:trigger:priest shadow protection on party|shadow protection on party] [h:trigger:priest shadow protection|shadow protection]\r\n[h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] [h:trigger:priest shadow word: pain|shadow word: pain] [h:trigger:priest shadowfiend|shadowfiend] [h:trigger:priest shadowform|shadowform]\r\n[h:trigger:priest shadowguard|shadowguard] [h:trigger:priest silence on enemy healer|silence on enemy healer] [h:trigger:priest silence|silence] [h:trigger:priest starshards|starshards] [h:trigger:priest target low health|target low health]\r\n[h:trigger:priest touch of weakness|touch of weakness] [h:trigger:priest vampiric embrace|vampiric embrace] [h:trigger:priest vampiric touch|vampiric touch] [h:trigger:protect party member|protect party member] [h:trigger:pull end|pull end]\r\n[h:trigger:pull start|pull start] [h:trigger:resurrect|resurrect] [h:trigger:timer|timer] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), - (2261, 'trigger:in raid fight', 1, 'in raid fight [h:object|trigger] [c:in raid fight|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock update raid strats|update raid strats] (100.000) for [h:strategy:warlock affliction|affliction]\r\nExecutes: [h:action:warlock update raid strats|update raid strats] (100.000) for [h:strategy:warlock demonology|demonology]\r\nExecutes: [h:action:warlock update raid strats|update raid strats] (100.000) for [h:strategy:warlock destruction|destruction]\r\nNon combat behavior:\r\nExecutes: [h:action:warlock update raid strats|update raid strats] (100.000) for [h:strategy:warlock affliction|affliction]\r\nExecutes: [h:action:warlock update raid strats|update raid strats] (100.000) for [h:strategy:warlock demonology|demonology]\r\nExecutes: [h:action:warlock update raid strats|update raid strats] (100.000) for [h:strategy:warlock destruction|destruction]', '', '', '', '', '', '', '', '', '', 0), - (2262, 'trigger:warrior greater blessing of salvation', 1, 'greater blessing of salvation [h:object|trigger] [c:greater blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:warrior protection pve|protection pve]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:warrior protection raid|protection raid]', '', '', '', '', '', '', '', '', '', 0), - (2263, 'trigger:paladin greater blessing', 1, 'greater blessing [h:object|trigger] [c:greater blessing|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin pve greater blessing|pve greater blessing] (11.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]\r\nExecutes: [h:action:paladin pve greater blessing|pve greater blessing] (11.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nExecutes: [h:action:paladin pvp greater blessing|pvp greater blessing] (11.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nExecutes: [h:action:paladin pve greater blessing|pve greater blessing] (11.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (11.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nExecutes: [h:action:paladin pvp greater blessing|pvp greater blessing] (11.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (11.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]\r\nExecutes: [h:action:paladin pvp greater blessing|pvp greater blessing] (11.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (11.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (2264, 'trigger:paladin greater blessing on party', 1, 'greater blessing on party [h:object|trigger] [c:greater blessing on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin pve greater blessing on party|pve greater blessing on party] (13.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]\r\nExecutes: [h:action:paladin pve greater blessing on party|pve greater blessing on party] (13.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nExecutes: [h:action:paladin pvp greater blessing on party|pvp greater blessing on party] (13.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nExecutes: [h:action:paladin pve greater blessing on party|pve greater blessing on party] (13.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (13.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nExecutes: [h:action:paladin pvp greater blessing on party|pvp greater blessing on party] (13.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (13.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]\r\nExecutes: [h:action:paladin pvp greater blessing on party|pvp greater blessing on party] (13.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (13.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (2259, 'list:generic trigger', 1, 'generic triggers : \r\n[h:trigger|accept quest] [h:trigger|accept] [h:trigger|activate taxi] [h:trigger|add all loot] [h:trigger|ah bid] [h:trigger|ah] [h:trigger|all] [h:trigger|aoe] [h:trigger|area trigger] [h:trigger|arena team invite] [h:trigger|at dark portal azeroth]\r\n[h:trigger|at dark portal outland] [h:trigger|attack rti] [h:trigger|attack] [h:trigger|b] [h:trigger|bank] [h:trigger|bb] [h:trigger|berserking] [h:trigger|bg active] [h:trigger|bg ended] [h:trigger|bg free] [h:trigger|bg invite active]\r\n[h:trigger|bg status] [h:trigger|bg waiting] [h:trigger|blood fury] [h:trigger|boost target] [h:trigger|buff target] [h:trigger|buff] [h:trigger|buy tabard trigger] [h:trigger|c] [h:trigger|can loot] [h:trigger|cannibalize] [h:trigger|cannot equip]\r\n[h:trigger|cast] [h:trigger|castnc] [h:trigger|cdebug] [h:trigger|chat] [h:trigger|cheat] [h:trigger|check mount state] [h:trigger|co] [h:trigger|collision] [h:trigger|complete quest] [h:trigger|confirm quest] [h:trigger|corpse near] [h:trigger|craft]\r\n[h:trigger|critical health] [h:trigger|cs] [h:trigger|de] [h:trigger|dead] [h:trigger|debug] [h:trigger|destroy] [h:trigger|drop] [h:trigger|duel requested] [h:trigger|e] [h:trigger|emote] [h:trigger|end magmadar fight] [h:trigger|end netherspite fight]\r\n[h:trigger|end onyxia fight] [h:trigger|end prince malchezaar fight] [h:trigger|enemy flagcarrier near] [h:trigger|enemy is close] [h:trigger|enemy out of melee range] [h:trigger|enemy player near] [h:trigger|enemy too close for melee]\r\n[h:trigger|enemy too close for spell] [h:trigger|enter karazhan] [h:trigger|enter molten core] [h:trigger|enter onyxia\'s lair] [h:trigger|falling far] [h:trigger|far from current loot] [h:trigger|far from rpg target] [h:trigger|far from travel target]\r\n[h:trigger|fire protection potion ready] [h:trigger|flee] [h:trigger|focus heal] [h:trigger|follow target] [h:trigger|follow] [h:trigger|formation] [h:trigger|free] [h:trigger|gb] [h:trigger|give leader] [h:trigger|go] [h:trigger|gossip hello]\r\n[h:trigger|grind] [h:trigger|group invite] [h:trigger|group set leader] [h:trigger|guard] [h:trigger|guild accept] [h:trigger|guild demote] [h:trigger|guild invite] [h:trigger|guild join] [h:trigger|guild leader] [h:trigger|guild leave]\r\n[h:trigger|guild promote] [h:trigger|guild remove] [h:trigger|has area debuff] [h:trigger|has nearest adds] [h:trigger|have aggro] [h:trigger|heal target full health] [h:trigger|help] [h:trigger|high mana] [h:trigger|hire] [h:trigger|home]\r\n[h:trigger|honorgain] [h:trigger|in vehicle] [h:trigger|inventory change failure] [h:trigger|invite] [h:trigger|item push result] [h:trigger|join] [h:trigger|jump] [h:trigger|keep] [h:trigger|leader is afk] [h:trigger|leave karazhan]\r\n[h:trigger|leave large guild trigger] [h:trigger|leave molten core] [h:trigger|leave onyxia\'s lair] [h:trigger|leave] [h:trigger|levelup] [h:trigger|lfg proposal active] [h:trigger|lfg proposal] [h:trigger|lfg role check] [h:trigger|lfg teleport]\r\n[h:trigger|lfg] [h:trigger|list ai] [h:trigger|ll] [h:trigger|load ai] [h:trigger|log] [h:trigger|loot available] [h:trigger|loot response] [h:trigger|loot roll] [h:trigger|loot start roll] [h:trigger|los] [h:trigger|low health] [h:trigger|low mana]\r\n[h:trigger|magmadar lava bomb] [h:trigger|mail] [h:trigger|max dps] [h:trigger|mc rune close] [h:trigger|mc rune in sight] [h:trigger|move long stuck] [h:trigger|move stuck] [h:trigger|move style] [h:trigger|nc] [h:trigger|near dark portal]\r\n[h:trigger|need world buff] [h:trigger|netherspite beams cheat need refresh] [h:trigger|netherspite infernal too close] [h:trigger|no attackers] [h:trigger|no possible targets] [h:trigger|no rpg target] [h:trigger|no rti target] [h:trigger|no target]\r\n[h:trigger|no travel target] [h:trigger|not dps aoe target active] [h:trigger|not dps target active] [h:trigger|not enough money] [h:trigger|not enough reputation] [h:trigger|nt] [h:trigger|often] [h:trigger|out of react range] [h:trigger|outfit]\r\n[h:trigger|outnumbered] [h:trigger|panic] [h:trigger|party command] [h:trigger|pet] [h:trigger|petition offer] [h:trigger|petition turn in trigger] [h:trigger|player has flag] [h:trigger|position] [h:trigger|possible attack targets] [h:trigger|pull rti]\r\n[h:trigger|pull] [h:trigger|q] [h:trigger|quest details] [h:trigger|quest reward] [h:trigger|quest share] [h:trigger|quest update add item] [h:trigger|quest update add kill] [h:trigger|quest update complete] [h:trigger|quest update failed timer]\r\n[h:trigger|quest update failed] [h:trigger|quests] [h:trigger|r] [h:trigger|ra] [h:trigger|random bot update] [h:trigger|random jump] [h:trigger|random] [h:trigger|range] [h:trigger|react] [h:trigger|ready check] [h:trigger|receive emote]\r\n[h:trigger|receive text emote] [h:trigger|release spirit] [h:trigger|release] [h:trigger|repair] [h:trigger|reputation] [h:trigger|reset ai] [h:trigger|reset strats] [h:trigger|reset values] [h:trigger|resurrect request]\r\n[h:trigger|return to pull position] [h:trigger|return to stay position] [h:trigger|return] [h:trigger|revive from corpse] [h:trigger|revive target] [h:trigger|revive] [h:trigger|roll] [h:trigger|rooted] [h:trigger|rpg ah buy] [h:trigger|rpg ah sell]\r\n[h:trigger|rpg buy petition] [h:trigger|rpg buy] [h:trigger|rpg craft] [h:trigger|rpg discover] [h:trigger|rpg duel] [h:trigger|rpg enchant] [h:trigger|rpg end quest] [h:trigger|rpg get mail] [h:trigger|rpg heal] [h:trigger|rpg home bind]\r\n[h:trigger|rpg item] [h:trigger|rpg queue bg] [h:trigger|rpg repair] [h:trigger|rpg repeat quest] [h:trigger|rpg sell] [h:trigger|rpg spell] [h:trigger|rpg start quest] [h:trigger|rpg taxi] [h:trigger|rpg trade useful] [h:trigger|rpg train]\r\n[h:trigger|rpg use] [h:trigger|rpg wander] [h:trigger|rpg] [h:trigger|rti] [h:trigger|rtsc jump active] [h:trigger|rtsc] [h:trigger|runaway] [h:trigger|s] [h:trigger|save ai] [h:trigger|save mana] [h:trigger|see spell] [h:trigger|seldom]\r\n[h:trigger|self res] [h:trigger|sendmail] [h:trigger|share] [h:trigger|sit] [h:trigger|spell] [h:trigger|spells] [h:trigger|ss] [h:trigger|stance] [h:trigger|start four horseman fight] [h:trigger|start magmadar fight] [h:trigger|start netherspite fight]\r\n[h:trigger|start onyxia fight] [h:trigger|start prince malchezaar fight] [h:trigger|stats] [h:trigger|stay] [h:trigger|stoneform] [h:trigger|stop follow] [h:trigger|summon request] [h:trigger|summon] [h:trigger|t] [h:trigger|talents] [h:trigger|talk]\r\n[h:trigger|tank assist] [h:trigger|tank attack] [h:trigger|target changed] [h:trigger|taxi done] [h:trigger|taxi] [h:trigger|teleport] [h:trigger|timer] [h:trigger|trade status] [h:trigger|trainer] [h:trigger|trigger] [h:trigger|ue]\r\n[h:trigger|uninvite guid] [h:trigger|uninvite] [h:trigger|unknown dungeon] [h:trigger|update follow] [h:trigger|use game object] [h:trigger|use] [h:trigger|val] [h:trigger|very often] [h:trigger|void zone too close]\r\n[h:trigger|wait for attack safe distance] [h:trigger|wait for attack time] [h:trigger|war stomp] [h:trigger|warning] [h:trigger|who] [h:trigger|will of the forsaken] [h:trigger|within area trigger] [h:trigger|wts] [h:trigger|xpgain] ', '', '', '', '', '', '', '', '', '', 0), + (2260, 'list:priest trigger', 1, 'priest triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:enemy five yards|enemy five yards] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp] [h:trigger:in raid fight|in raid fight]\r\n[h:trigger:invalid target|invalid target] [h:trigger:low health|low health] [h:trigger:medium aoe heal|medium aoe heal] [h:trigger:medium threat|medium threat] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal]\r\n[h:trigger:no mana|no mana] [h:trigger:often|often] [h:trigger:party member almost full health|party member almost full health] [h:trigger:party member critical health|party member critical health]\r\n[h:trigger:party member low health|party member low health] [h:trigger:party member medium health|party member medium health] [h:trigger:priest aoe|aoe] [h:trigger:priest cure disease|cure disease] [h:trigger:priest devouring plague|devouring plague]\r\n[h:trigger:priest dispel magic|dispel magic] [h:trigger:priest divine spirit on party|divine spirit on party] [h:trigger:priest divine spirit|divine spirit] [h:trigger:priest fear ward|fear ward] [h:trigger:priest feedback|feedback]\r\n[h:trigger:priest hex of weakness|hex of weakness] [h:trigger:priest holy fire|holy fire] [h:trigger:priest inner fire|inner fire] [h:trigger:priest inner focus|inner focus] [h:trigger:priest mind blast|mind blast]\r\n[h:trigger:priest power infusion|power infusion] [h:trigger:priest power word: fortitude on party|power word: fortitude on party] [h:trigger:priest power word: fortitude|power word: fortitude]\r\n[h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] [h:trigger:priest prayer of spirit on party|prayer of spirit on party]\r\n[h:trigger:priest shackle undead|shackle undead] [h:trigger:priest shadow protection on party|shadow protection on party] [h:trigger:priest shadow protection|shadow protection]\r\n[h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] [h:trigger:priest shadow word: pain|shadow word: pain] [h:trigger:priest shadowform|shadowform] [h:trigger:priest shadowguard|shadowguard]\r\n[h:trigger:priest silence on enemy healer|silence on enemy healer] [h:trigger:priest silence|silence] [h:trigger:priest smite|smite] [h:trigger:priest touch of weakness|touch of weakness] [h:trigger:priest vampiric embrace|vampiric embrace]\r\n[h:trigger:pull end|pull end] [h:trigger:pull start|pull start] [h:trigger:random|random] [h:trigger:resurrect|resurrect] [h:trigger:target of attacker|target of attacker] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), + (2261, 'trigger:in raid fight', 1, 'in raid fight [h:object|trigger] [c:in raid fight|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid balance|balance]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nNon combat behavior:\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid balance|balance]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid dps feral|dps feral]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid restoration|restoration]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid tank feral|tank feral]\r\nExecutes: [h:action:druid update raid strats|update raid strats] (100.000) for [h:strategy:druid tank feral|tank feral]', '', '', '', '', '', '', '', '', '', 0), + (2262, 'trigger:warrior greater blessing of salvation', 1, 'greater blessing of salvation [h:object|trigger] [c:greater blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:warrior protection pve|protection pve]\r\nNon combat behavior:\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (2263, 'trigger:paladin greater blessing', 1, 'greater blessing [h:object|trigger] [c:greater blessing|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (11.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (11.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nExecutes: [h:action:paladin pvp greater blessing|pvp greater blessing] (11.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nExecutes: [h:action:paladin pvp greater blessing|pvp greater blessing] (11.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nExecutes: [h:action:paladin pve greater blessing|pve greater blessing] (11.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nExecutes: [h:action:paladin pvp greater blessing|pvp greater blessing] (11.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nExecutes: [h:action:paladin pve greater blessing|pve greater blessing] (11.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (11.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]\r\nExecutes: [h:action:paladin pve greater blessing|pve greater blessing] (11.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (2264, 'trigger:paladin greater blessing on party', 1, 'greater blessing on party [h:object|trigger] [c:greater blessing on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (13.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (13.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nExecutes: [h:action:paladin pvp greater blessing on party|pvp greater blessing on party] (13.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nExecutes: [h:action:paladin pvp greater blessing on party|pvp greater blessing on party] (13.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nExecutes: [h:action:paladin pve greater blessing on party|pve greater blessing on party] (13.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nExecutes: [h:action:paladin pvp greater blessing on party|pvp greater blessing on party] (13.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nExecutes: [h:action:paladin pve greater blessing on party|pve greater blessing on party] (13.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nExecutes: [h:action:paladin raid greater blessing on party|raid greater blessing on party] (13.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]\r\nExecutes: [h:action:paladin pve greater blessing on party|pve greater blessing on party] (13.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]', '', '', '', '', '', '', '', '', '', 0), (2265, 'trigger:paladin sanctity aura', 1, 'sanctity aura [h:object|trigger] [c:sanctity aura|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin sanctity aura|sanctity aura] (10.000) for [h:strategy:paladin aura sanctity|aura sanctity]', '', '', '', '', '', '', '', '', '', 0), - (2266, 'trigger:paladin no paladin aura', 1, 'no paladin aura [h:object|trigger] [c:no paladin aura|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin sanctity aura|sanctity aura] (11.000) for [h:strategy:paladin aura retribution pve|aura retribution pve]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin retribution aura|retribution aura] (11.000) for [h:strategy:paladin aura protection raid|aura protection raid]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin concentration aura|concentration aura] (11.000) for [h:strategy:paladin aura holy pve|aura holy pve]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin concentration aura|concentration aura] (11.000) for [h:strategy:paladin aura holy pvp|aura holy pvp]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin concentration aura|concentration aura] (11.000) for [h:strategy:paladin aura holy raid|aura holy raid]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin retribution aura|retribution aura] (11.000) for [h:strategy:paladin aura protection pve|aura protection pve]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin retribution aura|retribution aura] (11.000) for [h:strategy:paladin aura protection pvp|aura protection pvp]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin sanctity aura|sanctity aura] (11.000) for [h:strategy:paladin aura retribution raid|aura retribution raid]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin sanctity aura|sanctity aura] (11.000) for [h:strategy:paladin aura retribution pvp|aura retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (2266, 'trigger:paladin no paladin aura', 1, 'no paladin aura [h:object|trigger] [c:no paladin aura|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin sanctity aura|sanctity aura] (11.000)[h:action:paladin paladin aura|paladin aura] (10.000) for [h:strategy:paladin aura retribution pve|aura retribution pve]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin concentration aura|concentration aura] (11.000) for [h:strategy:paladin aura holy pvp|aura holy pvp]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin concentration aura|concentration aura] (11.000) for [h:strategy:paladin aura holy pve|aura holy pve]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin concentration aura|concentration aura] (11.000) for [h:strategy:paladin aura holy raid|aura holy raid]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin retribution aura|retribution aura] (11.000) for [h:strategy:paladin aura protection pve|aura protection pve]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin retribution aura|retribution aura] (11.000) for [h:strategy:paladin aura protection pvp|aura protection pvp]\r\nExecutes: [h:action:paladin paladin aura|paladin aura] (10.000)[h:action:paladin retribution aura|retribution aura] (11.000) for [h:strategy:paladin aura protection raid|aura protection raid]\r\nExecutes: [h:action:paladin sanctity aura|sanctity aura] (11.000)[h:action:paladin paladin aura|paladin aura] (10.000) for [h:strategy:paladin aura retribution pvp|aura retribution pvp]\r\nExecutes: [h:action:paladin sanctity aura|sanctity aura] (11.000)[h:action:paladin paladin aura|paladin aura] (10.000) for [h:strategy:paladin aura retribution raid|aura retribution raid]', '', '', '', '', '', '', '', '', '', 0), (2267, 'trigger:paladin blessing of kings', 1, 'blessing of kings [h:object|trigger] [c:blessing of kings|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin blessing of kings|blessing of kings] (10.000) for [h:strategy:paladin blessing kings|blessing kings]', '', '', '', '', '', '', '', '', '', 0), (2268, 'trigger:paladin greater blessing of kings', 1, 'greater blessing of kings [h:object|trigger] [c:greater blessing of kings|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin greater blessing of kings|greater blessing of kings] (11.000) for [h:strategy:paladin blessing kings|blessing kings]', '', '', '', '', '', '', '', '', '', 0), (2269, 'trigger:paladin greater blessing of kings on party', 1, 'greater blessing of kings on party [h:object|trigger] [c:greater blessing of kings on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin greater blessing of kings on party|greater blessing of kings on party] (13.000) for [h:strategy:paladin blessing kings|blessing kings]', '', '', '', '', '', '', '', '', '', 0), @@ -2304,131 +2304,132 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (2283, 'trigger:paladin greater blessing of sanctuary on party', 1, 'greater blessing of sanctuary on party [h:object|trigger] [c:greater blessing of sanctuary on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin greater blessing of sanctuary on party|greater blessing of sanctuary on party] (13.000) for [h:strategy:paladin blessing sanctuary|blessing sanctuary]', '', '', '', '', '', '', '', '', '', 0), (2284, 'trigger:paladin blessing of sanctuary on party', 1, 'blessing of sanctuary on party [h:object|trigger] [c:blessing of sanctuary on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin blessing of sanctuary on party|blessing of sanctuary on party] (12.000) for [h:strategy:paladin blessing sanctuary|blessing sanctuary]', '', '', '', '', '', '', '', '', '', 0), (2285, 'trigger:paladin greater blessing of sanctuary', 1, 'greater blessing of sanctuary [h:object|trigger] [c:greater blessing of sanctuary|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin greater blessing of sanctuary|greater blessing of sanctuary] (11.000) for [h:strategy:paladin blessing sanctuary|blessing sanctuary]', '', '', '', '', '', '', '', '', '', 0), - (2286, 'trigger:paladin blessing of salvation', 1, 'blessing of salvation [h:object|trigger] [c:blessing of salvation|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin blessing of salvation|blessing of salvation] (10.000) for [h:strategy:paladin blessing salvation|blessing salvation]', '', '', '', '', '', '', '', '', '', 0), + (2286, 'trigger:paladin blessing of salvation', 1, 'blessing of salvation [h:object|trigger] [c:blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:paladin protection pvp|protection pvp]', '', '', '', '', '', '', '', '', '', 0), (2287, 'trigger:paladin blessing of salvation on party', 1, 'blessing of salvation on party [h:object|trigger] [c:blessing of salvation on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin blessing of salvation on party|blessing of salvation on party] (12.000) for [h:strategy:paladin blessing salvation|blessing salvation]', '', '', '', '', '', '', '', '', '', 0), - (2288, 'trigger:paladin greater blessing of salvation', 1, 'greater blessing of salvation [h:object|trigger] [c:greater blessing of salvation|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin greater blessing of salvation|greater blessing of salvation] (11.000) for [h:strategy:paladin blessing salvation|blessing salvation]', '', '', '', '', '', '', '', '', '', 0), + (2288, 'trigger:paladin greater blessing of salvation', 1, 'greater blessing of salvation [h:object|trigger] [c:greater blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:paladin protection pvp|protection pvp]', '', '', '', '', '', '', '', '', '', 0), (2289, 'trigger:paladin greater blessing of salvation on party', 1, 'greater blessing of salvation on party [h:object|trigger] [c:greater blessing of salvation on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:paladin greater blessing of salvation on party|greater blessing of salvation on party] (13.000) for [h:strategy:paladin blessing salvation|blessing salvation]', '', '', '', '', '', '', '', '', '', 0), (2290, 'action:mage frostfire bolt', 1, 'frostfire bolt [h:object|action] [c:do frostfire bolt|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage fireball!|fireball!] with relevance (12.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage fireball!|fireball!] with relevance (12.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage fireball!|fireball!] with relevance (12.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (2291, 'trigger:party member rooted', 1, 'party member rooted [h:object|trigger] [c:party member rooted|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (2292, 'list:paladin trigger', 1, 'paladin triggers : \r\n[h:trigger:almost full health|almost full health] [h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck]\r\n[h:trigger:combat start|combat start] [h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:enemy is close|enemy is close] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp]\r\n[h:trigger:in raid fight|in raid fight] [h:trigger:invalid target|invalid target] [h:trigger:lose aggro|lose aggro] [h:trigger:low health|low health] [h:trigger:low mana|low mana] [h:trigger:medium health|medium health]\r\n[h:trigger:medium mana|medium mana] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:often|often] [h:trigger:paladin aoe|aoe] [h:trigger:paladin avenger\'s shield|avenger\'s shield]\r\n[h:trigger:paladin blessing of kings on party|blessing of kings on party] [h:trigger:paladin blessing of kings|blessing of kings] [h:trigger:paladin blessing of light on party|blessing of light on party]\r\n[h:trigger:paladin blessing of light|blessing of light] [h:trigger:paladin blessing of might on party|blessing of might on party] [h:trigger:paladin blessing of might|blessing of might]\r\n[h:trigger:paladin blessing of salvation on party|blessing of salvation on party] [h:trigger:paladin blessing of salvation|blessing of salvation] [h:trigger:paladin blessing of sanctuary on party|blessing of sanctuary on party]\r\n[h:trigger:paladin blessing of sanctuary|blessing of sanctuary] [h:trigger:paladin blessing of wisdom on party|blessing of wisdom on party] [h:trigger:paladin blessing of wisdom|blessing of wisdom] [h:trigger:paladin blessing on party|blessing on party]\r\n[h:trigger:paladin blessing|blessing] [h:trigger:paladin cleanse|cleanse] [h:trigger:paladin concentration aura|concentration aura] [h:trigger:paladin crusader aura|crusader aura] [h:trigger:paladin devotion aura|devotion aura]\r\n[h:trigger:paladin divine favor|divine favor] [h:trigger:paladin enemy out of melee range|enemy out of melee range] [h:trigger:paladin fire resistance aura|fire resistance aura] [h:trigger:paladin frost resistance aura|frost resistance aura]\r\n[h:trigger:paladin greater blessing of kings on party|greater blessing of kings on party] [h:trigger:paladin greater blessing of kings|greater blessing of kings] [h:trigger:paladin greater blessing of light on party|greater blessing of light on party]\r\n[h:trigger:paladin greater blessing of light|greater blessing of light] [h:trigger:paladin greater blessing of might on party|greater blessing of might on party] [h:trigger:paladin greater blessing of might|greater blessing of might]\r\n[h:trigger:paladin greater blessing of salvation on party|greater blessing of salvation on party] [h:trigger:paladin greater blessing of salvation|greater blessing of salvation]\r\n[h:trigger:paladin greater blessing of sanctuary on party|greater blessing of sanctuary on party] [h:trigger:paladin greater blessing of sanctuary|greater blessing of sanctuary]\r\n[h:trigger:paladin greater blessing of wisdom on party|greater blessing of wisdom on party] [h:trigger:paladin greater blessing of wisdom|greater blessing of wisdom] [h:trigger:paladin greater blessing on party|greater blessing on party]\r\n[h:trigger:paladin greater blessing|greater blessing] [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy]\r\n[h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] [h:trigger:paladin hammer of justice|hammer of justice] [h:trigger:paladin hand of sacrifice|hand of sacrifice] [h:trigger:paladin holy shield|holy shield]\r\n[h:trigger:paladin judgement of light|judgement of light] [h:trigger:paladin judgement of wisdom|judgement of wisdom] [h:trigger:paladin no paladin aura|no paladin aura]\r\n[h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer] [h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] [h:trigger:paladin repentance|repentance]\r\n[h:trigger:paladin retribution aura|retribution aura] [h:trigger:paladin righteous fury|righteous fury] [h:trigger:paladin sanctity aura|sanctity aura] [h:trigger:paladin seal of justice|seal of justice]\r\n[h:trigger:paladin shadow resistance aura|shadow resistance aura] [h:trigger:paladin target low health|target low health] [h:trigger:paladin the art of war|the art of war] [h:trigger:paladin turn undead|turn undead]\r\n[h:trigger:party member almost full health|party member almost full health] [h:trigger:party member critical health|party member critical health] [h:trigger:party member low health|party member low health]\r\n[h:trigger:party member medium health|party member medium health] [h:trigger:party member rooted|party member rooted] [h:trigger:protect party member|protect party member] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start]\r\n[h:trigger:resurrect|resurrect] [h:trigger:rooted|rooted] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), + (2291, 'trigger:party member rooted', 1, 'party member rooted [h:object|trigger] [c:party member rooted|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]\r\nNon combat behavior:\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection raid|cure protection raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pvp|cure retribution pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pve|cure holy pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy pvp|cure holy pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure holy raid|cure holy raid]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pve|cure protection pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure protection pvp|cure protection pvp]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution pve|cure retribution pve]\r\nExecutes: [h:action:paladin blessing of freedom|blessing of freedom] (50.000) for [h:strategy:paladin cure retribution raid|cure retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (2292, 'list:paladin trigger', 1, 'paladin triggers : \r\n[h:trigger:almost full health|almost full health] [h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck]\r\n[h:trigger:combat start|combat start] [h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:enemy is close|enemy is close] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp]\r\n[h:trigger:in raid fight|in raid fight] [h:trigger:invalid target|invalid target] [h:trigger:lose aggro|lose aggro] [h:trigger:low health|low health] [h:trigger:low mana|low mana] [h:trigger:medium health|medium health]\r\n[h:trigger:medium mana|medium mana] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:often|often] [h:trigger:paladin aoe|aoe] [h:trigger:paladin blessing of kings on party|blessing of kings on party]\r\n[h:trigger:paladin blessing of kings|blessing of kings] [h:trigger:paladin blessing of light on party|blessing of light on party] [h:trigger:paladin blessing of light|blessing of light]\r\n[h:trigger:paladin blessing of might on party|blessing of might on party] [h:trigger:paladin blessing of might|blessing of might] [h:trigger:paladin blessing of salvation on party|blessing of salvation on party]\r\n[h:trigger:paladin blessing of salvation|blessing of salvation] [h:trigger:paladin blessing of sanctuary on party|blessing of sanctuary on party] [h:trigger:paladin blessing of sanctuary|blessing of sanctuary]\r\n[h:trigger:paladin blessing of wisdom on party|blessing of wisdom on party] [h:trigger:paladin blessing of wisdom|blessing of wisdom] [h:trigger:paladin blessing on party|blessing on party] [h:trigger:paladin blessing|blessing]\r\n[h:trigger:paladin cleanse|cleanse] [h:trigger:paladin concentration aura|concentration aura] [h:trigger:paladin consecration|consecration] [h:trigger:paladin crusader aura|crusader aura] [h:trigger:paladin crusader strike|crusader strike]\r\n[h:trigger:paladin devotion aura|devotion aura] [h:trigger:paladin divine favor|divine favor] [h:trigger:paladin enemy out of melee range|enemy out of melee range] [h:trigger:paladin exorcism|exorcism]\r\n[h:trigger:paladin fire resistance aura|fire resistance aura] [h:trigger:paladin frost resistance aura|frost resistance aura] [h:trigger:paladin greater blessing of kings on party|greater blessing of kings on party]\r\n[h:trigger:paladin greater blessing of kings|greater blessing of kings] [h:trigger:paladin greater blessing of light on party|greater blessing of light on party] [h:trigger:paladin greater blessing of light|greater blessing of light]\r\n[h:trigger:paladin greater blessing of might on party|greater blessing of might on party] [h:trigger:paladin greater blessing of might|greater blessing of might]\r\n[h:trigger:paladin greater blessing of salvation on party|greater blessing of salvation on party] [h:trigger:paladin greater blessing of salvation|greater blessing of salvation]\r\n[h:trigger:paladin greater blessing of sanctuary on party|greater blessing of sanctuary on party] [h:trigger:paladin greater blessing of sanctuary|greater blessing of sanctuary]\r\n[h:trigger:paladin greater blessing of wisdom on party|greater blessing of wisdom on party] [h:trigger:paladin greater blessing of wisdom|greater blessing of wisdom] [h:trigger:paladin greater blessing on party|greater blessing on party]\r\n[h:trigger:paladin greater blessing|greater blessing] [h:trigger:paladin hammer of justice on enemy healer|hammer of justice on enemy healer] [h:trigger:paladin hammer of justice on enemy|hammer of justice on enemy]\r\n[h:trigger:paladin hammer of justice on snare target|hammer of justice on snare target] [h:trigger:paladin hammer of justice|hammer of justice] [h:trigger:paladin holy shield|holy shield] [h:trigger:paladin judgement|judgement]\r\n[h:trigger:paladin no paladin aura|no paladin aura] [h:trigger:paladin repentance on enemy healer on enemy healer|repentance on enemy healer on enemy healer]\r\n[h:trigger:paladin repentance on snare target on snare target|repentance on snare target on snare target] [h:trigger:paladin repentance|repentance] [h:trigger:paladin retribution aura|retribution aura] [h:trigger:paladin righteous fury|righteous fury]\r\n[h:trigger:paladin sanctity aura|sanctity aura] [h:trigger:paladin seal|seal] [h:trigger:paladin shadow resistance aura|shadow resistance aura] [h:trigger:paladin target low health|target low health] [h:trigger:paladin turn undead|turn undead]\r\n[h:trigger:party member almost full health|party member almost full health] [h:trigger:party member critical health|party member critical health] [h:trigger:party member low health|party member low health]\r\n[h:trigger:party member medium health|party member medium health] [h:trigger:party member rooted|party member rooted] [h:trigger:protect party member|protect party member] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start]\r\n[h:trigger:random|random] [h:trigger:resurrect|resurrect] [h:trigger:rooted|rooted] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), (2293, 'trigger:deathknight greater blessing of salvation', 1, 'greater blessing of salvation [h:object|trigger] [c:greater blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:deathknight blood|blood]\r\nExecutes: [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000) for [h:strategy:deathknight blood|blood]', '', '', '', '', '', '', '', '', '', 0), - (2294, 'list:deathknight trigger', 1, 'deathknight triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:critical aoe heal|critical aoe heal] [h:trigger:critical health|critical health] [h:trigger:deathknight aoe|aoe] [h:trigger:deathknight blessing of salvation|blessing of salvation]\r\n[h:trigger:deathknight blood tap|blood tap] [h:trigger:deathknight bone shield|bone shield] [h:trigger:deathknight death coil|death coil] [h:trigger:deathknight enemy out of melee range|enemy out of melee range]\r\n[h:trigger:deathknight greater blessing of salvation|greater blessing of salvation] [h:trigger:deathknight horn of winter|horn of winter] [h:trigger:deathknight icy touch on attacker|icy touch on attacker] [h:trigger:deathknight icy touch|icy touch]\r\n[h:trigger:deathknight improved icy talons|improved icy talons] [h:trigger:deathknight mind freeze|mind freeze] [h:trigger:deathknight plague strike on attacker|plague strike on attacker] [h:trigger:deathknight plague strike|plague strike]\r\n[h:trigger:deathknight raise dead|raise dead] [h:trigger:death|death] [h:trigger:invalid target|invalid target] [h:trigger:loot available|loot available] [h:trigger:lose aggro|lose aggro] [h:trigger:low health|low health]\r\n[h:trigger:medium health|medium health] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:no pet|no pet] [h:trigger:often|often] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start]\r\n[h:trigger:resurrect|resurrect] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), - (2295, 'trigger:hunter stealthed nearby', 1, 'stealthed nearby [h:object|trigger] [c:stealthed nearby|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter flare|flare] (65.000) for [h:strategy:hunter dps|dps]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter flare|flare] (10.000) for [h:strategy:hunter nc|nc]', '', '', '', '', '', '', '', '', '', 0), - (2296, 'trigger:rogue apply instant poison main hand', 1, 'apply instant poison main hand [h:object|trigger] [c:apply instant poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons subtlety pve|poisons subtlety pve]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons assassination raid|poisons assassination raid]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons combat raid|poisons combat raid]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons subtlety raid|poisons subtlety raid]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons assassination pve|poisons assassination pve]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poison main instant|poison main instant]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons combat pve|poisons combat pve]', '', '', '', '', '', '', '', '', '', 0), - (2297, 'trigger:rogue apply wound poison main hand', 1, 'apply wound poison main hand [h:object|trigger] [c:apply wound poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply wound poison|apply wound poison] (10.000) for [h:strategy:rogue poison off wound|poison off wound]', '', '', '', '', '', '', '', '', '', 0), - (2298, 'list:rogue trigger', 1, 'rogue triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:combo points available|combo points available] [h:trigger:death|death] [h:trigger:enemy flagcarrier near|enemy flagcarrier near] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp]\r\n[h:trigger:in raid fight|in raid fight] [h:trigger:invalid target|invalid target] [h:trigger:low health|low health] [h:trigger:medium health|medium health] [h:trigger:medium threat|medium threat] [h:trigger:mounted|mounted]\r\n[h:trigger:near dark portal|near dark portal] [h:trigger:often|often] [h:trigger:player has flag|player has flag] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start] [h:trigger:resurrect|resurrect]\r\n[h:trigger:rogue adrenaline rush|adrenaline rush] [h:trigger:rogue aoe|aoe] [h:trigger:rogue apply anesthetic poison main hand|apply anesthetic poison main hand] [h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand]\r\n[h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] [h:trigger:rogue apply instant poison main hand|apply instant poison main hand] [h:trigger:rogue apply mind poison main hand|apply mind poison main hand]\r\n[h:trigger:rogue apply wound poison main hand|apply wound poison main hand] [h:trigger:rogue blade flurry|blade flurry] [h:trigger:rogue cloak of shadows|cloak of shadows] [h:trigger:rogue enemy out of melee range|enemy out of melee range]\r\n[h:trigger:rogue kick on enemy healer|kick on enemy healer] [h:trigger:rogue kick|kick] [h:trigger:rogue killing spree|killing spree] [h:trigger:rogue riposte|riposte] [h:trigger:rogue rupture|rupture] [h:trigger:rogue sap|sap]\r\n[h:trigger:rogue sinister strike|sinister strike] [h:trigger:rogue slice and dice|slice and dice] [h:trigger:rogue sprint|sprint] [h:trigger:rogue stealth|stealth] [h:trigger:rogue trigger|trigger] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), - (2299, 'trigger:shaman trigger spec appropriate water totem', 1, 'trigger spec appropriate water totem [h:object|trigger] [c:trigger spec appropriate water totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totem water mana|totem water mana]\r\nExecutes: [h:action:shaman poison cleansing totem|poison cleansing totem] (20.000) for [h:strategy:shaman totem water poison|totem water poison]\r\nExecutes: [h:action:shaman healing stream totem|healing stream totem] (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nExecutes: [h:action:shaman healing stream totem|healing stream totem] (20.000) for [h:strategy:shaman totem water healing|totem water healing]\r\nExecutes: [h:action:shaman disease cleansing totem|disease cleansing totem] (20.000) for [h:strategy:shaman totem water cleansing|totem water cleansing]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nExecutes: [h:action:shaman fire resistance totem|fire resistance totem] (20.000) for [h:strategy:shaman totem water resistance|totem water resistance]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nExecutes: [h:action:shaman healing stream totem|healing stream totem] (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nExecutes: [h:action:shaman healing stream totem|healing stream totem] (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (2300, 'trigger:shaman trigger spec appropriate earth totem', 1, 'trigger spec appropriate earth totem [h:object|trigger] [c:trigger spec appropriate earth totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman stoneskin totem|stoneskin totem] (20.000) for [h:strategy:shaman totem earth stoneskin|totem earth stoneskin]\r\nExecutes: [h:action:shaman earthbind totem|earthbind totem] (20.000) for [h:strategy:shaman totem earth earthbind|totem earth earthbind]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nExecutes: [h:action:shaman stoneclaw totem|stoneclaw totem] (20.000) for [h:strategy:shaman totem earth stoneclaw|totem earth stoneclaw]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nExecutes: [h:action:shaman tremor totem|tremor totem] (20.000) for [h:strategy:shaman totem earth tremor|totem earth tremor]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totem earth strength|totem earth strength]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (2301, 'trigger:shaman trigger spec appropriate air totem', 1, 'trigger spec appropriate air totem [h:object|trigger] [c:trigger spec appropriate air totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman grounding totem|grounding totem] (20.000) for [h:strategy:shaman totem air grounding|totem air grounding]\r\nExecutes: [h:action:shaman nature resistance totem|nature resistance totem] (20.000) for [h:strategy:shaman totem air resistance|totem air resistance]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totem air wrath|totem air wrath]\r\nExecutes: [h:action:shaman windfury totem|windfury totem] (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nExecutes: [h:action:shaman tranquil air totem|tranquil air totem] (20.000) for [h:strategy:shaman totem air tranquil|totem air tranquil]\r\nExecutes: [h:action:shaman windfury totem|windfury totem] (20.000) for [h:strategy:shaman totem air windfury|totem air windfury]\r\nExecutes: [h:action:shaman grace of air totem|grace of air totem] (20.000) for [h:strategy:shaman totem air grace|totem air grace]\r\nExecutes: [h:action:shaman windwall totem|windwall totem] (20.000) for [h:strategy:shaman totem air windwall|totem air windwall]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nExecutes: [h:action:shaman windfury totem|windfury totem] (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nExecutes: [h:action:shaman windfury totem|windfury totem] (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (2294, 'list:deathknight trigger', 1, 'deathknight triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:critical aoe heal|critical aoe heal] [h:trigger:critical health|critical health] [h:trigger:deathknight aoe|aoe] [h:trigger:deathknight blessing of salvation|blessing of salvation]\r\n[h:trigger:deathknight blood tap|blood tap] [h:trigger:deathknight bone shield|bone shield] [h:trigger:deathknight death coil|death coil] [h:trigger:deathknight enemy out of melee range|enemy out of melee range]\r\n[h:trigger:deathknight greater blessing of salvation|greater blessing of salvation] [h:trigger:deathknight horn of winter|horn of winter] [h:trigger:deathknight icy touch on attacker|icy touch on attacker] [h:trigger:deathknight icy touch|icy touch]\r\n[h:trigger:deathknight improved icy talons|improved icy talons] [h:trigger:deathknight mind freeze|mind freeze] [h:trigger:deathknight plague strike on attacker|plague strike on attacker] [h:trigger:deathknight plague strike|plague strike]\r\n[h:trigger:deathknight raise dead|raise dead] [h:trigger:death|death] [h:trigger:invalid target|invalid target] [h:trigger:loot available|loot available] [h:trigger:lose aggro|lose aggro] [h:trigger:low health|low health]\r\n[h:trigger:medium health|medium health] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:no pet|no pet] [h:trigger:often|often] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start]\r\n[h:trigger:resurrect|resurrect] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0); +INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `template_text`, `text`, `text_loc1`, `text_loc2`, `text_loc3`, `text_loc4`, `text_loc5`, `text_loc6`, `text_loc7`, `text_loc8`, `locs_updated`) VALUES + (2295, 'trigger:hunter stealthed nearby', 1, 'stealthed nearby [h:object|trigger] [c:stealthed nearby|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter flare|flare] (21.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nExecutes: [h:action:hunter flare|flare] (21.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nExecutes: [h:action:hunter flare|flare] (21.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nExecutes: [h:action:hunter flare|flare] (21.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nExecutes: [h:action:hunter flare|flare] (21.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nExecutes: [h:action:hunter flare|flare] (21.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nExecutes: [h:action:hunter flare|flare] (21.000) for [h:strategy:hunter survival pve|survival pve]\r\nExecutes: [h:action:hunter flare|flare] (21.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nExecutes: [h:action:hunter flare|flare] (21.000) for [h:strategy:hunter survival raid|survival raid]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter flare|flare] (13.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nExecutes: [h:action:hunter flare|flare] (13.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nExecutes: [h:action:hunter flare|flare] (13.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nExecutes: [h:action:hunter flare|flare] (13.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nExecutes: [h:action:hunter flare|flare] (13.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nExecutes: [h:action:hunter flare|flare] (13.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nExecutes: [h:action:hunter flare|flare] (13.000) for [h:strategy:hunter survival pve|survival pve]\r\nExecutes: [h:action:hunter flare|flare] (13.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nExecutes: [h:action:hunter flare|flare] (13.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2296, 'trigger:rogue apply instant poison main hand', 1, 'apply instant poison main hand [h:object|trigger] [c:apply instant poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poison main instant|poison main instant]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons assassination pve|poisons assassination pve]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons assassination raid|poisons assassination raid]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons combat pve|poisons combat pve]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons combat raid|poisons combat raid]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons subtlety pve|poisons subtlety pve]\r\nExecutes: [h:action:rogue apply instant poison|apply instant poison] (10.000) for [h:strategy:rogue poisons subtlety raid|poisons subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (2297, 'trigger:rogue apply wound poison main hand', 1, 'apply wound poison main hand [h:object|trigger] [c:apply wound poison main hand|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:rogue apply wound poison|apply wound poison] (10.000) for [h:strategy:rogue poison main wound|poison main wound]', '', '', '', '', '', '', '', '', '', 0), + (2298, 'list:rogue trigger', 1, 'rogue triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:combo points available|combo points available] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:enemy flagcarrier near|enemy flagcarrier near]\r\n[h:trigger:high threat|high threat] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp] [h:trigger:in raid fight|in raid fight] [h:trigger:invalid target|invalid target] [h:trigger:low health|low health] [h:trigger:medium health|medium health]\r\n[h:trigger:medium threat|medium threat] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:often|often] [h:trigger:player has flag|player has flag] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start]\r\n[h:trigger:random|random] [h:trigger:resurrect|resurrect] [h:trigger:rogue adrenaline rush|adrenaline rush] [h:trigger:rogue aoe|aoe] [h:trigger:rogue apply anesthetic poison main hand|apply anesthetic poison main hand]\r\n[h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand] [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] [h:trigger:rogue apply instant poison main hand|apply instant poison main hand]\r\n[h:trigger:rogue apply mind poison main hand|apply mind poison main hand] [h:trigger:rogue apply wound poison main hand|apply wound poison main hand] [h:trigger:rogue blade flurry|blade flurry]\r\n[h:trigger:rogue enemy out of melee range|enemy out of melee range] [h:trigger:rogue kick on enemy healer|kick on enemy healer] [h:trigger:rogue kick|kick] [h:trigger:rogue riposte|riposte] [h:trigger:rogue rupture|rupture] [h:trigger:rogue sap|sap]\r\n[h:trigger:rogue sinister strike|sinister strike] [h:trigger:rogue slice and dice|slice and dice] [h:trigger:rogue sprint|sprint] [h:trigger:rogue stealth|stealth] [h:trigger:rogue trigger|trigger] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), + (2299, 'trigger:shaman trigger spec appropriate water totem', 1, 'trigger spec appropriate water totem [h:object|trigger] [c:trigger spec appropriate water totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nExecutes: [h:action:shaman disease cleansing totem|disease cleansing totem] (20.000) for [h:strategy:shaman totem water cleansing|totem water cleansing]\r\nExecutes: [h:action:shaman healing stream totem|healing stream totem] (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nExecutes: [h:action:shaman healing stream totem|healing stream totem] (20.000) for [h:strategy:shaman totem water healing|totem water healing]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totem water mana|totem water mana]\r\nExecutes: [h:action:shaman poison cleansing totem|poison cleansing totem] (20.000) for [h:strategy:shaman totem water poison|totem water poison]\r\nExecutes: [h:action:shaman fire resistance totem|fire resistance totem] (20.000) for [h:strategy:shaman totem water resistance|totem water resistance]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nExecutes: [h:action:shaman mana spring totem|mana spring totem] (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nExecutes: [h:action:shaman healing stream totem|healing stream totem] (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nExecutes: [h:action:shaman healing stream totem|healing stream totem] (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (2300, 'trigger:shaman trigger spec appropriate earth totem', 1, 'trigger spec appropriate earth totem [h:object|trigger] [c:trigger spec appropriate earth totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nExecutes: [h:action:shaman earthbind totem|earthbind totem] (20.000) for [h:strategy:shaman totem earth earthbind|totem earth earthbind]\r\nExecutes: [h:action:shaman stoneclaw totem|stoneclaw totem] (20.000) for [h:strategy:shaman totem earth stoneclaw|totem earth stoneclaw]\r\nExecutes: [h:action:shaman stoneskin totem|stoneskin totem] (20.000) for [h:strategy:shaman totem earth stoneskin|totem earth stoneskin]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totem earth strength|totem earth strength]\r\nExecutes: [h:action:shaman tremor totem|tremor totem] (20.000) for [h:strategy:shaman totem earth tremor|totem earth tremor]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nExecutes: [h:action:shaman strength of earth totem|strength of earth totem] (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (2301, 'trigger:shaman trigger spec appropriate air totem', 1, 'trigger spec appropriate air totem [h:object|trigger] [c:trigger spec appropriate air totem|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nExecutes: [h:action:shaman grace of air totem|grace of air totem] (20.000) for [h:strategy:shaman totem air grace|totem air grace]\r\nExecutes: [h:action:shaman grounding totem|grounding totem] (20.000) for [h:strategy:shaman totem air grounding|totem air grounding]\r\nExecutes: [h:action:shaman nature resistance totem|nature resistance totem] (20.000) for [h:strategy:shaman totem air resistance|totem air resistance]\r\nExecutes: [h:action:shaman tranquil air totem|tranquil air totem] (20.000) for [h:strategy:shaman totem air tranquil|totem air tranquil]\r\nExecutes: [h:action:shaman windfury totem|windfury totem] (20.000) for [h:strategy:shaman totem air windfury|totem air windfury]\r\nExecutes: [h:action:shaman windwall totem|windwall totem] (20.000) for [h:strategy:shaman totem air windwall|totem air windwall]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totem air wrath|totem air wrath]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nExecutes: [h:action:shaman windfury totem|windfury totem] (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nExecutes: [h:action:shaman windfury totem|windfury totem] (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nExecutes: [h:action:shaman windfury totem|windfury totem] (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nExecutes: [h:action:shaman wrath of air totem|wrath of air totem] (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), (2302, 'trigger:shaman earth shield on tank', 1, 'earth shield on tank [h:object|trigger] [c:earth shield on tank|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman earth shield on party|earth shield on party] (20.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]\r\nNon combat behavior:\r\nExecutes: [h:action:shaman earth shield on party|earth shield on party] (10.000) for [h:strategy:shaman buff restoration raid|buff restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (2303, 'trigger:shaman trigger spec appropriate fire totem aoe', 1, 'trigger spec appropriate fire totem aoe [h:object|trigger] [c:trigger spec appropriate fire totem aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]', '', '', '', '', '', '', '', '', '', 0), - (2304, 'list:shaman trigger', 1, 'shaman triggers : \r\n[h:trigger:almost full health|almost full health] [h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck]\r\n[h:trigger:combat start|combat start] [h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp] [h:trigger:in raid fight|in raid fight]\r\n[h:trigger:invalid target|invalid target] [h:trigger:low health|low health] [h:trigger:medium aoe heal|medium aoe heal] [h:trigger:medium health|medium health] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal]\r\n[h:trigger:often|often] [h:trigger:party member almost full health|party member almost full health] [h:trigger:party member critical health|party member critical health] [h:trigger:party member low health|party member low health]\r\n[h:trigger:party member medium health|party member medium health] [h:trigger:player has flag|player has flag] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start] [h:trigger:resurrect|resurrect] [h:trigger:shaman aoe|aoe]\r\n[h:trigger:shaman bloodlust|bloodlust] [h:trigger:shaman cleanse spirit|cleanse spirit] [h:trigger:shaman cure disease|cure disease] [h:trigger:shaman cure poison|cure poison] [h:trigger:shaman earth shield on tank|earth shield on tank]\r\n[h:trigger:shaman earth shock|earth shock] [h:trigger:shaman frost shock on snare target|frost shock on snare target] [h:trigger:shaman heroism|heroism] [h:trigger:shaman lightning shield|lightning shield]\r\n[h:trigger:shaman no totems summoned|no totems summoned] [h:trigger:shaman purge|purge] [h:trigger:shaman ready to remove totems|ready to remove totems] [h:trigger:shaman rockbiter weapon|rockbiter weapon]\r\n[h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem]\r\n[h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe] [h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem]\r\n[h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] [h:trigger:shaman water breathing on party on party|water breathing on party on party] [h:trigger:shaman water breathing|water breathing]\r\n[h:trigger:shaman water shield|water shield] [h:trigger:shaman water walking on party on party|water walking on party on party] [h:trigger:shaman water walking|water walking] [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer]\r\n[h:trigger:shaman wind shear|wind shear] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), - (2305, 'trigger:mage fire spells locked', 1, 'fire spells locked [h:object|trigger] [c:fire spells locked|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage blizzard|blizzard] (20.000) for [h:strategy:mage aoe fire pve|aoe fire pve]\r\nExecutes: [h:action:mage blizzard|blizzard] (20.000) for [h:strategy:mage aoe fire raid|aoe fire raid]\r\nExecutes: [h:action:mage blizzard|blizzard] (20.000) for [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\nExecutes: [h:action:mage frostbolt|frostbolt] (10.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage frostbolt|frostbolt] (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage frostbolt|frostbolt] (10.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), + (2303, 'trigger:shaman trigger spec appropriate fire totem aoe', 1, 'trigger spec appropriate fire totem aoe [h:object|trigger] [c:trigger spec appropriate fire totem aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems enhancement pve|totems enhancement pve]\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems enhancement pvp|totems enhancement pvp]\r\nExecutes: [h:action:shaman magma totem|magma totem] (20.000) for [h:strategy:shaman totems enhancement raid|totems enhancement raid]', '', '', '', '', '', '', '', '', '', 0), + (2304, 'list:shaman trigger', 1, 'shaman triggers : \r\n[h:trigger:almost full health|almost full health] [h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck]\r\n[h:trigger:combat start|combat start] [h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp] [h:trigger:in raid fight|in raid fight]\r\n[h:trigger:invalid target|invalid target] [h:trigger:low health|low health] [h:trigger:low mana|low mana] [h:trigger:medium aoe heal|medium aoe heal] [h:trigger:medium health|medium health] [h:trigger:mounted|mounted]\r\n[h:trigger:near dark portal|near dark portal] [h:trigger:often|often] [h:trigger:party member almost full health|party member almost full health] [h:trigger:party member critical health|party member critical health]\r\n[h:trigger:party member low health|party member low health] [h:trigger:party member medium health|party member medium health] [h:trigger:player has flag|player has flag] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start]\r\n[h:trigger:random|random] [h:trigger:resurrect|resurrect] [h:trigger:shaman aoe|aoe] [h:trigger:shaman chain lightning|chain lightning] [h:trigger:shaman cure disease|cure disease] [h:trigger:shaman cure poison|cure poison]\r\n[h:trigger:shaman earth shock|earth shock] [h:trigger:shaman enemy out of melee range|enemy out of melee range] [h:trigger:shaman frost shock on snare target|frost shock on snare target] [h:trigger:shaman lightning shield|lightning shield]\r\n[h:trigger:shaman purge|purge] [h:trigger:shaman rockbiter weapon|rockbiter weapon] [h:trigger:shaman stormstrike|stormstrike] [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem]\r\n[h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] [h:trigger:shaman trigger spec appropriate fire totem aoe|trigger spec appropriate fire totem aoe]\r\n[h:trigger:shaman trigger spec appropriate fire totem|trigger spec appropriate fire totem] [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem]\r\n[h:trigger:shaman water breathing on party on party|water breathing on party on party] [h:trigger:shaman water breathing|water breathing] [h:trigger:shaman water walking on party on party|water walking on party on party]\r\n[h:trigger:shaman water walking|water walking] [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] [h:trigger:shaman wind shear|wind shear] [h:trigger:target of attacker close|target of attacker close]\r\n[h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), + (2305, 'trigger:mage fire spells locked', 1, 'fire spells locked [h:object|trigger] [c:fire spells locked|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage blizzard|blizzard] (20.000) for [h:strategy:mage aoe fire pvp|aoe fire pvp]\r\nExecutes: [h:action:mage blizzard|blizzard] (20.000) for [h:strategy:mage aoe fire raid|aoe fire raid]\r\nExecutes: [h:action:mage blizzard|blizzard] (20.000) for [h:strategy:mage aoe fire pve|aoe fire pve]\r\nExecutes: [h:action:mage frostbolt|frostbolt] (10.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage frostbolt|frostbolt] (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage frostbolt|frostbolt] (10.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), (2306, 'trigger:mage learn glyph of fireball', 1, 'learn glyph of fireball [h:object|trigger] [c:learn glyph of fireball|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage learn glyph of fireball|learn glyph of fireball] (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (2307, 'trigger:mage learn glyph of molten armor', 1, 'learn glyph of molten armor [h:object|trigger] [c:learn glyph of molten armor|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage learn glyph of molten armor|learn glyph of molten armor] (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (2308, 'trigger:mage remove glyph of fireball', 1, 'remove glyph of fireball [h:object|trigger] [c:remove glyph of fireball|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage remove glyph of fireball|remove glyph of fireball] (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (2309, 'action:rogue apply wound poison', 1, 'apply wound poison [h:object|action] [c:do apply wound poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply wound poison main hand|apply wound poison main hand] with relevance (10.000) for [h:strategy:rogue poison off wound|poison off wound]', '', '', '', '', '', '', '', '', '', 0), + (2309, 'action:rogue apply wound poison', 1, 'apply wound poison [h:object|action] [c:do apply wound poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply wound poison main hand|apply wound poison main hand] with relevance (10.000) for [h:strategy:rogue poison main wound|poison main wound]', '', '', '', '', '', '', '', '', '', 0), (2310, 'trigger:mage remove glyph of mirror image', 1, 'remove glyph of mirror image [h:object|trigger] [c:remove glyph of mirror image|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage remove glyph of mirror image|remove glyph of mirror image] (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (2311, 'trigger:mage remove glyph of molten armor', 1, 'remove glyph of molten armor [h:object|trigger] [c:remove glyph of molten armor|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nExecutes: [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nExecutes: [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nExecutes: [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000) for [h:strategy:mage fire raid|fire raid]\r\nExecutes: [h:action:mage remove glyph of molten armor|remove glyph of molten armor] (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (2312, 'trigger:mage molten armor', 1, 'molten armor [h:object|trigger] [c:molten armor|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage molten armor|molten armor] (20.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage molten armor|molten armor] (20.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage molten armor|molten armor] (20.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nNon combat behavior:\r\nExecutes: [h:action:mage molten armor|molten armor] (10.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage molten armor|molten armor] (10.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage molten armor|molten armor] (10.000) for [h:strategy:mage buff frost pve|buff frost pve]', '', '', '', '', '', '', '', '', '', 0), - (2313, 'trigger:mage arcane brilliance on party', 1, 'arcane brilliance on party [h:object|trigger] [c:arcane brilliance on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), - (2314, 'trigger:mage ice armor', 1, 'ice armor [h:object|trigger] [c:ice armor|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage ice armor|ice armor] (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage ice armor|ice armor] (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage ice armor|ice armor] (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:mage ice armor|ice armor] (10.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage ice armor|ice armor] (10.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage ice armor|ice armor] (10.000) for [h:strategy:mage buff frost pvp|buff frost pvp]', '', '', '', '', '', '', '', '', '', 0), - (2315, 'trigger:mage cold snap', 1, 'cold snap [h:object|trigger] [c:cold snap|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage cold snap|cold snap] (23.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage cold snap|cold snap] (23.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage cold snap|cold snap] (23.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (2313, 'trigger:mage arcane brilliance on party', 1, 'arcane brilliance on party [h:object|trigger] [c:arcane brilliance on party|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff fire raid|buff fire raid]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff arcane raid|buff arcane raid]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff arcane pve|buff arcane pve]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff fire pve|buff fire pve]\r\nExecutes: [h:action:mage arcane brilliance on party|arcane brilliance on party] (13.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (2314, 'trigger:mage ice armor', 1, 'ice armor [h:object|trigger] [c:ice armor|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage ice armor|ice armor] (20.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage ice armor|ice armor] (20.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage ice armor|ice armor] (20.000) for [h:strategy:mage buff fire pvp|buff fire pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:mage ice armor|ice armor] (10.000) for [h:strategy:mage buff arcane pvp|buff arcane pvp]\r\nExecutes: [h:action:mage ice armor|ice armor] (10.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nExecutes: [h:action:mage ice armor|ice armor] (10.000) for [h:strategy:mage buff fire pvp|buff fire pvp]', '', '', '', '', '', '', '', '', '', 0), + (2315, 'trigger:mage cold snap', 1, 'cold snap [h:object|trigger] [c:cold snap|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage cold snap|cold snap] (23.000) for [h:strategy:mage boost frost pve|boost frost pve]\r\nExecutes: [h:action:mage cold snap|cold snap] (23.000) for [h:strategy:mage boost frost pvp|boost frost pvp]\r\nExecutes: [h:action:mage cold snap|cold snap] (23.000) for [h:strategy:mage boost frost raid|boost frost raid]', '', '', '', '', '', '', '', '', '', 0), (2316, 'trigger:mage fingers of frost', 1, 'fingers of frost [h:object|trigger] [c:fingers of frost|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage deep freeze|deep freeze] (11.000) for [h:strategy:mage frost pve|frost pve]\r\nExecutes: [h:action:mage deep freeze|deep freeze] (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nExecutes: [h:action:mage deep freeze|deep freeze] (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (2317, 'trigger:enemy player ten yards', 1, 'enemy player ten yards [h:object|trigger] [c:enemy player ten yards|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage blast wave|blast wave] (16.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage blast wave|blast wave] (16.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage blast wave|blast wave] (16.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), (2318, 'trigger:mage improved scorch', 1, 'improved scorch [h:object|trigger] [c:improved scorch|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage scorch|scorch] (11.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage scorch|scorch] (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage scorch|scorch] (11.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), - (2319, 'trigger:warlock drain soul', 1, 'drain soul [h:object|trigger] [c:drain soul|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), + (2319, 'trigger:warlock drain soul', 1, 'drain soul [h:object|trigger] [c:drain soul|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nExecutes: [h:action:warlock drain soul|drain soul] (21.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), (2320, 'trigger:warlock have aggro', 1, 'have aggro [h:object|trigger] [c:have aggro|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shoot|shoot] (29.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nExecutes: [h:action:shoot|shoot] (29.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nExecutes: [h:action:shoot|shoot] (29.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), (2321, 'trigger:warlock unstable affliction on attacker', 1, 'unstable affliction on attacker [h:object|trigger] [c:unstable affliction on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock unstable affliction on attacker|unstable affliction on attacker] (24.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nExecutes: [h:action:warlock unstable affliction on attacker|unstable affliction on attacker] (24.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nExecutes: [h:action:warlock unstable affliction on attacker|unstable affliction on attacker] (24.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]', '', '', '', '', '', '', '', '', '', 0), - (2322, 'trigger:warlock fear pvp', 1, 'fear pvp [h:object|trigger] [c:fear pvp|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]', '', '', '', '', '', '', '', '', '', 0), + (2322, 'trigger:warlock fear pvp', 1, 'fear pvp [h:object|trigger] [c:fear pvp|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nExecutes: [h:action:warlock fear|fear] (41.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]', '', '', '', '', '', '', '', '', '', 0), (2323, 'trigger:warlock curse of the elements', 1, 'curse of the elements [h:object|trigger] [c:curse of the elements|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of the elements|curse of the elements] (20.000) for [h:strategy:warlock curse elements|curse elements]', '', '', '', '', '', '', '', '', '', 0), (2324, 'trigger:warlock curse of shadow', 1, 'curse of shadow [h:object|trigger] [c:curse of shadow|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of shadow|curse of shadow] (20.000) for [h:strategy:warlock curse shadow|curse shadow]', '', '', '', '', '', '', '', '', '', 0), (2325, 'trigger:warlock curse of weakness', 1, 'curse of weakness [h:object|trigger] [c:curse of weakness|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of weakness|curse of weakness] (20.000) for [h:strategy:warlock curse weakness|curse weakness]', '', '', '', '', '', '', '', '', '', 0), (2326, 'trigger:warlock no felhunter', 1, 'no felhunter [h:object|trigger] [c:no felhunter|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock summon felhunter|summon felhunter] (20.000) for [h:strategy:warlock pet felhunter|pet felhunter]', '', '', '', '', '', '', '', '', '', 0), (2327, 'trigger:warlock no imp', 1, 'no imp [h:object|trigger] [c:no imp|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock summon imp|summon imp] (20.000) for [h:strategy:warlock pet imp|pet imp]', '', '', '', '', '', '', '', '', '', 0), (2328, 'trigger:warlock no succubus', 1, 'no succubus [h:object|trigger] [c:no succubus|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock summon succubus|summon succubus] (20.000) for [h:strategy:warlock pet succubus|pet succubus]', '', '', '', '', '', '', '', '', '', 0), - (2329, 'list:warlock trigger', 1, 'warlock triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:enemy ten yards|enemy ten yards] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp] [h:trigger:in raid fight|in raid fight]\r\n[h:trigger:invalid target|invalid target] [h:trigger:low mana|low mana] [h:trigger:medium threat|medium threat] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:no mana|no mana] [h:trigger:no pet|no pet]\r\n[h:trigger:often|often] [h:trigger:pull end|pull end] [h:trigger:pull start|pull start] [h:trigger:resurrect|resurrect] [h:trigger:very often|very often] [h:trigger:warlock amplify curse|amplify curse] [h:trigger:warlock aoe|aoe]\r\n[h:trigger:warlock backlash|backlash] [h:trigger:warlock banish|banish] [h:trigger:warlock conflagrate|conflagrate] [h:trigger:warlock corruption on attacker|corruption on attacker] [h:trigger:warlock corruption|corruption]\r\n[h:trigger:warlock curse of agony|curse of agony] [h:trigger:warlock curse of doom|curse of doom] [h:trigger:warlock curse of recklessness|curse of recklessness] [h:trigger:warlock curse of shadow|curse of shadow]\r\n[h:trigger:warlock curse of the elements|curse of the elements] [h:trigger:warlock curse of tongues|curse of tongues] [h:trigger:warlock curse of weakness|curse of weakness] [h:trigger:warlock death coil on enemy healer|death coil on enemy healer]\r\n[h:trigger:warlock death coil on snare target|death coil on snare target] [h:trigger:warlock death coil|death coil] [h:trigger:warlock demon armor|demon armor] [h:trigger:warlock drain soul|drain soul] [h:trigger:warlock fear pvp|fear pvp]\r\n[h:trigger:warlock fear|fear] [h:trigger:warlock have aggro|have aggro] [h:trigger:warlock immolate|immolate] [h:trigger:warlock item count|item count] [h:trigger:warlock life tap|life tap] [h:trigger:warlock no curse on attacker|no curse on attacker]\r\n[h:trigger:warlock no curse|no curse] [h:trigger:warlock no felguard|no felguard] [h:trigger:warlock no felhunter|no felhunter] [h:trigger:warlock no imp|no imp] [h:trigger:warlock no succubus|no succubus] [h:trigger:warlock no voidwalker|no voidwalker]\r\n[h:trigger:warlock shadow trance|shadow trance] [h:trigger:warlock shadowfury on snare target|shadowfury on snare target] [h:trigger:warlock shadowfury|shadowfury] [h:trigger:warlock siphon life on attacker|siphon life on attacker]\r\n[h:trigger:warlock siphon life|siphon life] [h:trigger:warlock target low health|target low health] [h:trigger:warlock unstable affliction on attacker|unstable affliction on attacker] [h:trigger:warlock unstable affliction|unstable affliction] ', '', '', '', '', '', '', '', '', '', 0), - (2330, 'trigger:druid blessing of salvation', 1, 'blessing of salvation [h:object|trigger] [c:blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:druid bear|bear]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (2331, 'list:druid trigger', 1, 'druid triggers : \r\n[h:trigger:almost full health|almost full health] [h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck]\r\n[h:trigger:combat start|combat start] [h:trigger:combat stuck|combat stuck] [h:trigger:combo points available|combo points available] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:druid aoe|aoe]\r\n[h:trigger:druid bash on enemy healer|bash on enemy healer] [h:trigger:druid bash|bash] [h:trigger:druid bear form|bear form] [h:trigger:druid blessing of salvation|blessing of salvation] [h:trigger:druid cat form|cat form]\r\n[h:trigger:druid cure poison|cure poison] [h:trigger:druid eclipse (lunar)|eclipse (lunar)] [h:trigger:druid eclipse (solar)|eclipse (solar)] [h:trigger:druid enemy out of melee range|enemy out of melee range]\r\n[h:trigger:druid entangling roots on snare target|entangling roots on snare target] [h:trigger:druid entangling roots|entangling roots] [h:trigger:druid faerie fire (feral)|faerie fire (feral)] [h:trigger:druid faerie fire|faerie fire]\r\n[h:trigger:druid gift of the wild on party|gift of the wild on party] [h:trigger:druid greater blessing of salvation|greater blessing of salvation] [h:trigger:druid hibernate|hibernate] [h:trigger:druid insect swarm|insect swarm]\r\n[h:trigger:druid mark of the wild on party|mark of the wild on party] [h:trigger:druid mark of the wild|mark of the wild] [h:trigger:druid moonfire|moonfire] [h:trigger:druid nature\'s swiftness|nature\'s swiftness]\r\n[h:trigger:druid omen of clarity|omen of clarity] [h:trigger:druid rake|rake] [h:trigger:druid remove curse|remove curse] [h:trigger:druid thorns on party|thorns on party] [h:trigger:druid thorns|thorns] [h:trigger:druid tiger\'s fury|tiger\'s fury]\r\n[h:trigger:druid tree of life|tree of life] [h:trigger:druid trigger|trigger] [h:trigger:enemy five yards|enemy five yards] [h:trigger:enemy flagcarrier near|enemy flagcarrier near] [h:trigger:enemy too close for melee|enemy too close for melee]\r\n[h:trigger:invalid target|invalid target] [h:trigger:lose aggro|lose aggro] [h:trigger:low health|low health] [h:trigger:low mana|low mana] [h:trigger:medium aoe heal|medium aoe heal] [h:trigger:medium health|medium health]\r\n[h:trigger:medium threat|medium threat] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:often|often] [h:trigger:party member almost full health|party member almost full health]\r\n[h:trigger:party member critical health|party member critical health] [h:trigger:party member low health|party member low health] [h:trigger:party member medium health|party member medium health] [h:trigger:player has flag|player has flag]\r\n[h:trigger:pull end|pull end] [h:trigger:pull start|pull start] [h:trigger:resurrect|resurrect] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), + (2329, 'list:warlock trigger', 1, 'warlock triggers : \r\n[h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck] [h:trigger:combat start|combat start]\r\n[h:trigger:combat stuck|combat stuck] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:enemy ten yards|enemy ten yards] [h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp] [h:trigger:in raid fight|in raid fight]\r\n[h:trigger:invalid target|invalid target] [h:trigger:low mana|low mana] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:no mana|no mana] [h:trigger:no pet|no pet] [h:trigger:often|often] [h:trigger:pull end|pull end]\r\n[h:trigger:pull start|pull start] [h:trigger:random|random] [h:trigger:resurrect|resurrect] [h:trigger:very often|very often] [h:trigger:warlock amplify curse|amplify curse] [h:trigger:warlock aoe|aoe] [h:trigger:warlock banish|banish]\r\n[h:trigger:warlock conflagrate|conflagrate] [h:trigger:warlock corruption on attacker|corruption on attacker] [h:trigger:warlock corruption|corruption] [h:trigger:warlock curse of agony on attacker|curse of agony on attacker]\r\n[h:trigger:warlock curse of agony|curse of agony] [h:trigger:warlock curse of doom on attacker|curse of doom on attacker] [h:trigger:warlock curse of doom|curse of doom]\r\n[h:trigger:warlock curse of recklessness on attacker|curse of recklessness on attacker] [h:trigger:warlock curse of recklessness|curse of recklessness] [h:trigger:warlock curse of shadow on attacker|curse of shadow on attacker]\r\n[h:trigger:warlock curse of shadow|curse of shadow] [h:trigger:warlock curse of the elements on attacker|curse of the elements on attacker] [h:trigger:warlock curse of the elements|curse of the elements]\r\n[h:trigger:warlock curse of tongues on attacker|curse of tongues on attacker] [h:trigger:warlock curse of tongues|curse of tongues] [h:trigger:warlock curse of weakness on attacker|curse of weakness on attacker]\r\n[h:trigger:warlock curse of weakness|curse of weakness] [h:trigger:warlock death coil on enemy healer|death coil on enemy healer] [h:trigger:warlock death coil on snare target|death coil on snare target] [h:trigger:warlock death coil|death coil]\r\n[h:trigger:warlock demon armor|demon armor] [h:trigger:warlock drain soul|drain soul] [h:trigger:warlock fear pvp|fear pvp] [h:trigger:warlock fear|fear] [h:trigger:warlock have aggro|have aggro] [h:trigger:warlock immolate|immolate]\r\n[h:trigger:warlock item count|item count] [h:trigger:warlock item target|item target] [h:trigger:warlock life tap|life tap] [h:trigger:warlock no curse on attacker|no curse on attacker] [h:trigger:warlock no curse|no curse]\r\n[h:trigger:warlock no felguard|no felguard] [h:trigger:warlock no felhunter|no felhunter] [h:trigger:warlock no imp|no imp] [h:trigger:warlock no succubus|no succubus] [h:trigger:warlock no voidwalker|no voidwalker]\r\n[h:trigger:warlock shadow trance|shadow trance] [h:trigger:warlock siphon life on attacker|siphon life on attacker] [h:trigger:warlock siphon life|siphon life] [h:trigger:warlock spell lock|spell lock]\r\n[h:trigger:warlock target low health|target low health] ', '', '', '', '', '', '', '', '', '', 0), + (2330, 'trigger:druid blessing of salvation', 1, 'blessing of salvation [h:object|trigger] [c:blessing of salvation|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:druid tank feral raid|tank feral raid]\r\nNon combat behavior:\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:removeblessing of salvation|removeblessing of salvation] (90.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2331, 'list:druid trigger', 1, 'druid triggers : \r\n[h:trigger:almost full health|almost full health] [h:trigger:at dark portal azeroth|at dark portal azeroth] [h:trigger:at dark portal outland|at dark portal outland] [h:trigger:combat end|combat end] [h:trigger:combat long stuck|combat long stuck]\r\n[h:trigger:combat start|combat start] [h:trigger:combat stuck|combat stuck] [h:trigger:combo points available|combo points available] [h:trigger:critical health|critical health] [h:trigger:death|death] [h:trigger:druid aoe|aoe]\r\n[h:trigger:druid bash on enemy healer|bash on enemy healer] [h:trigger:druid bash|bash] [h:trigger:druid bear form|bear form] [h:trigger:druid blessing of salvation|blessing of salvation] [h:trigger:druid cat form|cat form]\r\n[h:trigger:druid cure poison|cure poison] [h:trigger:druid enemy out of melee range|enemy out of melee range] [h:trigger:druid enrage|enrage] [h:trigger:druid entangling roots|entangling roots] [h:trigger:druid faerie fire (feral)|faerie fire (feral)]\r\n[h:trigger:druid faerie fire|faerie fire] [h:trigger:druid gift of the wild on party|gift of the wild on party] [h:trigger:druid greater blessing of salvation|greater blessing of salvation] [h:trigger:druid hibernate|hibernate]\r\n[h:trigger:druid innervate|innervate] [h:trigger:druid insect swarm|insect swarm] [h:trigger:druid mark of the wild on party|mark of the wild on party] [h:trigger:druid mark of the wild|mark of the wild] [h:trigger:druid moonfire|moonfire]\r\n[h:trigger:druid moonkin form|moonkin form] [h:trigger:druid nature\'s swiftness|nature\'s swiftness] [h:trigger:druid omen of clarity|omen of clarity] [h:trigger:druid prowl|prowl] [h:trigger:druid rage available|rage available]\r\n[h:trigger:druid rake|rake] [h:trigger:druid rebirth|rebirth] [h:trigger:druid remove curse|remove curse] [h:trigger:druid rip|rip] [h:trigger:druid thorns on party|thorns on party] [h:trigger:druid thorns|thorns]\r\n[h:trigger:druid tiger\'s fury|tiger\'s fury] [h:trigger:druid trigger|trigger] [h:trigger:enemy five yards|enemy five yards] [h:trigger:enemy flagcarrier near|enemy flagcarrier near] [h:trigger:enemy too close for melee|enemy too close for melee]\r\n[h:trigger:in pve|in pve] [h:trigger:in pvp|in pvp] [h:trigger:in raid fight|in raid fight] [h:trigger:invalid target|invalid target] [h:trigger:lose aggro|lose aggro] [h:trigger:low health|low health] [h:trigger:medium aoe heal|medium aoe heal]\r\n[h:trigger:medium health|medium health] [h:trigger:medium threat|medium threat] [h:trigger:mounted|mounted] [h:trigger:near dark portal|near dark portal] [h:trigger:often|often] [h:trigger:party member almost full health|party member almost full health]\r\n[h:trigger:party member critical health|party member critical health] [h:trigger:party member low health|party member low health] [h:trigger:party member medium health|party member medium health] [h:trigger:player has flag|player has flag]\r\n[h:trigger:pull end|pull end] [h:trigger:pull start|pull start] [h:trigger:random|random] [h:trigger:resurrect|resurrect] [h:trigger:rooted|rooted] [h:trigger:very often|very often] ', '', '', '', '', '', '', '', '', '', 0), (2332, 'action:cast', 1, 'cast [h:object|action] [c:do cast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|cast] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|cast] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|cast] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|cast] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), - (2333, 'action:warlock summon felhunter', 1, 'summon felhunter [h:object|action] [c:do summon felhunter|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet demonology pvp|pet demonology pvp]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet affliction pvp|pet affliction pvp]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet destruction pvp|pet destruction pvp]\r\nTriggers from: [h:trigger:warlock no felhunter|no felhunter] with relevance (20.000) for [h:strategy:warlock pet felhunter|pet felhunter]', '', '', '', '', '', '', '', '', '', 0), + (2333, 'action:warlock summon felhunter', 1, 'summon felhunter [h:object|action] [c:do summon felhunter|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet destruction pvp|pet destruction pvp]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet affliction pvp|pet affliction pvp]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet demonology pvp|pet demonology pvp]\r\nTriggers from: [h:trigger:warlock no felhunter|no felhunter] with relevance (20.000) for [h:strategy:warlock pet felhunter|pet felhunter]', '', '', '', '', '', '', '', '', '', 0), (2334, 'action:lfg', 1, 'lfg [h:object|action] [c:do lfg|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|lfg] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|lfg] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|lfg] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|lfg] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (2335, 'action:focus heal target', 1, 'focus heal target [h:object|action] [c:do focus heal target|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|focus heal] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), (2336, 'action:fire protection potion', 1, 'fire protection potion [h:object|action] [c:do fire protection potion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|fire protection potion ready] with relevance (100.000) for [h:strategy|magmadar]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|fire protection potion ready] with relevance (100.000) for [h:strategy|molten core]', '', '', '', '', '', '', '', '', '', 0), (2337, 'action:move away from hazard', 1, 'move away from hazard [h:object|action] [c:do move away from hazard|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|magmadar lava bomb] with relevance (100.000) for [h:strategy|magmadar]', '', '', '', '', '', '', '', '', '', 0), (2338, 'action:use random quest item', 1, 'use random quest item [h:object|action] [c:do use random quest item|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|random] with relevance (0.900) for [h:strategy|maintenance]', '', '', '', '', '', '', '', '', '', 0), - (2339, 'list:generic action', 1, 'generic action : \r\n[h:action|accept all quests] [h:action|accept duel] [h:action|accept invitation] [h:action|accept quest share] [h:action|accept quest] [h:action|accept resurrect] [h:action|accept summon] [h:action|accept trade] [h:action|action] [h:action|add all loot]\r\n[h:action|add gathering loot] [h:action|add loot] [h:action|ah bid] [h:action|ah] [h:action|arcane torrent] [h:action|area trigger] [h:action|arena tactics] [h:action|arena team accept] [h:action|attack anything] [h:action|attack duel opponent]\r\n[h:action|attack enemy flag carrier] [h:action|attack enemy player] [h:action|attack my target] [h:action|auto learn spell] [h:action|auto loot roll] [h:action|auto release] [h:action|auto share quest] [h:action|auto talents] [h:action|bank]\r\n[h:action|berserking] [h:action|bg banner] [h:action|bg join] [h:action|bg status check] [h:action|bg status] [h:action|blade salvo] [h:action|blood fury] [h:action|buff] [h:action|buy tabard] [h:action|buy] [h:action|buyback] [h:action|c]\r\n[h:action|cannibalize] [h:action|cast custom nc spell] [h:action|cast] [h:action|change strategy from all] [h:action|chat] [h:action|cheat] [h:action|check flag] [h:action|check mail] [h:action|check mount state] [h:action|check objective]\r\n[h:action|check values] [h:action|choose rpg target] [h:action|choose travel target] [h:action|clean quest log] [h:action|co] [h:action|craft] [h:action|cs] [h:action|dark portal azeroth] [h:action|dark rune] [h:action|de] [h:action|debug]\r\n[h:action|destroy] [h:action|disable magmadar fight strategy] [h:action|disable molten core strategy] [h:action|disable onyxia fight strategy] [h:action|disable onyxia\'s lair strategy] [h:action|disenchant random item] [h:action|douse mc rune]\r\n[h:action|dps aoe] [h:action|dps assist] [h:action|drink] [h:action|drop quest] [h:action|emote] [h:action|enable magmadar fight strategy] [h:action|enable molten core strategy] [h:action|enable onyxia fight strategy]\r\n[h:action|enable onyxia\'s lair strategy] [h:action|enchant random item] [h:action|enter vehicle] [h:action|equip upgrades] [h:action|equip] [h:action|escape artist] [h:action|find corpse] [h:action|fire cannon] [h:action|fire protection potion]\r\n[h:action|flag] [h:action|flee chat shortcut] [h:action|flee to master] [h:action|flee] [h:action|focus heal target] [h:action|follow chat shortcut] [h:action|follow] [h:action|food] [h:action|free chat shortcut] [h:action|gift of the naaru]\r\n[h:action|give leader] [h:action|glaive throw] [h:action|go] [h:action|gossip hello] [h:action|grind chat shortcut] [h:action|guard chat shortcut] [h:action|guild accept] [h:action|guild bank] [h:action|guild demote] [h:action|guild invite]\r\n[h:action|guild join] [h:action|guild leader] [h:action|guild leave] [h:action|guild manage nearby] [h:action|guild promote] [h:action|guild remove] [h:action|healthstone] [h:action|hearthstone] [h:action|help] [h:action|hire] [h:action|home]\r\n[h:action|hurl boulder] [h:action|incendiary rocket] [h:action|inventory change failure] [h:action|invite guild] [h:action|invite nearby] [h:action|invite] [h:action|join] [h:action|keep] [h:action|leave far away] [h:action|leave] [h:action|lfg accept]\r\n[h:action|lfg join] [h:action|lfg leave] [h:action|lfg role check] [h:action|lfg teleport] [h:action|lfg] [h:action|ll] [h:action|log] [h:action|loot roll] [h:action|loot start roll] [h:action|loot] [h:action|los] [h:action|mail] [h:action|mana potion]\r\n[h:action|mana tap] [h:action|mark rti] [h:action|max dps chat shortcut] [h:action|mount anim] [h:action|move away from hazard] [h:action|move from dark portal] [h:action|move out of collision] [h:action|move out of enemy contact]\r\n[h:action|move to dark portal] [h:action|move to loot] [h:action|move to objective] [h:action|move to position] [h:action|move to rpg target] [h:action|move to start] [h:action|move to travel target] [h:action|name] [h:action|napalm] [h:action|nc]\r\n[h:action|open loot] [h:action|outfit] [h:action|party command] [h:action|perception] [h:action|petition offer nearby] [h:action|petition sign] [h:action|position] [h:action|pull my target] [h:action|pull rti target] [h:action|query item usage]\r\n[h:action|query quest] [h:action|quest objective completed] [h:action|quests] [h:action|ra] [h:action|ram] [h:action|random bot update] [h:action|random recipe] [h:action|range] [h:action|reach area trigger] [h:action|reach melee] [h:action|react]\r\n[h:action|ready check] [h:action|release] [h:action|remember taxi] [h:action|repair] [h:action|repop] [h:action|reputation] [h:action|reset ai] [h:action|reset raids] [h:action|reset strats] [h:action|reset values] [h:action|reset]\r\n[h:action|return to pull position] [h:action|return] [h:action|reveal gathering item] [h:action|revive from corpse] [h:action|reward] [h:action|rocket blast] [h:action|rocket boots] [h:action|roll] [h:action|rpg ah buy] [h:action|rpg ah sell]\r\n[h:action|rpg buy petition] [h:action|rpg buy] [h:action|rpg cancel] [h:action|rpg craft] [h:action|rpg discover] [h:action|rpg duel] [h:action|rpg emote] [h:action|rpg end quest] [h:action|rpg get mail] [h:action|rpg heal] [h:action|rpg home bind]\r\n[h:action|rpg item] [h:action|rpg queue bg] [h:action|rpg repair] [h:action|rpg sell] [h:action|rpg spell] [h:action|rpg start quest] [h:action|rpg stay] [h:action|rpg taxi] [h:action|rpg trade useful] [h:action|rpg train] [h:action|rpg use]\r\n[h:action|rpg work] [h:action|rti] [h:action|rtsc] [h:action|runaway chat shortcut] [h:action|runaway] [h:action|save mana] [h:action|security check] [h:action|see spell] [h:action|self resurrect] [h:action|sell] [h:action|sendmail] [h:action|set Stance]\r\n[h:action|set behind] [h:action|set formation] [h:action|set return position] [h:action|share quest] [h:action|sit] [h:action|skip spells list] [h:action|smart destroy] [h:action|spell] [h:action|spells] [h:action|spirit healer] [h:action|stats]\r\n[h:action|stay chat shortcut] [h:action|steam blast] [h:action|steam rush] [h:action|stoneform] [h:action|stop follow] [h:action|store loot] [h:action|suggest trade] [h:action|suggest what to do] [h:action|summon] [h:action|talents]\r\n[h:action|talk to quest giver] [h:action|talk] [h:action|tank assist] [h:action|tank attack chat shortcut] [h:action|taxi] [h:action|teleport] [h:action|tell master] [h:action|tell possible attack targets] [h:action|tell target] [h:action|trade]\r\n[h:action|trainer] [h:action|turn in petition] [h:action|unequip] [h:action|uninvite] [h:action|use bandage] [h:action|use buff] [h:action|use meeting stone] [h:action|use random quest item] [h:action|use] [h:action|wait for attack keep safe distance]\r\n[h:action|wait for attack time] [h:action|war stomp] [h:action|who] [h:action|will of the forsaken] [h:action|world buff] [h:action|wts] [h:action|xp gain] ', '', '', '', '', '', '', '', '', '', 0), - (2340, 'action:priest starshards', 1, 'starshards [h:object|action] [c:do starshards|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest starshards|starshards] with relevance (15.000) for [h:strategy:priest shadow|shadow]\r\nDefault action with relevance (8.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:priest starshards|starshards] with relevance (15.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (2341, 'action:priest mind blast', 1, 'mind blast [h:object|action] [c:do mind blast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:timer|timer] with relevance (10.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:timer|timer] with relevance (10.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), - (2342, 'list:priest action', 1, 'priest action : \r\n[h:action:apply oil|apply oil] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell]\r\n[h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:priest abolish disease on party|abolish disease on party] [h:action:priest abolish disease|abolish disease]\r\n[h:action:priest binding heal on party|binding heal on party] [h:action:priest chastise on snare target|chastise on snare target] [h:action:priest consume magic|consume magic] [h:action:priest desperate prayer|desperate prayer]\r\n[h:action:priest devouring plague|devouring plague] [h:action:priest dispel magic on party|dispel magic on party] [h:action:priest dispel magic|dispel magic] [h:action:priest divine spirit on party|divine spirit on party]\r\n[h:action:priest divine spirit|divine spirit] [h:action:priest elune\'s grace|elune\'s grace] [h:action:priest fade|fade] [h:action:priest fear ward|fear ward] [h:action:priest feedback|feedback] [h:action:priest flash heal on party|flash heal on party]\r\n[h:action:priest flash heal|flash heal] [h:action:priest greater heal on party|greater heal on party] [h:action:priest greater heal|greater heal] [h:action:priest heal on party|heal on party] [h:action:priest hex of weakness|hex of weakness]\r\n[h:action:priest holy fire|holy fire] [h:action:priest inner fire|inner fire] [h:action:priest inner focus|inner focus] [h:action:priest mana burn|mana burn] [h:action:priest mind blast|mind blast] [h:action:priest pain suppression|pain suppression]\r\n[h:action:priest power infusion|power infusion] [h:action:priest power word: fortitude on party|power word: fortitude on party] [h:action:priest power word: fortitude|power word: fortitude]\r\n[h:action:priest power word: shield on party|power word: shield on party] [h:action:priest power word: shield|power word: shield] [h:action:priest prayer of fortitude on party|prayer of fortitude on party]\r\n[h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] [h:action:priest prayer of spirit on party|prayer of spirit on party] [h:action:priest psychic scream|psychic scream]\r\n[h:action:priest remove shadowform|remove shadowform] [h:action:priest renew on party|renew on party] [h:action:priest renew|renew] [h:action:priest resurrection|resurrection] [h:action:priest shackle undead|shackle undead]\r\n[h:action:priest shadow protection on party|shadow protection on party] [h:action:priest shadow protection|shadow protection] [h:action:priest shadow word: death|shadow word: death]\r\n[h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] [h:action:priest shadow word: pain|shadow word: pain] [h:action:priest shadowfiend|shadowfiend] [h:action:priest shadowform|shadowform]\r\n[h:action:priest shadowguard|shadowguard] [h:action:priest silence on enemy healer|silence on enemy healer] [h:action:priest silence|silence] [h:action:priest starshards|starshards] [h:action:priest symbol of hope|symbol of hope]\r\n[h:action:priest touch of weakness|touch of weakness] [h:action:priest vampiric embrace|vampiric embrace] [h:action:priest vampiric touch|vampiric touch] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start]\r\n[h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state]\r\n[h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), - (2343, 'action:throw grenade', 1, 'throw grenade [h:object|action] [c:do throw grenade|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (40.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (40.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (40.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (40.000) for [h:strategy:warlock aoe demonology pve|aoe demonology pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (40.000) for [h:strategy:warlock aoe demonology pvp|aoe demonology pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (40.000) for [h:strategy:warlock aoe demonology raid|aoe demonology raid]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (40.000) for [h:strategy:warlock aoe destruction pve|aoe destruction pve]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (40.000) for [h:strategy:warlock aoe destruction pvp|aoe destruction pvp]\r\nTriggers from: [h:trigger:warlock aoe|aoe] with relevance (40.000) for [h:strategy:warlock aoe destruction raid|aoe destruction raid]', '', '', '', '', '', '', '', '', '', 0), - (2344, 'action:warrior update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior fury|fury]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior fury|fury]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior protection|protection]', '', '', '', '', '', '', '', '', '', 0), - (2345, 'action:removegreater blessing of salvation', 1, 'removegreater blessing of salvation [h:object|action] [c:do removegreater blessing of salvation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] with relevance (90.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] with relevance (90.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (2346, 'action:removeblessing of salvation', 1, 'removeblessing of salvation [h:object|action] [c:do removeblessing of salvation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid blessing of salvation|blessing of salvation] with relevance (90.000) for [h:strategy:druid bear|bear]\r\nTriggers from: [h:trigger:druid blessing of salvation|blessing of salvation] with relevance (90.000) for [h:strategy:druid bear|bear]', '', '', '', '', '', '', '', '', '', 0), - (2347, 'list:warrior action', 1, 'warrior action : \r\n[h:action:apply stone|apply stone] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:goblin sapper|goblin sapper] [h:action:hearthstone|hearthstone]\r\n[h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:oil of immolation|oil of immolation] [h:action:pull action|pull action] [h:action:pull end|pull end]\r\n[h:action:pull start|pull start] [h:action:removeblessing of salvation|removeblessing of salvation] [h:action:removegreater blessing of salvation|removegreater blessing of salvation] [h:action:repop|repop] [h:action:reset|reset]\r\n[h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:throw grenade|throw grenade]\r\n[h:action:use trinket|use trinket] [h:action:warrior battle shout|battle shout] [h:action:warrior battle stance|battle stance] [h:action:warrior berserker rage|berserker rage] [h:action:warrior berserker stance|berserker stance]\r\n[h:action:warrior bladestorm|bladestorm] [h:action:warrior bloodrage|bloodrage] [h:action:warrior bloodthirst|bloodthirst] [h:action:warrior challenging shout|challenging shout] [h:action:warrior charge|charge]\r\n[h:action:warrior commanding shout|commanding shout] [h:action:warrior concussion blow|concussion blow] [h:action:warrior death wish|death wish] [h:action:warrior defensive stance|defensive stance] [h:action:warrior demoralizing shout|demoralizing shout]\r\n[h:action:warrior devastate|devastate] [h:action:warrior disarm|disarm] [h:action:warrior execute|execute] [h:action:warrior heroic strike|heroic strike] [h:action:warrior heroic throw on snare target|heroic throw on snare target]\r\n[h:action:warrior heroic throw|heroic throw] [h:action:warrior intercept on snare target|intercept on snare target] [h:action:warrior intercept|intercept] [h:action:warrior intervene|intervene] [h:action:warrior intimidating shout|intimidating shout]\r\n[h:action:warrior last stand|last stand] [h:action:warrior mortal strike|mortal strike] [h:action:warrior overpower|overpower] [h:action:warrior piercing howl|piercing howl] [h:action:warrior pummel on enemy healer|pummel on enemy healer]\r\n[h:action:warrior pummel|pummel] [h:action:warrior rend|rend] [h:action:warrior revenge|revenge] [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] [h:action:warrior shield bash|shield bash]\r\n[h:action:warrior shield block|shield block] [h:action:warrior shield slam|shield slam] [h:action:warrior shield wall|shield wall] [h:action:warrior shockwave on snare target|shockwave on snare target] [h:action:warrior shockwave|shockwave]\r\n[h:action:warrior slam|slam] [h:action:warrior spell reflection|spell reflection] [h:action:warrior sweeping strikes|sweeping strikes] [h:action:warrior thunder clap on snare target|thunder clap on snare target]\r\n[h:action:warrior thunder clap|thunder clap] [h:action:warrior update pve strats|update pve strats] [h:action:warrior update pvp strats|update pvp strats] [h:action:warrior update raid strats|update raid strats]\r\n[h:action:warrior victory rush|victory rush] [h:action:warrior whirlwind|whirlwind] ', '', '', '', '', '', '', '', '', '', 0), - (2348, 'action:paladin pve blessing', 1, 'pve blessing [h:object|action] [c:do pve blessing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]', '', '', '', '', '', '', '', '', '', 0), - (2349, 'action:paladin pve greater blessing', 1, 'pve greater blessing [h:object|action] [c:do pve greater blessing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]', '', '', '', '', '', '', '', '', '', 0), - (2350, 'action:paladin pve greater blessing on party', 1, 'pve greater blessing on party [h:object|action] [c:do pve greater blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]', '', '', '', '', '', '', '', '', '', 0), - (2351, 'action:paladin paladin aura', 1, 'paladin aura [h:object|action] [c:do paladin aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura retribution pve|aura retribution pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura protection raid|aura protection raid]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura holy pve|aura holy pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura holy pvp|aura holy pvp]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura holy raid|aura holy raid]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura protection pve|aura protection pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura protection pvp|aura protection pvp]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura retribution raid|aura retribution raid]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura retribution pvp|aura retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (2339, 'list:generic action', 1, 'generic action : \r\n[h:action|accept all quests] [h:action|accept duel] [h:action|accept invitation] [h:action|accept quest share] [h:action|accept quest] [h:action|accept resurrect] [h:action|accept summon] [h:action|accept trade] [h:action|action] [h:action|add all loot]\r\n[h:action|add gathering loot] [h:action|add loot] [h:action|add nether portal - perseverence for tank] [h:action|ah bid] [h:action|ah] [h:action|area trigger] [h:action|arena tactics] [h:action|arena team accept] [h:action|attack anything]\r\n[h:action|attack duel opponent] [h:action|attack enemy flag carrier] [h:action|attack enemy player] [h:action|attack my target] [h:action|attack rti target] [h:action|auto learn spell] [h:action|auto loot roll] [h:action|auto release]\r\n[h:action|auto share quest] [h:action|auto talents] [h:action|bank] [h:action|berserking] [h:action|bg banner] [h:action|bg join] [h:action|bg status check] [h:action|bg status] [h:action|blade salvo] [h:action|blood fury] [h:action|boost targets]\r\n[h:action|buff targets] [h:action|buff] [h:action|buy tabard] [h:action|buy] [h:action|buyback] [h:action|c] [h:action|cannibalize] [h:action|cast custom nc spell] [h:action|cast] [h:action|change strategy from all] [h:action|chat] [h:action|cheat]\r\n[h:action|check flag] [h:action|check mail] [h:action|check mount state] [h:action|check objective] [h:action|check values] [h:action|choose rpg target] [h:action|choose travel target] [h:action|clean quest log] [h:action|co] [h:action|confirm quest]\r\n[h:action|craft] [h:action|cs] [h:action|dark portal azeroth] [h:action|dark rune] [h:action|de] [h:action|debug] [h:action|destroy] [h:action|disable karazhan strategy] [h:action|disable magmadar fight strategy] [h:action|disable molten core strategy]\r\n[h:action|disable netherspite fight strategy] [h:action|disable onyxia fight strategy] [h:action|disable onyxia\'s lair strategy] [h:action|disable prince malchezaar fight strategy] [h:action|disenchant random item] [h:action|douse mc rune]\r\n[h:action|dps aoe] [h:action|dps assist] [h:action|drink] [h:action|drop quest] [h:action|emote] [h:action|enable four horseman fight strategy] [h:action|enable karazhan strategy] [h:action|enable magmadar fight strategy]\r\n[h:action|enable molten core strategy] [h:action|enable netherspite fight strategy] [h:action|enable onyxia fight strategy] [h:action|enable onyxia\'s lair strategy] [h:action|enable prince malchezaar fight strategy] [h:action|enchant random item]\r\n[h:action|enter vehicle] [h:action|equip upgrades] [h:action|equip] [h:action|escape artist] [h:action|find corpse] [h:action|fire cannon] [h:action|fire protection potion] [h:action|flag] [h:action|flee chat shortcut] [h:action|flee to master]\r\n[h:action|flee] [h:action|focus heal targets] [h:action|follow chat shortcut] [h:action|follow target] [h:action|follow] [h:action|food] [h:action|free chat shortcut] [h:action|give leader] [h:action|glaive throw] [h:action|go] [h:action|gossip hello]\r\n[h:action|grind chat shortcut] [h:action|guard chat shortcut] [h:action|guild accept] [h:action|guild bank] [h:action|guild demote] [h:action|guild invite] [h:action|guild join] [h:action|guild leader] [h:action|guild leave]\r\n[h:action|guild manage nearby] [h:action|guild promote] [h:action|guild remove] [h:action|healthstone] [h:action|hearthstone] [h:action|help] [h:action|hire] [h:action|home] [h:action|honor gain] [h:action|hurl boulder] [h:action|incendiary rocket]\r\n[h:action|interrupt current spell] [h:action|inventory change failure] [h:action|invite guild] [h:action|invite nearby] [h:action|invite] [h:action|join] [h:action|jump] [h:action|keep] [h:action|leave far away] [h:action|leave] [h:action|lfg accept]\r\n[h:action|lfg join] [h:action|lfg leave] [h:action|lfg role check] [h:action|lfg teleport] [h:action|lfg] [h:action|list ai] [h:action|ll] [h:action|load ai] [h:action|log] [h:action|loot roll] [h:action|loot start roll] [h:action|loot] [h:action|los]\r\n[h:action|mail] [h:action|mark rti] [h:action|max dps chat shortcut] [h:action|mount anim] [h:action|move away from hazard] [h:action|move away from netherspite infernal] [h:action|move away from void zone] [h:action|move from dark portal]\r\n[h:action|move out of collision] [h:action|move out of enemy contact] [h:action|move style] [h:action|move to dark portal] [h:action|move to loot] [h:action|move to objective] [h:action|move to position] [h:action|move to rpg target]\r\n[h:action|move to start] [h:action|move to travel target] [h:action|name] [h:action|napalm] [h:action|nc] [h:action|open loot] [h:action|outfit] [h:action|party command] [h:action|perception] [h:action|pet] [h:action|petition offer nearby]\r\n[h:action|petition sign] [h:action|position] [h:action|pull my target] [h:action|pull rti target] [h:action|query item usage] [h:action|query quest] [h:action|quest details] [h:action|quest reward] [h:action|quest update add item]\r\n[h:action|quest update add kill] [h:action|quest update complete] [h:action|quest update failed timer] [h:action|quest update failed] [h:action|quests] [h:action|ra] [h:action|ram] [h:action|random bot update] [h:action|random recipe] [h:action|range]\r\n[h:action|reach area trigger] [h:action|reach melee] [h:action|react] [h:action|ready check] [h:action|release] [h:action|remember taxi] [h:action|remove nether portal buffs from netherspite] [h:action|repair] [h:action|repop] [h:action|reputation]\r\n[h:action|reset ai] [h:action|reset strats] [h:action|reset values] [h:action|reset] [h:action|return to pull position] [h:action|return] [h:action|reveal gathering item] [h:action|revive from corpse] [h:action|revive targets] [h:action|reward]\r\n[h:action|rocket blast] [h:action|rocket boots] [h:action|roll] [h:action|rpg ah buy] [h:action|rpg ah sell] [h:action|rpg buy petition] [h:action|rpg buy] [h:action|rpg cancel] [h:action|rpg craft] [h:action|rpg discover] [h:action|rpg duel]\r\n[h:action|rpg emote] [h:action|rpg enchant] [h:action|rpg end quest] [h:action|rpg get mail] [h:action|rpg heal] [h:action|rpg home bind] [h:action|rpg item] [h:action|rpg queue bg] [h:action|rpg repair] [h:action|rpg sell] [h:action|rpg spell]\r\n[h:action|rpg start quest] [h:action|rpg stay] [h:action|rpg taxi] [h:action|rpg trade useful] [h:action|rpg train] [h:action|rpg use] [h:action|rpg work] [h:action|rti] [h:action|rtsc] [h:action|runaway chat shortcut] [h:action|runaway]\r\n[h:action|save ai] [h:action|save mana] [h:action|security check] [h:action|see spell] [h:action|self resurrect] [h:action|sell] [h:action|sendmail] [h:action|set Stance] [h:action|set avoid area] [h:action|set behind] [h:action|set formation]\r\n[h:action|set return position] [h:action|share quest] [h:action|sit] [h:action|skip spells list] [h:action|smart destroy] [h:action|spell] [h:action|spells] [h:action|spirit healer] [h:action|stats] [h:action|stay chat shortcut] [h:action|steam blast]\r\n[h:action|steam rush] [h:action|stoneform] [h:action|stop follow] [h:action|store loot] [h:action|suggest what to do] [h:action|summon] [h:action|talents] [h:action|talk to quest giver] [h:action|talk] [h:action|tank assist]\r\n[h:action|tank attack chat shortcut] [h:action|taxi] [h:action|teleport] [h:action|tell master] [h:action|tell possible attack targets] [h:action|tell target] [h:action|trade] [h:action|trainer] [h:action|turn in petition] [h:action|unequip]\r\n[h:action|uninvite] [h:action|use bandage] [h:action|use buff] [h:action|use meeting stone] [h:action|use random quest item] [h:action|use] [h:action|wait for attack keep safe distance] [h:action|wait for attack time] [h:action|war stomp]\r\n[h:action|whipper root tuber] [h:action|who] [h:action|will of the forsaken] [h:action|world buff] [h:action|wts] [h:action|xp gain] ', '', '', '', '', '', '', '', '', '', 0), + (2340, 'action:priest starshards', 1, 'starshards [h:object|action] [c:do starshards|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (11.000) for [h:strategy:priest offdps pve|offdps pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (11.000) for [h:strategy:priest offdps pvp|offdps pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (11.000) for [h:strategy:priest offdps raid|offdps raid]', '', '', '', '', '', '', '', '', '', 0), + (2341, 'action:priest mind blast', 1, 'mind blast [h:object|action] [c:do mind blast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest mind blast|mind blast] with relevance (20.000) for [h:strategy:priest shadow pve|shadow pve]\r\nTriggers from: [h:trigger:priest mind blast|mind blast] with relevance (20.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nTriggers from: [h:trigger:priest mind blast|mind blast] with relevance (20.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (2342, 'list:priest action', 1, 'priest action : \r\n[h:action:apply oil|apply oil] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:free action potion|free action potion] [h:action:goblin sapper|goblin sapper]\r\n[h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:priest abolish disease on party|abolish disease on party]\r\n[h:action:priest abolish disease|abolish disease] [h:action:priest circle of healing|circle of healing] [h:action:priest desperate prayer|desperate prayer] [h:action:priest devouring plague|devouring plague]\r\n[h:action:priest dispel magic on party|dispel magic on party] [h:action:priest dispel magic|dispel magic] [h:action:priest divine spirit on party|divine spirit on party] [h:action:priest divine spirit|divine spirit]\r\n[h:action:priest elune\'s grace|elune\'s grace] [h:action:priest fade|fade] [h:action:priest fear ward|fear ward] [h:action:priest feedback|feedback] [h:action:priest flash heal on party|flash heal on party] [h:action:priest flash heal|flash heal]\r\n[h:action:priest greater heal on party|greater heal on party] [h:action:priest greater heal|greater heal] [h:action:priest hex of weakness|hex of weakness] [h:action:priest holy fire|holy fire] [h:action:priest holy nova|holy nova]\r\n[h:action:priest inner fire|inner fire] [h:action:priest inner focus|inner focus] [h:action:priest mind blast|mind blast] [h:action:priest power infusion|power infusion] [h:action:priest power word: fortitude on party|power word: fortitude on party]\r\n[h:action:priest power word: fortitude|power word: fortitude] [h:action:priest power word: shield on party|power word: shield on party] [h:action:priest power word: shield|power word: shield]\r\n[h:action:priest prayer of fortitude on party|prayer of fortitude on party] [h:action:priest prayer of healing|prayer of healing] [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party]\r\n[h:action:priest prayer of spirit on party|prayer of spirit on party] [h:action:priest psychic scream|psychic scream] [h:action:priest renew on party|renew on party] [h:action:priest resurrection|resurrection]\r\n[h:action:priest shackle undead|shackle undead] [h:action:priest shadow protection on party|shadow protection on party] [h:action:priest shadow protection|shadow protection] [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker]\r\n[h:action:priest shadow word: pain|shadow word: pain] [h:action:priest shadowform|shadowform] [h:action:priest shadowguard|shadowguard] [h:action:priest silence on enemy healer|silence on enemy healer] [h:action:priest silence|silence]\r\n[h:action:priest smite|smite] [h:action:priest starshards|starshards] [h:action:priest touch of weakness|touch of weakness] [h:action:priest update pve strats|update pve strats] [h:action:priest update pvp strats|update pvp strats]\r\n[h:action:priest update raid strats|update raid strats] [h:action:priest vampiric embrace|vampiric embrace] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start] [h:action:repop|repop] [h:action:reset|reset]\r\n[h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:shoot|shoot] [h:action:throw grenade|throw grenade]\r\n[h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), + (2343, 'action:throw grenade', 1, 'throw grenade [h:object|action] [c:do throw grenade|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe dps feral raid|aoe dps feral raid]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe restoration raid|aoe restoration raid]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe balance pvp|aoe balance pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe balance pve|aoe balance pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe dps feral pve|aoe dps feral pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe balance raid|aoe balance raid]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe restoration pve|aoe restoration pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe dps feral pvp|aoe dps feral pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe restoration pvp|aoe restoration pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe tank feral pve|aoe tank feral pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe tank feral pvp|aoe tank feral pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe tank feral raid|aoe tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2344, 'action:warrior update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior fury|fury]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior arms|arms]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior protection|protection]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:warrior fury|fury]', '', '', '', '', '', '', '', '', '', 0), + (2345, 'action:removegreater blessing of salvation', 1, 'removegreater blessing of salvation [h:object|action] [c:do removegreater blessing of salvation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral raid|tank feral raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2346, 'action:removeblessing of salvation', 1, 'removeblessing of salvation [h:object|action] [c:do removeblessing of salvation|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid blessing of salvation|blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:druid blessing of salvation|blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:druid blessing of salvation|blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral raid|tank feral raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid blessing of salvation|blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:druid blessing of salvation|blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:druid blessing of salvation|blessing of salvation] with relevance (90.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2347, 'list:warrior action', 1, 'warrior action : \r\n[h:action:apply stone|apply stone] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:free action potion|free action potion]\r\n[h:action:goblin sapper|goblin sapper] [h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal]\r\n[h:action:oil of immolation|oil of immolation] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start] [h:action:removeblessing of salvation|removeblessing of salvation]\r\n[h:action:removegreater blessing of salvation|removegreater blessing of salvation] [h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target] [h:action:set combat state|set combat state]\r\n[h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:stoneshield potion|stoneshield potion] [h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket]\r\n[h:action:warrior battle shout|battle shout] [h:action:warrior battle stance|battle stance] [h:action:warrior berserker rage|berserker rage] [h:action:warrior berserker stance|berserker stance] [h:action:warrior bloodrage|bloodrage]\r\n[h:action:warrior bloodthirst|bloodthirst] [h:action:warrior challenging shout|challenging shout] [h:action:warrior charge|charge] [h:action:warrior cleave|cleave] [h:action:warrior concussion blow|concussion blow]\r\n[h:action:warrior death wish|death wish] [h:action:warrior defensive stance|defensive stance] [h:action:warrior demoralizing shout|demoralizing shout] [h:action:warrior devastate|devastate] [h:action:warrior disarm|disarm]\r\n[h:action:warrior execute|execute] [h:action:warrior heroic strike|heroic strike] [h:action:warrior heroic throw on snare target|heroic throw on snare target] [h:action:warrior heroic throw|heroic throw]\r\n[h:action:warrior intercept on snare target|intercept on snare target] [h:action:warrior intercept|intercept] [h:action:warrior intimidating shout|intimidating shout] [h:action:warrior last stand|last stand] [h:action:warrior mortal strike|mortal strike]\r\n[h:action:warrior overpower|overpower] [h:action:warrior piercing howl|piercing howl] [h:action:warrior pummel on enemy healer|pummel on enemy healer] [h:action:warrior pummel|pummel] [h:action:warrior recklessness|recklessness]\r\n[h:action:warrior rend|rend] [h:action:warrior revenge|revenge] [h:action:warrior shield bash on enemy healer|shield bash on enemy healer] [h:action:warrior shield bash|shield bash] [h:action:warrior shield block|shield block]\r\n[h:action:warrior shield slam|shield slam] [h:action:warrior shield wall|shield wall] [h:action:warrior sweeping strikes|sweeping strikes] [h:action:warrior thunder clap on snare target|thunder clap on snare target]\r\n[h:action:warrior thunder clap|thunder clap] [h:action:warrior update pve strats|update pve strats] [h:action:warrior update pvp strats|update pvp strats] [h:action:warrior update raid strats|update raid strats] [h:action:warrior whirlwind|whirlwind] ', '', '', '', '', '', '', '', '', '', 0), + (2348, 'action:paladin pve blessing', 1, 'pve blessing [h:object|action] [c:do pve blessing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (2349, 'action:paladin pve greater blessing', 1, 'pve greater blessing [h:object|action] [c:do pve greater blessing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (2350, 'action:paladin pve greater blessing on party', 1, 'pve greater blessing on party [h:object|action] [c:do pve greater blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing holy pve|blessing holy pve]\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing protection pve|blessing protection pve]\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing retribution pve|blessing retribution pve]', '', '', '', '', '', '', '', '', '', 0), + (2351, 'action:paladin paladin aura', 1, 'paladin aura [h:object|action] [c:do paladin aura|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura retribution pve|aura retribution pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura holy pvp|aura holy pvp]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura holy pve|aura holy pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura holy raid|aura holy raid]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura protection pve|aura protection pve]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura protection pvp|aura protection pvp]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura protection raid|aura protection raid]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura retribution pvp|aura retribution pvp]\r\nTriggers from: [h:trigger:paladin no paladin aura|no paladin aura] with relevance (10.000) for [h:strategy:paladin aura retribution raid|aura retribution raid]', '', '', '', '', '', '', '', '', '', 0), (2352, 'action:paladin blessing of kings', 1, 'blessing of kings [h:object|action] [c:do blessing of kings|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of kings|blessing of kings] with relevance (10.000) for [h:strategy:paladin blessing kings|blessing kings]', '', '', '', '', '', '', '', '', '', 0), (2353, 'action:paladin greater blessing of kings', 1, 'greater blessing of kings [h:object|action] [c:do greater blessing of kings|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing of kings|greater blessing of kings] with relevance (11.000) for [h:strategy:paladin blessing kings|blessing kings]', '', '', '', '', '', '', '', '', '', 0), - (2354, 'action:paladin pvp blessing', 1, 'pvp blessing [h:object|action] [c:do pvp blessing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]', '', '', '', '', '', '', '', '', '', 0), - (2355, 'action:paladin pvp blessing on party', 1, 'pvp blessing on party [h:object|action] [c:do pvp blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]', '', '', '', '', '', '', '', '', '', 0), - (2356, 'action:paladin pvp greater blessing', 1, 'pvp greater blessing [h:object|action] [c:do pvp greater blessing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]', '', '', '', '', '', '', '', '', '', 0), - (2357, 'action:paladin pvp greater blessing on party', 1, 'pvp greater blessing on party [h:object|action] [c:do pvp greater blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]', '', '', '', '', '', '', '', '', '', 0), - (2358, 'action:paladin raid blessing', 1, 'raid blessing [h:object|action] [c:do raid blessing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (2354, 'action:paladin pvp blessing', 1, 'pvp blessing [h:object|action] [c:do pvp blessing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]', '', '', '', '', '', '', '', '', '', 0), + (2355, 'action:paladin pvp blessing on party', 1, 'pvp blessing on party [h:object|action] [c:do pvp blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nTriggers from: [h:trigger:paladin blessing on party|blessing on party] with relevance (12.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]', '', '', '', '', '', '', '', '', '', 0), + (2356, 'action:paladin pvp greater blessing', 1, 'pvp greater blessing [h:object|action] [c:do pvp greater blessing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nTriggers from: [h:trigger:paladin greater blessing|greater blessing] with relevance (11.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]', '', '', '', '', '', '', '', '', '', 0), + (2357, 'action:paladin pvp greater blessing on party', 1, 'pvp greater blessing on party [h:object|action] [c:do pvp greater blessing on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing protection pvp|blessing protection pvp]\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing retribution pvp|blessing retribution pvp]\r\nTriggers from: [h:trigger:paladin greater blessing on party|greater blessing on party] with relevance (13.000) for [h:strategy:paladin blessing holy pvp|blessing holy pvp]', '', '', '', '', '', '', '', '', '', 0), + (2358, 'action:paladin raid blessing', 1, 'raid blessing [h:object|action] [c:do raid blessing|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing retribution raid|blessing retribution raid]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing holy raid|blessing holy raid]\r\nTriggers from: [h:trigger:paladin blessing|blessing] with relevance (10.000) for [h:strategy:paladin blessing protection raid|blessing protection raid]', '', '', '', '', '', '', '', '', '', 0), (2359, 'action:paladin blessing of light on party', 1, 'blessing of light on party [h:object|action] [c:do blessing of light on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of light on party|blessing of light on party] with relevance (12.000) for [h:strategy:paladin blessing light|blessing light]', '', '', '', '', '', '', '', '', '', 0), (2360, 'action:paladin greater blessing of light', 1, 'greater blessing of light [h:object|action] [c:do greater blessing of light|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin greater blessing of light|greater blessing of light] with relevance (11.000) for [h:strategy:paladin blessing light|blessing light]', '', '', '', '', '', '', '', '', '', 0), (2361, 'action:paladin blessing of salvation', 1, 'blessing of salvation [h:object|action] [c:do blessing of salvation|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of salvation|blessing of salvation] with relevance (10.000) for [h:strategy:paladin blessing salvation|blessing salvation]', '', '', '', '', '', '', '', '', '', 0), (2362, 'action:paladin blessing of salvation on party', 1, 'blessing of salvation on party [h:object|action] [c:do blessing of salvation on party|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:paladin blessing of salvation on party|blessing of salvation on party] with relevance (12.000) for [h:strategy:paladin blessing salvation|blessing salvation]', '', '', '', '', '', '', '', '', '', 0), - (2363, 'action:paladin crusader strike', 1, 'crusader strike [h:object|action] [c:do crusader strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:very often|very often] with relevance (10.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:very often|very often] with relevance (10.000) for [h:strategy:paladin retribution pvp|retribution pvp]\r\nTriggers from: [h:trigger:very often|very often] with relevance (10.000) for [h:strategy:paladin retribution raid|retribution raid]', '', '', '', '', '', '', '', '', '', 0), - (2364, 'action:paladin update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin protection|protection]', '', '', '', '', '', '', '', '', '', 0), + (2363, 'action:paladin crusader strike', 1, 'crusader strike [h:object|action] [c:do crusader strike|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin crusader strike|crusader strike] with relevance (10.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nTriggers from: [h:trigger:paladin crusader strike|crusader strike] with relevance (10.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nTriggers from: [h:trigger:paladin crusader strike|crusader strike] with relevance (10.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (2364, 'action:paladin update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin holy|holy]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin protection|protection]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin retribution|retribution]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:paladin protection|protection]', '', '', '', '', '', '', '', '', '', 0), (2365, 'action:paladin hand of sacrifice on party', 1, 'hand of sacrifice on party [h:object|action] [c:do hand of sacrifice on party|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:paladin hand of sacrifice|hand of sacrifice] with relevance (78.000) for [h:strategy:paladin holy pve|holy pve]\r\nTriggers from: [h:trigger:paladin hand of sacrifice|hand of sacrifice] with relevance (78.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nTriggers from: [h:trigger:paladin hand of sacrifice|hand of sacrifice] with relevance (78.000) for [h:strategy:paladin holy raid|holy raid]', '', '', '', '', '', '', '', '', '', 0), - (2366, 'list:paladin action', 1, 'paladin action : \r\n[h:action:apply stone|apply stone] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:goblin sapper|goblin sapper] [h:action:hearthstone|hearthstone]\r\n[h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:oil of immolation|oil of immolation] [h:action:paladin avenger\'s shield|avenger\'s shield]\r\n[h:action:paladin avenging wrath|avenging wrath] [h:action:paladin blessing of freedom|blessing of freedom] [h:action:paladin blessing of kings on party|blessing of kings on party] [h:action:paladin blessing of kings|blessing of kings]\r\n[h:action:paladin blessing of light on party|blessing of light on party] [h:action:paladin blessing of light|blessing of light] [h:action:paladin blessing of might on party|blessing of might on party]\r\n[h:action:paladin blessing of might|blessing of might] [h:action:paladin blessing of protection|blessing of protection] [h:action:paladin blessing of salvation on party|blessing of salvation on party]\r\n[h:action:paladin blessing of salvation|blessing of salvation] [h:action:paladin blessing of sanctuary on party|blessing of sanctuary on party] [h:action:paladin blessing of sanctuary|blessing of sanctuary]\r\n[h:action:paladin blessing of wisdom on party|blessing of wisdom on party] [h:action:paladin blessing of wisdom|blessing of wisdom] [h:action:paladin cleanse disease on party|cleanse disease on party]\r\n[h:action:paladin cleanse magic on party|cleanse magic on party] [h:action:paladin cleanse poison on party|cleanse poison on party] [h:action:paladin cleanse|cleanse] [h:action:paladin concentration aura|concentration aura]\r\n[h:action:paladin consecration|consecration] [h:action:paladin crusader aura|crusader aura] [h:action:paladin crusader strike|crusader strike] [h:action:paladin devotion aura|devotion aura] [h:action:paladin divine favor|divine favor]\r\n[h:action:paladin divine shield|divine shield] [h:action:paladin divine storm|divine storm] [h:action:paladin exorcism|exorcism] [h:action:paladin fire resistance aura|fire resistance aura]\r\n[h:action:paladin flash of light on party|flash of light on party] [h:action:paladin flash of light|flash of light] [h:action:paladin frost resistance aura|frost resistance aura]\r\n[h:action:paladin greater blessing of kings on party|greater blessing of kings on party] [h:action:paladin greater blessing of kings|greater blessing of kings] [h:action:paladin greater blessing of light on party|greater blessing of light on party]\r\n[h:action:paladin greater blessing of light|greater blessing of light] [h:action:paladin greater blessing of might on party|greater blessing of might on party] [h:action:paladin greater blessing of might|greater blessing of might]\r\n[h:action:paladin greater blessing of salvation on party|greater blessing of salvation on party] [h:action:paladin greater blessing of salvation|greater blessing of salvation]\r\n[h:action:paladin greater blessing of sanctuary on party|greater blessing of sanctuary on party] [h:action:paladin greater blessing of sanctuary|greater blessing of sanctuary]\r\n[h:action:paladin greater blessing of wisdom on party|greater blessing of wisdom on party] [h:action:paladin greater blessing of wisdom|greater blessing of wisdom] [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer]\r\n[h:action:paladin hammer of justice on snare target|hammer of justice on snare target] [h:action:paladin hammer of justice|hammer of justice] [h:action:paladin hammer of the righteous|hammer of the righteous]\r\n[h:action:paladin hammer of wrath|hammer of wrath] [h:action:paladin hand of reckoning|hand of reckoning] [h:action:paladin hand of sacrifice on party|hand of sacrifice on party] [h:action:paladin holy light on party|holy light on party]\r\n[h:action:paladin holy light|holy light] [h:action:paladin holy shield|holy shield] [h:action:paladin holy shock on party|holy shock on party] [h:action:paladin holy shock|holy shock] [h:action:paladin judgement of light|judgement of light]\r\n[h:action:paladin judgement of wisdom|judgement of wisdom] [h:action:paladin lay on hands on party|lay on hands on party] [h:action:paladin lay on hands|lay on hands] [h:action:paladin paladin aura|paladin aura]\r\n[h:action:paladin pve blessing on party|pve blessing on party] [h:action:paladin pve blessing|pve blessing] [h:action:paladin pve greater blessing on party|pve greater blessing on party] [h:action:paladin pve greater blessing|pve greater blessing]\r\n[h:action:paladin pvp blessing on party|pvp blessing on party] [h:action:paladin pvp blessing|pvp blessing] [h:action:paladin pvp greater blessing on party|pvp greater blessing on party] [h:action:paladin pvp greater blessing|pvp greater blessing]\r\n[h:action:paladin raid blessing on party|raid blessing on party] [h:action:paladin raid blessing|raid blessing] [h:action:paladin raid greater blessing on party|raid greater blessing on party] [h:action:paladin redemption|redemption]\r\n[h:action:paladin repentance on enemy healer|repentance on enemy healer] [h:action:paladin repentance on snare target|repentance on snare target] [h:action:paladin repentance|repentance] [h:action:paladin retribution aura|retribution aura]\r\n[h:action:paladin righteous fury|righteous fury] [h:action:paladin sanctity aura|sanctity aura] [h:action:paladin seal of command|seal of command] [h:action:paladin seal of light|seal of light] [h:action:paladin seal of vengeance|seal of vengeance]\r\n[h:action:paladin seal of wisdom|seal of wisdom] [h:action:paladin shadow resistance aura|shadow resistance aura] [h:action:paladin turn undead|turn undead] [h:action:paladin update pve strats|update pve strats]\r\n[h:action:paladin update pvp strats|update pvp strats] [h:action:paladin update raid strats|update raid strats] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start] [h:action:repop|repop] [h:action:reset|reset]\r\n[h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:throw grenade|throw grenade]\r\n[h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), + (2366, 'list:paladin action', 1, 'paladin action : \r\n[h:action:apply stone|apply stone] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:free action potion|free action potion]\r\n[h:action:goblin sapper|goblin sapper] [h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal]\r\n[h:action:oil of immolation|oil of immolation] [h:action:paladin blessing of freedom|blessing of freedom] [h:action:paladin blessing of kings on party|blessing of kings on party] [h:action:paladin blessing of kings|blessing of kings]\r\n[h:action:paladin blessing of light on party|blessing of light on party] [h:action:paladin blessing of light|blessing of light] [h:action:paladin blessing of might on party|blessing of might on party]\r\n[h:action:paladin blessing of might|blessing of might] [h:action:paladin blessing of protection|blessing of protection] [h:action:paladin blessing of salvation on party|blessing of salvation on party]\r\n[h:action:paladin blessing of salvation|blessing of salvation] [h:action:paladin blessing of sanctuary on party|blessing of sanctuary on party] [h:action:paladin blessing of sanctuary|blessing of sanctuary]\r\n[h:action:paladin blessing of wisdom on party|blessing of wisdom on party] [h:action:paladin blessing of wisdom|blessing of wisdom] [h:action:paladin cleanse disease on party|cleanse disease on party]\r\n[h:action:paladin cleanse magic on party|cleanse magic on party] [h:action:paladin cleanse poison on party|cleanse poison on party] [h:action:paladin cleanse|cleanse] [h:action:paladin concentration aura|concentration aura]\r\n[h:action:paladin consecration|consecration] [h:action:paladin crusader aura|crusader aura] [h:action:paladin crusader strike|crusader strike] [h:action:paladin devotion aura|devotion aura] [h:action:paladin divine favor|divine favor]\r\n[h:action:paladin divine shield|divine shield] [h:action:paladin exorcism|exorcism] [h:action:paladin fire resistance aura|fire resistance aura] [h:action:paladin flash of light on party|flash of light on party]\r\n[h:action:paladin flash of light|flash of light] [h:action:paladin frost resistance aura|frost resistance aura] [h:action:paladin greater blessing of kings on party|greater blessing of kings on party]\r\n[h:action:paladin greater blessing of kings|greater blessing of kings] [h:action:paladin greater blessing of light on party|greater blessing of light on party] [h:action:paladin greater blessing of light|greater blessing of light]\r\n[h:action:paladin greater blessing of might on party|greater blessing of might on party] [h:action:paladin greater blessing of might|greater blessing of might]\r\n[h:action:paladin greater blessing of salvation on party|greater blessing of salvation on party] [h:action:paladin greater blessing of salvation|greater blessing of salvation]\r\n[h:action:paladin greater blessing of sanctuary on party|greater blessing of sanctuary on party] [h:action:paladin greater blessing of sanctuary|greater blessing of sanctuary]\r\n[h:action:paladin greater blessing of wisdom on party|greater blessing of wisdom on party] [h:action:paladin greater blessing of wisdom|greater blessing of wisdom] [h:action:paladin hammer of justice on enemy healer|hammer of justice on enemy healer]\r\n[h:action:paladin hammer of justice on snare target|hammer of justice on snare target] [h:action:paladin hammer of justice|hammer of justice] [h:action:paladin hammer of wrath|hammer of wrath] [h:action:paladin hand of reckoning|hand of reckoning]\r\n[h:action:paladin holy light on party|holy light on party] [h:action:paladin holy light|holy light] [h:action:paladin holy shield|holy shield] [h:action:paladin holy shock on party|holy shock on party] [h:action:paladin holy shock|holy shock]\r\n[h:action:paladin judgement|judgement] [h:action:paladin lay on hands on party|lay on hands on party] [h:action:paladin lay on hands|lay on hands] [h:action:paladin paladin aura|paladin aura] [h:action:paladin pve blessing on party|pve blessing on party]\r\n[h:action:paladin pve blessing|pve blessing] [h:action:paladin pve greater blessing on party|pve greater blessing on party] [h:action:paladin pve greater blessing|pve greater blessing] [h:action:paladin pvp blessing on party|pvp blessing on party]\r\n[h:action:paladin pvp blessing|pvp blessing] [h:action:paladin pvp greater blessing on party|pvp greater blessing on party] [h:action:paladin pvp greater blessing|pvp greater blessing] [h:action:paladin raid blessing on party|raid blessing on party]\r\n[h:action:paladin raid blessing|raid blessing] [h:action:paladin raid greater blessing on party|raid greater blessing on party] [h:action:paladin redemption|redemption] [h:action:paladin repentance on enemy healer|repentance on enemy healer]\r\n[h:action:paladin repentance on snare target|repentance on snare target] [h:action:paladin repentance|repentance] [h:action:paladin retribution aura|retribution aura] [h:action:paladin righteous fury|righteous fury]\r\n[h:action:paladin sanctity aura|sanctity aura] [h:action:paladin seal of command|seal of command] [h:action:paladin seal of light|seal of light] [h:action:paladin seal of vengeance|seal of vengeance] [h:action:paladin seal of wisdom|seal of wisdom]\r\n[h:action:paladin shadow resistance aura|shadow resistance aura] [h:action:paladin turn undead|turn undead] [h:action:paladin update pve strats|update pve strats] [h:action:paladin update pvp strats|update pvp strats]\r\n[h:action:paladin update raid strats|update raid strats] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start] [h:action:removeblessing of salvation|removeblessing of salvation]\r\n[h:action:removegreater blessing of salvation|removegreater blessing of salvation] [h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target] [h:action:set combat state|set combat state]\r\n[h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:stoneshield potion|stoneshield potion] [h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), (2367, 'value:can craft spell', 1, 'can craft spell [h:object|value] [c:cdebug values can craft spell|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (2368, 'list:deathknight action', 1, 'deathknight action : \r\n[h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:deathknight anti magic shell|anti magic shell] [h:action:deathknight anti magic zone|anti magic zone]\r\n[h:action:deathknight blood boil|blood boil] [h:action:deathknight blood tap|blood tap] [h:action:deathknight bone shield|bone shield] [h:action:deathknight corpse explosion|corpse explosion] [h:action:deathknight dark command|dark command]\r\n[h:action:deathknight death and decay|death and decay] [h:action:deathknight death coill|death coill] [h:action:deathknight death grip|death grip] [h:action:deathknight death pact|death pact] [h:action:deathknight death strike|death strike]\r\n[h:action:deathknight ghoul frenzy|ghoul frenzy] [h:action:deathknight horn of winter|horn of winter] [h:action:deathknight howling blast|howling blast] [h:action:deathknight icebound fortitude|icebound fortitude]\r\n[h:action:deathknight icy touch|icy touch] [h:action:deathknight improved icy talons|improved icy talons] [h:action:deathknight mind freeze|mind freeze] [h:action:deathknight pestilence|pestilence] [h:action:deathknight plague strike|plague strike]\r\n[h:action:deathknight raise dead|raise dead] [h:action:deathknight rune tap|rune tap] [h:action:deathknight unholy blight|unholy blight] [h:action:deathknight vampiric blood|vampiric blood] [h:action:hearthstone|hearthstone]\r\n[h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start]\r\n[h:action:reach melee|reach melee] [h:action:removeblessing of salvation|removeblessing of salvation] [h:action:removegreater blessing of salvation|removegreater blessing of salvation] [h:action:repop|repop] [h:action:reset|reset]\r\n[h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), - (2369, 'action:hunter aspect of the monkey', 1, 'aspect of the monkey [h:object|action] [c:do aspect of the monkey|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:enemy five yards|enemy five yards] with relevance (20.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), + (2369, 'action:hunter aspect of the monkey', 1, 'aspect of the monkey [h:object|action] [c:do aspect of the monkey|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the monkey|aspect of the monkey] with relevance (20.000) for [h:strategy:hunter aspect monkey|aspect monkey]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the monkey|aspect of the monkey] with relevance (20.000) for [h:strategy:hunter aspect monkey|aspect monkey]', '', '', '', '', '', '', '', '', '', 0), (2370, 'action:hunter tame beast', 1, 'tame beast [h:object|action] [c:do tame beast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter no beast|no beast] with relevance (1000.000) for [h:strategy:hunter dps|dps]', '', '', '', '', '', '', '', '', '', 0), - (2371, 'list:hunter action', 1, 'hunter action : \r\n[h:action:apply oil|apply oil] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:hearthstone|hearthstone] [h:action:hunter aimed shot|aimed shot]\r\n[h:action:hunter aspect of the cheetah|aspect of the cheetah] [h:action:hunter aspect of the hawk|aspect of the hawk] [h:action:hunter aspect of the monkey|aspect of the monkey] [h:action:hunter aspect of the pack|aspect of the pack]\r\n[h:action:hunter aspect of the viper|aspect of the viper] [h:action:hunter aspect of the wild|aspect of the wild] [h:action:hunter bestial wrath|bestial wrath] [h:action:hunter black arrow|black arrow] [h:action:hunter call pet|call pet]\r\n[h:action:hunter concussive shot|concussive shot] [h:action:hunter counterattack|counterattack] [h:action:hunter deterrence|deterrence] [h:action:hunter explosive trap|explosive trap] [h:action:hunter feed pet|feed pet]\r\n[h:action:hunter feign death|feign death] [h:action:hunter flare|flare] [h:action:hunter freezing trap|freezing trap] [h:action:hunter frost trap|frost trap] [h:action:hunter hunter\'s mark|hunter\'s mark] [h:action:hunter mend pet|mend pet]\r\n[h:action:hunter multi-shot|multi-shot] [h:action:hunter rapid fire|rapid fire] [h:action:hunter raptor strike|raptor strike] [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah]\r\n[h:action:hunter remove feign death|remove feign death] [h:action:hunter revive pet|revive pet] [h:action:hunter say::low ammo|say::low ammo] [h:action:hunter scare beast on cc|scare beast on cc]\r\n[h:action:hunter serpent sting on attacker|serpent sting on attacker] [h:action:hunter serpent sting|serpent sting] [h:action:hunter silencing shot on enemy healer|silencing shot on enemy healer] [h:action:hunter silencing shot|silencing shot]\r\n[h:action:hunter tame beast|tame beast] [h:action:hunter trueshot aura|trueshot aura] [h:action:hunter viper sting on attacker|viper sting on attacker] [h:action:hunter viper sting|viper sting] [h:action:hunter volley|volley]\r\n[h:action:hunter wyvern sting on snare target|wyvern sting on snare target] [h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:pull action|pull action]\r\n[h:action:pull end|pull end] [h:action:pull start|pull start] [h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state]\r\n[h:action:set non combat state|set non combat state] [h:action:shadowmeld|shadowmeld] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), - (2372, 'action:rogue apply deadly poison', 1, 'apply deadly poison [h:object|action] [c:do apply deadly poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] with relevance (10.000) for [h:strategy:rogue poisons assassination raid|poisons assassination raid]\r\nTriggers from: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] with relevance (10.000) for [h:strategy:rogue poisons combat raid|poisons combat raid]\r\nTriggers from: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] with relevance (10.000) for [h:strategy:rogue poison off deadly|poison off deadly]\r\nTriggers from: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] with relevance (10.000) for [h:strategy:rogue poisons subtlety raid|poisons subtlety raid]', '', '', '', '', '', '', '', '', '', 0), + (2371, 'list:hunter action', 1, 'hunter action : \r\n[h:action:-close,+ranged|-close,+ranged] [h:action:-ranged,+close|-ranged,+close] [h:action:apply oil|apply oil] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth]\r\n[h:action:free action potion|free action potion] [h:action:goblin sapper|goblin sapper] [h:action:hearthstone|hearthstone] [h:action:hunter aimed shot|aimed shot] [h:action:hunter aspect of the beast|aspect of the beast]\r\n[h:action:hunter aspect of the cheetah|aspect of the cheetah] [h:action:hunter aspect of the dragonhawk|aspect of the dragonhawk] [h:action:hunter aspect of the hawk|aspect of the hawk] [h:action:hunter aspect of the monkey|aspect of the monkey]\r\n[h:action:hunter aspect of the pack|aspect of the pack] [h:action:hunter aspect of the viper|aspect of the viper] [h:action:hunter aspect of the wild|aspect of the wild] [h:action:hunter bestial wrath|bestial wrath] [h:action:hunter call pet|call pet]\r\n[h:action:hunter concussive shot|concussive shot] [h:action:hunter counterattack|counterattack] [h:action:hunter deterrence|deterrence] [h:action:hunter feed pet|feed pet] [h:action:hunter feign death|feign death] [h:action:hunter flare|flare]\r\n[h:action:hunter hunter\'s mark|hunter\'s mark] [h:action:hunter mend pet|mend pet] [h:action:hunter multi-shot|multi-shot] [h:action:hunter rapid fire|rapid fire] [h:action:hunter raptor strike|raptor strike]\r\n[h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] [h:action:hunter remove feign death|remove feign death] [h:action:hunter revive pet|revive pet] [h:action:hunter say::no ammo|say::no ammo]\r\n[h:action:hunter scare beast|scare beast] [h:action:hunter scatter shot|scatter shot] [h:action:hunter scorpid sting|scorpid sting] [h:action:hunter serpent sting on attacker|serpent sting on attacker] [h:action:hunter serpent sting|serpent sting]\r\n[h:action:hunter tranquilizing shot|tranquilizing shot] [h:action:hunter trueshot aura|trueshot aura] [h:action:hunter update pve strats|update pve strats] [h:action:hunter update pvp strats|update pvp strats]\r\n[h:action:hunter update raid strats|update raid strats] [h:action:hunter viper sting on attacker|viper sting on attacker] [h:action:hunter viper sting|viper sting] [h:action:hunter volley|volley] [h:action:initialize pet|initialize pet]\r\n[h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start]\r\n[h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state]\r\n[h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), + (2372, 'action:rogue apply deadly poison', 1, 'apply deadly poison [h:object|action] [c:do apply deadly poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] with relevance (10.000) for [h:strategy:rogue poison off deadly|poison off deadly]\r\nTriggers from: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] with relevance (10.000) for [h:strategy:rogue poisons assassination raid|poisons assassination raid]\r\nTriggers from: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] with relevance (10.000) for [h:strategy:rogue poisons combat raid|poisons combat raid]\r\nTriggers from: [h:trigger:rogue apply deadly poison main hand|apply deadly poison main hand] with relevance (10.000) for [h:strategy:rogue poisons subtlety raid|poisons subtlety raid]', '', '', '', '', '', '', '', '', '', 0), (2373, 'action:rogue update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:rogue assassination|assassination]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:rogue combat|combat]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:rogue subtlety|subtlety]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:rogue assassination|assassination]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:rogue combat|combat]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:rogue subtlety|subtlety]', '', '', '', '', '', '', '', '', '', 0), (2374, 'action:rogue update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:rogue assassination|assassination]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:rogue combat|combat]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:rogue subtlety|subtlety]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:rogue assassination|assassination]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:rogue combat|combat]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:rogue subtlety|subtlety]', '', '', '', '', '', '', '', '', '', 0), (2375, 'action:rogue update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:rogue assassination|assassination]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:rogue combat|combat]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:rogue subtlety|subtlety]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:rogue assassination|assassination]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:rogue combat|combat]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:rogue subtlety|subtlety]', '', '', '', '', '', '', '', '', '', 0), - (2376, 'action:rogue apply anesthetic poison', 1, 'apply anesthetic poison [h:object|action] [c:do apply anesthetic poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply anesthetic poison main hand|apply anesthetic poison main hand] with relevance (10.000) for [h:strategy:rogue poison off anesthetic|poison off anesthetic]', '', '', '', '', '', '', '', '', '', 0), - (2377, 'action:rogue apply crippling poison', 1, 'apply crippling poison [h:object|action] [c:do apply crippling poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand] with relevance (10.000) for [h:strategy:rogue poisons assassination pvp|poisons assassination pvp]\r\nTriggers from: [h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand] with relevance (10.000) for [h:strategy:rogue poisons combat pvp|poisons combat pvp]\r\nTriggers from: [h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand] with relevance (10.000) for [h:strategy:rogue poison off crippling|poison off crippling]\r\nTriggers from: [h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand] with relevance (10.000) for [h:strategy:rogue poisons subtlety pvp|poisons subtlety pvp]', '', '', '', '', '', '', '', '', '', 0), - (2378, 'action:rogue apply mind poison', 1, 'apply mind poison [h:object|action] [c:do apply mind poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply mind poison main hand|apply mind poison main hand] with relevance (10.000) for [h:strategy:rogue poisons assassination pvp|poisons assassination pvp]\r\nTriggers from: [h:trigger:rogue apply mind poison main hand|apply mind poison main hand] with relevance (10.000) for [h:strategy:rogue poisons combat pvp|poisons combat pvp]\r\nTriggers from: [h:trigger:rogue apply mind poison main hand|apply mind poison main hand] with relevance (10.000) for [h:strategy:rogue poison main mind|poison main mind]\r\nTriggers from: [h:trigger:rogue apply mind poison main hand|apply mind poison main hand] with relevance (10.000) for [h:strategy:rogue poisons subtlety pvp|poisons subtlety pvp]', '', '', '', '', '', '', '', '', '', 0), + (2376, 'action:rogue apply anesthetic poison', 1, 'apply anesthetic poison [h:object|action] [c:do apply anesthetic poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply anesthetic poison main hand|apply anesthetic poison main hand] with relevance (10.000) for [h:strategy:rogue poison main anesthetic|poison main anesthetic]', '', '', '', '', '', '', '', '', '', 0), + (2377, 'action:rogue apply crippling poison', 1, 'apply crippling poison [h:object|action] [c:do apply crippling poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply crippling poison main hand|apply crippling poison main hand] with relevance (10.000) for [h:strategy:rogue poison main crippling|poison main crippling]', '', '', '', '', '', '', '', '', '', 0), + (2378, 'action:rogue apply mind poison', 1, 'apply mind poison [h:object|action] [c:do apply mind poison|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:rogue apply mind poison main hand|apply mind poison main hand] with relevance (10.000) for [h:strategy:rogue poison off mind|poison off mind]', '', '', '', '', '', '', '', '', '', 0), (2379, 'action:shaman stoneskin totem', 1, 'stoneskin totem [h:object|action] [c:do stoneskin totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totem earth stoneskin|totem earth stoneskin]', '', '', '', '', '', '', '', '', '', 0), (2380, 'action:shaman earthbind totem', 1, 'earthbind totem [h:object|action] [c:do earthbind totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate earth totem|trigger spec appropriate earth totem] with relevance (20.000) for [h:strategy:shaman totem earth earthbind|totem earth earthbind]', '', '', '', '', '', '', '', '', '', 0), - (2381, 'action:shaman flametongue weapon', 1, 'flametongue weapon [h:object|action] [c:do flametongue weapon|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (20.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]', '', '', '', '', '', '', '', '', '', 0), - (2382, 'action:shaman wrath of air totem', 1, 'wrath of air totem [h:object|action] [c:do wrath of air totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totem air wrath|totem air wrath]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), - (2383, 'action:shaman update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]', '', '', '', '', '', '', '', '', '', 0), + (2381, 'action:shaman flametongue weapon', 1, 'flametongue weapon [h:object|action] [c:do flametongue weapon|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff elemental pve|buff elemental pve]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff elemental pvp|buff elemental pvp]\r\nTriggers from: [h:trigger:shaman rockbiter weapon|rockbiter weapon] with relevance (10.000) for [h:strategy:shaman buff elemental raid|buff elemental raid]', '', '', '', '', '', '', '', '', '', 0), + (2382, 'action:shaman wrath of air totem', 1, 'wrath of air totem [h:object|action] [c:do wrath of air totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems elemental raid|totems elemental raid]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems elemental pve|totems elemental pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totem air wrath|totem air wrath]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems restoration pve|totems restoration pve]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems elemental pvp|totems elemental pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems restoration pvp|totems restoration pvp]\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totems restoration raid|totems restoration raid]', '', '', '', '', '', '', '', '', '', 0), + (2383, 'action:shaman update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman elemental|elemental]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman enhancement|enhancement]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman restoration|restoration]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:shaman restoration|restoration]', '', '', '', '', '', '', '', '', '', 0), (2384, 'action:shaman disease cleansing totem', 1, 'disease cleansing totem [h:object|action] [c:do disease cleansing totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate water totem|trigger spec appropriate water totem] with relevance (20.000) for [h:strategy:shaman totem water cleansing|totem water cleansing]', '', '', '', '', '', '', '', '', '', 0), (2385, 'action:shaman tranquil air totem', 1, 'tranquil air totem [h:object|action] [c:do tranquil air totem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:shaman trigger spec appropriate air totem|trigger spec appropriate air totem] with relevance (20.000) for [h:strategy:shaman totem air tranquil|totem air tranquil]', '', '', '', '', '', '', '', '', '', 0), - (2386, 'list:shaman action', 1, 'shaman action : \r\n[h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:goblin sapper|goblin sapper] [h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell]\r\n[h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:oil of immolation|oil of immolation] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start]\r\n[h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state]\r\n[h:action:shaman ancestral spirit|ancestral spirit] [h:action:shaman bloodlust|bloodlust] [h:action:shaman call of the ancestors|call of the ancestors] [h:action:shaman call of the elements|call of the elements]\r\n[h:action:shaman call of the spirits|call of the spirits] [h:action:shaman chain heal|chain heal] [h:action:shaman chain lightning|chain lightning] [h:action:shaman cleanse spirit curse on party|cleanse spirit curse on party]\r\n[h:action:shaman cleanse spirit disease on party|cleanse spirit disease on party] [h:action:shaman cleanse spirit poison on party|cleanse spirit poison on party] [h:action:shaman cleanse spirit|cleanse spirit]\r\n[h:action:shaman cure disease on party|cure disease on party] [h:action:shaman cure disease|cure disease] [h:action:shaman cure poison on party|cure poison on party] [h:action:shaman cure poison|cure poison]\r\n[h:action:shaman disease cleansing totem|disease cleansing totem] [h:action:shaman earth shield on party|earth shield on party] [h:action:shaman earth shock|earth shock] [h:action:shaman earthbind totem|earthbind totem]\r\n[h:action:shaman earthliving weapon|earthliving weapon] [h:action:shaman fire nova|fire nova] [h:action:shaman fire resistance totem|fire resistance totem] [h:action:shaman flametongue totem|flametongue totem]\r\n[h:action:shaman flametongue weapon|flametongue weapon] [h:action:shaman frost resistance totem|frost resistance totem] [h:action:shaman frost shock on snare target|frost shock on snare target] [h:action:shaman ghost wolf|ghost wolf]\r\n[h:action:shaman grace of air totem|grace of air totem] [h:action:shaman grounding totem|grounding totem] [h:action:shaman healing stream totem|healing stream totem] [h:action:shaman healing wave on party|healing wave on party]\r\n[h:action:shaman healing wave|healing wave] [h:action:shaman heroism|heroism] [h:action:shaman lesser healing wave on party|lesser healing wave on party] [h:action:shaman lesser healing wave|lesser healing wave]\r\n[h:action:shaman lightning shield|lightning shield] [h:action:shaman magma totem|magma totem] [h:action:shaman mana spring totem|mana spring totem] [h:action:shaman nature resistance totem|nature resistance totem]\r\n[h:action:shaman poison cleansing totem|poison cleansing totem] [h:action:shaman purge|purge] [h:action:shaman riptide on party|riptide on party] [h:action:shaman riptide|riptide] [h:action:shaman searing totem|searing totem]\r\n[h:action:shaman stoneclaw totem|stoneclaw totem] [h:action:shaman stoneskin totem|stoneskin totem] [h:action:shaman stormstrike|stormstrike] [h:action:shaman strength of earth totem|strength of earth totem]\r\n[h:action:shaman totem of wrath|totem of wrath] [h:action:shaman totemic recall|totemic recall] [h:action:shaman tranquil air totem|tranquil air totem] [h:action:shaman tremor totem|tremor totem] [h:action:shaman update pve strats|update pve strats]\r\n[h:action:shaman update pvp strats|update pvp strats] [h:action:shaman update raid strats|update raid strats] [h:action:shaman water breathing on party|water breathing on party] [h:action:shaman water breathing|water breathing]\r\n[h:action:shaman water shield|water shield] [h:action:shaman water walking on party|water walking on party] [h:action:shaman water walking|water walking] [h:action:shaman wind shear on enemy healer|wind shear on enemy healer]\r\n[h:action:shaman wind shear|wind shear] [h:action:shaman windfury totem|windfury totem] [h:action:shaman windfury weapon|windfury weapon] [h:action:shaman windwall totem|windwall totem] [h:action:shaman wrath of air totem|wrath of air totem]\r\n[h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), - (2387, 'action:shoot', 1, 'shoot [h:object|action] [c:do shoot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:warlock have aggro|have aggro] with relevance (29.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:warlock have aggro|have aggro] with relevance (29.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:warlock have aggro|have aggro] with relevance (29.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock destruction pve|destruction pve]', '', '', '', '', '', '', '', '', '', 0), - (2388, 'action:mage mana gem', 1, 'mana gem [h:object|action] [c:do mana gem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (21.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), + (2386, 'list:shaman action', 1, 'shaman action : \r\n[h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:free action potion|free action potion] [h:action:goblin sapper|goblin sapper]\r\n[h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal] [h:action:move to dark portal|move to dark portal] [h:action:oil of immolation|oil of immolation] [h:action:pull action|pull action]\r\n[h:action:pull end|pull end] [h:action:pull start|pull start] [h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state]\r\n[h:action:set non combat state|set non combat state] [h:action:shaman ancestral spirit|ancestral spirit] [h:action:shaman chain heal|chain heal] [h:action:shaman chain lightning|chain lightning]\r\n[h:action:shaman cure disease on party|cure disease on party] [h:action:shaman cure disease|cure disease] [h:action:shaman cure poison on party|cure poison on party] [h:action:shaman cure poison|cure poison]\r\n[h:action:shaman disease cleansing totem|disease cleansing totem] [h:action:shaman earth shock|earth shock] [h:action:shaman earthbind totem|earthbind totem] [h:action:shaman earthliving weapon|earthliving weapon] [h:action:shaman fire nova|fire nova]\r\n[h:action:shaman fire resistance totem|fire resistance totem] [h:action:shaman flametongue totem|flametongue totem] [h:action:shaman flametongue weapon|flametongue weapon] [h:action:shaman frost resistance totem|frost resistance totem]\r\n[h:action:shaman frost shock on snare target|frost shock on snare target] [h:action:shaman ghost wolf|ghost wolf] [h:action:shaman grace of air totem|grace of air totem] [h:action:shaman grounding totem|grounding totem]\r\n[h:action:shaman healing stream totem|healing stream totem] [h:action:shaman healing wave on party|healing wave on party] [h:action:shaman healing wave|healing wave] [h:action:shaman lesser healing wave on party|lesser healing wave on party]\r\n[h:action:shaman lesser healing wave|lesser healing wave] [h:action:shaman lightning shield|lightning shield] [h:action:shaman magma totem|magma totem] [h:action:shaman mana spring totem|mana spring totem]\r\n[h:action:shaman mana tide totem|mana tide totem] [h:action:shaman nature resistance totem|nature resistance totem] [h:action:shaman poison cleansing totem|poison cleansing totem] [h:action:shaman purge|purge]\r\n[h:action:shaman riptide on party|riptide on party] [h:action:shaman riptide|riptide] [h:action:shaman searing totem|searing totem] [h:action:shaman stoneclaw totem|stoneclaw totem] [h:action:shaman stoneskin totem|stoneskin totem]\r\n[h:action:shaman stormstrike|stormstrike] [h:action:shaman strength of earth totem|strength of earth totem] [h:action:shaman totem of wrath|totem of wrath] [h:action:shaman tranquil air totem|tranquil air totem]\r\n[h:action:shaman tremor totem|tremor totem] [h:action:shaman update pve strats|update pve strats] [h:action:shaman update pvp strats|update pvp strats] [h:action:shaman update raid strats|update raid strats]\r\n[h:action:shaman water breathing on party|water breathing on party] [h:action:shaman water breathing|water breathing] [h:action:shaman water walking on party|water walking on party] [h:action:shaman water walking|water walking]\r\n[h:action:shaman wind shear on enemy healer|wind shear on enemy healer] [h:action:shaman wind shear|wind shear] [h:action:shaman windfury totem|windfury totem] [h:action:shaman windfury weapon|windfury weapon]\r\n[h:action:shaman windwall totem|windwall totem] [h:action:shaman wrath of air totem|wrath of air totem] [h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), + (2387, 'action:shoot', 1, 'shoot [h:object|action] [c:do shoot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:warlock have aggro|have aggro] with relevance (29.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:warlock have aggro|have aggro] with relevance (29.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:warlock have aggro|have aggro] with relevance (29.000) for [h:strategy:warlock destruction raid|destruction raid]\r\nTriggers from: [h:trigger:no mana|no mana] with relevance (10.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (2388, 'action:mage mana gem', 1, 'mana gem [h:object|action] [c:do mana gem|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (24.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (24.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (24.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (24.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (24.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (24.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (24.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (24.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:low mana|low mana] with relevance (24.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), (2389, 'action:mage learn glyph of mirror image', 1, 'learn glyph of mirror image [h:object|action] [c:do learn glyph of mirror image|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] with relevance (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] with relevance (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] with relevance (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] with relevance (11.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] with relevance (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage learn glyph of mirror image|learn glyph of mirror image] with relevance (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (2390, 'action:mage learn glyph of fireball', 1, 'learn glyph of fireball [h:object|action] [c:do learn glyph of fireball|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] with relevance (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] with relevance (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] with relevance (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] with relevance (11.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] with relevance (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage learn glyph of fireball|learn glyph of fireball] with relevance (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (2391, 'action:mage learn glyph of frostbolt', 1, 'learn glyph of frostbolt [h:object|action] [c:do learn glyph of frostbolt|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] with relevance (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] with relevance (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] with relevance (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] with relevance (11.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] with relevance (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage learn glyph of frostbolt|learn glyph of frostbolt] with relevance (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (2392, 'action:mage learn glyph of living bomb', 1, 'learn glyph of living bomb [h:object|action] [c:do learn glyph of living bomb|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] with relevance (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] with relevance (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] with relevance (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] with relevance (11.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] with relevance (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage learn glyph of living bomb|learn glyph of living bomb] with relevance (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (2393, 'action:mage learn glyph of molten armor', 1, 'learn glyph of molten armor [h:object|action] [c:do learn glyph of molten armor|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] with relevance (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] with relevance (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] with relevance (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] with relevance (11.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] with relevance (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage learn glyph of molten armor|learn glyph of molten armor] with relevance (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), - (2394, 'action:mage conjure mana gem', 1, 'conjure mana gem [h:object|action] [c:do conjure mana gem|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), + (2394, 'action:mage conjure mana gem', 1, 'conjure mana gem [h:object|action] [c:do conjure mana gem|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage frost raid|frost raid]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage no mana gem trigger|no mana gem trigger] with relevance (10.000) for [h:strategy:mage frost pve|frost pve]', '', '', '', '', '', '', '', '', '', 0), (2395, 'action:mage remove glyph of living bomb', 1, 'remove glyph of living bomb [h:object|action] [c:do remove glyph of living bomb|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] with relevance (11.000) for [h:strategy:mage arcane raid|arcane raid]\r\nTriggers from: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] with relevance (11.000) for [h:strategy:mage arcane pve|arcane pve]\r\nTriggers from: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] with relevance (11.000) for [h:strategy:mage arcane pvp|arcane pvp]\r\nTriggers from: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] with relevance (11.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] with relevance (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] with relevance (11.000) for [h:strategy:mage fire pve|fire pve]\r\nTriggers from: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] with relevance (11.000) for [h:strategy:mage fire pvp|fire pvp]\r\nTriggers from: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] with relevance (11.000) for [h:strategy:mage fire raid|fire raid]\r\nTriggers from: [h:trigger:mage remove glyph of living bomb|remove glyph of living bomb] with relevance (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (2396, 'action:mage update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:mage fire|fire]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:mage arcane|arcane]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:mage frost|frost]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:mage fire|fire]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:mage arcane|arcane]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:mage frost|frost]', '', '', '', '', '', '', '', '', '', 0), (2397, 'action:mage update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:mage fire|fire]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:mage arcane|arcane]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:mage frost|frost]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:mage fire|fire]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:mage arcane|arcane]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:mage frost|frost]', '', '', '', '', '', '', '', '', '', 0), - (2398, 'action:mage cold snap', 1, 'cold snap [h:object|action] [c:do cold snap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage cold snap|cold snap] with relevance (23.000) for [h:strategy:mage buff frost pve|buff frost pve]\r\nTriggers from: [h:trigger:mage cold snap|cold snap] with relevance (23.000) for [h:strategy:mage buff frost pvp|buff frost pvp]\r\nTriggers from: [h:trigger:mage cold snap|cold snap] with relevance (23.000) for [h:strategy:mage buff frost raid|buff frost raid]', '', '', '', '', '', '', '', '', '', 0), + (2398, 'action:mage cold snap', 1, 'cold snap [h:object|action] [c:do cold snap|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage cold snap|cold snap] with relevance (23.000) for [h:strategy:mage boost frost pve|boost frost pve]\r\nTriggers from: [h:trigger:mage cold snap|cold snap] with relevance (23.000) for [h:strategy:mage boost frost pvp|boost frost pvp]\r\nTriggers from: [h:trigger:mage cold snap|cold snap] with relevance (23.000) for [h:strategy:mage boost frost raid|boost frost raid]', '', '', '', '', '', '', '', '', '', 0), (2399, 'action:mage deep freeze', 1, 'deep freeze [h:object|action] [c:do deep freeze|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:mage fingers of frost|fingers of frost] with relevance (11.000) for [h:strategy:mage frost pve|frost pve]\r\nTriggers from: [h:trigger:mage fingers of frost|fingers of frost] with relevance (11.000) for [h:strategy:mage frost pvp|frost pvp]\r\nTriggers from: [h:trigger:mage fingers of frost|fingers of frost] with relevance (11.000) for [h:strategy:mage frost raid|frost raid]', '', '', '', '', '', '', '', '', '', 0), (2400, 'action:warlock update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warlock affliction|affliction]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warlock demonology|demonology]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warlock destruction|destruction]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warlock affliction|affliction]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warlock demonology|demonology]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:warlock destruction|destruction]', '', '', '', '', '', '', '', '', '', 0), (2401, 'action:warlock unstable affliction on attacker', 1, 'unstable affliction on attacker [h:object|action] [c:do unstable affliction on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock unstable affliction on attacker|unstable affliction on attacker] with relevance (24.000) for [h:strategy:warlock aoe affliction raid|aoe affliction raid]\r\nTriggers from: [h:trigger:warlock unstable affliction on attacker|unstable affliction on attacker] with relevance (24.000) for [h:strategy:warlock aoe affliction pve|aoe affliction pve]\r\nTriggers from: [h:trigger:warlock unstable affliction on attacker|unstable affliction on attacker] with relevance (24.000) for [h:strategy:warlock aoe affliction pvp|aoe affliction pvp]', '', '', '', '', '', '', '', '', '', 0), - (2402, 'action:warlock summon voidwalker', 1, 'summon voidwalker [h:object|action] [c:do summon voidwalker|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (11.000) for [h:strategy:warlock pet demonology pve|pet demonology pve]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (11.000) for [h:strategy:warlock pet affliction pve|pet affliction pve]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (11.000) for [h:strategy:warlock pet destruction pve|pet destruction pve]\r\nTriggers from: [h:trigger:warlock no voidwalker|no voidwalker] with relevance (20.000) for [h:strategy:warlock pet voidwalker|pet voidwalker]', '', '', '', '', '', '', '', '', '', 0), - (2403, 'action:warlock summon imp', 1, 'summon imp [h:object|action] [c:do summon imp|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet demonology pve|pet demonology pve]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet affliction pve|pet affliction pve]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet affliction raid|pet affliction raid]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet destruction pve|pet destruction pve]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet destruction raid|pet destruction raid]\r\nTriggers from: [h:trigger:warlock no imp|no imp] with relevance (20.000) for [h:strategy:warlock pet imp|pet imp]', '', '', '', '', '', '', '', '', '', 0), - (2404, 'action:warlock summon succubus', 1, 'summon succubus [h:object|action] [c:do summon succubus|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet demonology pvp|pet demonology pvp]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet affliction pvp|pet affliction pvp]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet destruction pvp|pet destruction pvp]\r\nTriggers from: [h:trigger:warlock no succubus|no succubus] with relevance (20.000) for [h:strategy:warlock pet succubus|pet succubus]', '', '', '', '', '', '', '', '', '', 0), + (2402, 'action:warlock summon voidwalker', 1, 'summon voidwalker [h:object|action] [c:do summon voidwalker|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (11.000) for [h:strategy:warlock pet affliction pve|pet affliction pve]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (11.000) for [h:strategy:warlock pet demonology pve|pet demonology pve]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (11.000) for [h:strategy:warlock pet destruction pve|pet destruction pve]\r\nTriggers from: [h:trigger:warlock no voidwalker|no voidwalker] with relevance (20.000) for [h:strategy:warlock pet voidwalker|pet voidwalker]', '', '', '', '', '', '', '', '', '', 0), + (2403, 'action:warlock summon imp', 1, 'summon imp [h:object|action] [c:do summon imp|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet destruction raid|pet destruction raid]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet affliction pve|pet affliction pve]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet affliction raid|pet affliction raid]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet demonology pve|pet demonology pve]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet destruction pve|pet destruction pve]\r\nTriggers from: [h:trigger:warlock no imp|no imp] with relevance (20.000) for [h:strategy:warlock pet imp|pet imp]', '', '', '', '', '', '', '', '', '', 0), + (2404, 'action:warlock summon succubus', 1, 'summon succubus [h:object|action] [c:do summon succubus|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet destruction pvp|pet destruction pvp]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet affliction pvp|pet affliction pvp]\r\nTriggers from: [h:trigger:no pet|no pet] with relevance (10.000) for [h:strategy:warlock pet demonology pvp|pet demonology pvp]\r\nTriggers from: [h:trigger:warlock no succubus|no succubus] with relevance (20.000) for [h:strategy:warlock pet succubus|pet succubus]', '', '', '', '', '', '', '', '', '', 0), (2405, 'action:warlock curse of the elements', 1, 'curse of the elements [h:object|action] [c:do curse of the elements|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of the elements|curse of the elements] with relevance (20.000) for [h:strategy:warlock curse elements|curse elements]', '', '', '', '', '', '', '', '', '', 0), (2406, 'action:warlock curse of recklessness', 1, 'curse of recklessness [h:object|action] [c:do curse of recklessness|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of recklessness|curse of recklessness] with relevance (20.000) for [h:strategy:warlock curse recklessness|curse recklessness]', '', '', '', '', '', '', '', '', '', 0), (2407, 'action:warlock curse of tongues', 1, 'curse of tongues [h:object|action] [c:do curse of tongues|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of tongues|curse of tongues] with relevance (20.000) for [h:strategy:warlock curse tongues|curse tongues]', '', '', '', '', '', '', '', '', '', 0), (2408, 'action:warlock curse of weakness', 1, 'curse of weakness [h:object|action] [c:do curse of weakness|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of weakness|curse of weakness] with relevance (20.000) for [h:strategy:warlock curse weakness|curse weakness]', '', '', '', '', '', '', '', '', '', 0), (2409, 'value:party tank without aura', 1, 'party tank without aura [h:object|value] [c:cdebug values party tank without aura|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (2410, 'list:druid action', 1, 'druid action : \r\n[h:action:apply oil|apply oil] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:druid abolish poison on party|abolish poison on party]\r\n[h:action:druid abolish poison|abolish poison] [h:action:druid bash on enemy healer|bash on enemy healer] [h:action:druid bash|bash] [h:action:druid cat form|cat form] [h:action:druid claw|claw] [h:action:druid cower|cower] [h:action:druid dash|dash]\r\n[h:action:druid demoralizing roar|demoralizing roar] [h:action:druid dire bear form|dire bear form] [h:action:druid entangling roots on snare target|entangling roots on snare target] [h:action:druid entangling roots|entangling roots]\r\n[h:action:druid faerie fire (feral)|faerie fire (feral)] [h:action:druid faerie fire|faerie fire] [h:action:druid ferocious bite|ferocious bite] [h:action:druid gift of the wild on party|gift of the wild on party] [h:action:druid growl|growl]\r\n[h:action:druid healing touch on party|healing touch on party] [h:action:druid healing touch|healing touch] [h:action:druid hibernate on cc|hibernate on cc] [h:action:druid innervate|innervate] [h:action:druid insect swarm|insect swarm]\r\n[h:action:druid mark of the wild on party|mark of the wild on party] [h:action:druid mark of the wild|mark of the wild] [h:action:druid moonfire|moonfire] [h:action:druid nature\'s grasp|nature\'s grasp]\r\n[h:action:druid nature\'s swiftness|nature\'s swiftness] [h:action:druid omen of clarity|omen of clarity] [h:action:druid pounce|pounce] [h:action:druid prowl|prowl] [h:action:druid rake|rake] [h:action:druid rebirth|rebirth]\r\n[h:action:druid regrowth on party|regrowth on party] [h:action:druid regrowth|regrowth] [h:action:druid rejuvenation on party|rejuvenation on party] [h:action:druid rejuvenation|rejuvenation] [h:action:druid remove curse on party|remove curse on party]\r\n[h:action:druid remove curse|remove curse] [h:action:druid revive|revive] [h:action:druid rip|rip] [h:action:druid shred|shred] [h:action:druid starfall|starfall] [h:action:druid starfire|starfire] [h:action:druid survival instincts|survival instincts]\r\n[h:action:druid swipe (bear)|swipe (bear)] [h:action:druid swipe (cat)|swipe (cat)] [h:action:druid thorns on party|thorns on party] [h:action:druid thorns|thorns] [h:action:druid tiger\'s fury|tiger\'s fury] [h:action:druid tranquility|tranquility]\r\n[h:action:druid travel form|travel form] [h:action:druid tree of life|tree of life] [h:action:druid wrath|wrath] [h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell] [h:action:move from dark portal|move from dark portal]\r\n[h:action:move out of enemy contact|move out of enemy contact] [h:action:move to dark portal|move to dark portal] [h:action:pull action|pull action] [h:action:pull end|pull end] [h:action:pull start|pull start]\r\n[h:action:removeblessing of salvation|removeblessing of salvation] [h:action:removegreater blessing of salvation|removegreater blessing of salvation] [h:action:repop|repop] [h:action:reset|reset] [h:action:select new target|select new target]\r\n[h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), + (2410, 'list:druid action', 1, 'druid action : \r\n[h:action:apply oil|apply oil] [h:action:check mount state|check mount state] [h:action:check values|check values] [h:action:dark portal azeroth|dark portal azeroth] [h:action:druid abolish poison on party|abolish poison on party]\r\n[h:action:druid abolish poison|abolish poison] [h:action:druid bash on enemy healer|bash on enemy healer] [h:action:druid bash|bash] [h:action:druid caster form|caster form] [h:action:druid cat form|cat form]\r\n[h:action:druid challenging roar|challenging roar] [h:action:druid check stealth|check stealth] [h:action:druid cower|cower] [h:action:druid dash|dash] [h:action:druid demoralizing roar|demoralizing roar] [h:action:druid dire bear form|dire bear form]\r\n[h:action:druid enrage|enrage] [h:action:druid entangling roots|entangling roots] [h:action:druid faerie fire (feral)|faerie fire (feral)] [h:action:druid faerie fire|faerie fire] [h:action:druid feral charge|feral charge]\r\n[h:action:druid ferocious bite|ferocious bite] [h:action:druid frenzied regeneration|frenzied regeneration] [h:action:druid gift of the wild on party|gift of the wild on party] [h:action:druid growl|growl]\r\n[h:action:druid healing touch on party|healing touch on party] [h:action:druid healing touch|healing touch] [h:action:druid hibernate|hibernate] [h:action:druid innervate|innervate] [h:action:druid insect swarm|insect swarm]\r\n[h:action:druid mangle (bear)|mangle (bear)] [h:action:druid mangle (cat)|mangle (cat)] [h:action:druid mark of the wild on party|mark of the wild on party] [h:action:druid mark of the wild|mark of the wild] [h:action:druid moonfire|moonfire]\r\n[h:action:druid moonkin form|moonkin form] [h:action:druid nature\'s grasp|nature\'s grasp] [h:action:druid nature\'s swiftness|nature\'s swiftness] [h:action:druid omen of clarity|omen of clarity] [h:action:druid pounce|pounce] [h:action:druid prowl|prowl]\r\n[h:action:druid rake|rake] [h:action:druid ravage|ravage] [h:action:druid rebirth|rebirth] [h:action:druid regrowth on party|regrowth on party] [h:action:druid regrowth|regrowth] [h:action:druid rejuvenation on party|rejuvenation on party]\r\n[h:action:druid rejuvenation|rejuvenation] [h:action:druid remove curse on party|remove curse on party] [h:action:druid remove curse|remove curse] [h:action:druid rip|rip] [h:action:druid shred|shred] [h:action:druid starfall|starfall]\r\n[h:action:druid starfire|starfire] [h:action:druid swipe (cat)|swipe (cat)] [h:action:druid swipe|swipe] [h:action:druid thorns on party|thorns on party] [h:action:druid thorns|thorns] [h:action:druid tiger\'s fury|tiger\'s fury]\r\n[h:action:druid tranquility|tranquility] [h:action:druid travel form|travel form] [h:action:druid unstealth|unstealth] [h:action:druid update pve strats|update pve strats] [h:action:druid update pvp strats|update pvp strats]\r\n[h:action:druid update raid strats|update raid strats] [h:action:free action potion|free action potion] [h:action:goblin sapper|goblin sapper] [h:action:hearthstone|hearthstone] [h:action:lightwell|lightwell]\r\n[h:action:move from dark portal|move from dark portal] [h:action:move out of enemy contact|move out of enemy contact] [h:action:move to dark portal|move to dark portal] [h:action:pull action|pull action] [h:action:pull end|pull end]\r\n[h:action:pull start|pull start] [h:action:removeblessing of salvation|removeblessing of salvation] [h:action:removegreater blessing of salvation|removegreater blessing of salvation] [h:action:repop|repop] [h:action:reset|reset]\r\n[h:action:select new target|select new target] [h:action:set combat state|set combat state] [h:action:set dead state|set dead state] [h:action:set non combat state|set non combat state] [h:action:stoneshield potion|stoneshield potion]\r\n[h:action:throw grenade|throw grenade] [h:action:use trinket|use trinket] ', '', '', '', '', '', '', '', '', '', 0), (2411, 'value:action useful', 1, 'action useful [h:object|value] [c:cdebug values action useful|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (2412, 'value:add hazard', 1, 'add hazard [h:object|value] [c:cdebug values add hazard|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (2413, 'value:can free attack', 1, 'can free attack [h:object|value] [c:cdebug values can free attack|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), @@ -2441,8 +2442,507 @@ INSERT INTO `ai_playerbot_help_texts` (`id`, `name`, `template_changed`, `templa (2420, 'value:nearest stealthed units', 1, 'nearest stealthed units [h:object|value] [c:cdebug values nearest stealthed units|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (2421, 'value:need quest objective', 1, 'need quest objective [h:object|value] [c:cdebug values need quest objective|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), (2422, 'value:need quest reward', 1, 'need quest reward [h:object|value] [c:cdebug values need quest reward|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), - (2423, 'chatfilter:gear', 1, 'gear [h:object|chatfilter]\r\nThis filter selects bots based on gear level.\r\nExamples:\r\n@tier1: All bots that have an avarage item level comparable to tier1\r\n@tier2-3: All bots an avarage item level comparable to tier2 or tier3.', '', '', '', '', '', '', '', '', '', 0); - + (2423, 'chatfilter:gear', 1, 'gear [h:object|chatfilter]\r\nThis filter selects bots based on gear level.\r\nExamples:\r\n@tier1: All bots that have an avarage item level comparable to tier1\r\n@tier2-3: All bots an avarage item level comparable to tier2 or tier3.', '', '', '', '', '', '', '', '', '', 0), + (2424, 'strategy:druid stealth dps feral pve', 1, 'stealth dps feral pve [h:object|strategy] [c:co ~stealth dps feral pve|toggle combat][c:nc ~stealth dps feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid pounce|pounce] (13.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid check stealth|check stealth] (90.000)\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid ravage|ravage] (12.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid unstealth|unstealth] (10.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid prowl|prowl] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid check stealth|check stealth] (20.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2425, 'strategy:paladin boost retribution pvp', 1, 'boost retribution pvp [h:object|strategy] [c:co ~boost retribution pvp|toggle combat][c:nc ~boost retribution pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2426, 'action:enable netherspite fight strategy', 1, 'enable netherspite fight strategy [h:object|action] [c:do enable netherspite fight strategy|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|start netherspite fight] with relevance (100.000) for [h:strategy|karazhan]', '', '', '', '', '', '', '', '', '', 0), + (2427, 'strategy:shaman boost elemental raid', 1, 'boost elemental raid [h:object|strategy] [c:co ~boost elemental raid|toggle combat][c:nc ~boost elemental raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2428, 'strategy:rogue boost subtlety pve', 1, 'boost subtlety pve [h:object|strategy] [c:co ~boost subtlety pve|toggle combat][c:nc ~boost subtlety pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue preparation|preparation] (23.000)', '', '', '', '', '', '', '', '', '', 0), + (2429, 'strategy:hunter survival pvp', 1, 'survival pvp [h:object|strategy] [c:co ~survival pvp|toggle combat][c:nc ~survival pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aimed shot|aimed shot] do [h:action:hunter aimed shot|aimed shot] (12.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:hunter hunter\'s mark|hunter\'s mark] do [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000)\r\nOn: [h:trigger:hunter counterattack|counterattack] do [h:action:hunter counterattack|counterattack] (22.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:hunter raptor strike|raptor strike] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (21.000)\r\nOn: [h:trigger:hunter switch to melee|switch to melee] do [h:action:-ranged,+close|-ranged,+close] (30.000)\r\nOn: [h:trigger:hunter switch to ranged|switch to ranged] do [h:action:-close,+ranged|-close,+ranged] (43.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:hunter auto shot|auto shot] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:hunter item count|item count] do [h:action:hunter say::no ammo|say::no ammo] (10.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:dispel enrage|dispel enrage] do [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2430, 'action:free action potion', 1, 'free action potion [h:object|action] [c:do free action potion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:random|random] with relevance (20.000) for [h:strategy:druid balance pvp|balance pvp]\r\nTriggers from: [h:trigger:random|random] with relevance (20.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:random|random] with relevance (20.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nTriggers from: [h:trigger:random|random] with relevance (20.000) for [h:strategy:druid tank feral pvp|tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (2431, 'strategy:druid aoe restoration pve', 1, 'aoe restoration pve [h:object|strategy] [c:co ~aoe restoration pve|toggle combat][c:nc ~aoe restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2432, 'trigger:quest reward', 1, 'quest reward [h:object|trigger] [c:quest reward|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|quest reward] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|quest reward] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|quest reward] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|quest reward] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2433, 'strategy:hunter sting survival pve', 1, 'sting survival pve [h:object|strategy] [c:co ~sting survival pve|toggle combat][c:nc ~sting survival pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter viper sting|viper sting] (15.000)[h:action:hunter serpent sting|serpent sting] (14.000)\r\nOn: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] do [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000)\r\nOn: [h:trigger:hunter viper sting on attacker|viper sting on attacker] do [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2434, 'strategy:druid cc restoration raid', 1, 'cc restoration raid [h:object|strategy] [c:co ~cc restoration raid|toggle combat][c:nc ~cc restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:druid nature\'s grasp|nature\'s grasp] (20.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2435, 'strategy:warrior boost protection pvp', 1, 'boost protection pvp [h:object|strategy] [c:co ~boost protection pvp|toggle combat][c:nc ~boost protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2436, 'strategy:druid boost restoration pve', 1, 'boost restoration pve [h:object|strategy] [c:co ~boost restoration pve|toggle combat][c:nc ~boost restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] do [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2437, 'action:priest smite', 1, 'smite [h:object|action] [c:do smite|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest smite|smite] with relevance (11.000) for [h:strategy:priest offdps pve|offdps pve]\r\nTriggers from: [h:trigger:priest smite|smite] with relevance (11.000) for [h:strategy:priest offdps pvp|offdps pvp]\r\nTriggers from: [h:trigger:priest smite|smite] with relevance (11.000) for [h:strategy:priest offdps raid|offdps raid]', '', '', '', '', '', '', '', '', '', 0), + (2438, 'value:manual follow target', 1, 'manual follow target [h:object|value] [c:cdebug values manual follow target|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2439, 'strategy:druid boost dps feral pve', 1, 'boost dps feral pve [h:object|strategy] [c:co ~boost dps feral pve|toggle combat][c:nc ~boost dps feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2440, 'strategy:priest cc shadow raid', 1, 'cc shadow raid [h:object|strategy] [c:co ~cc shadow raid|toggle combat][c:nc ~cc shadow raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest psychic scream|psychic scream] (40.000)\r\nOn: [h:trigger:priest shackle undead|shackle undead] do [h:action:priest shackle undead|shackle undead] (40.000)\r\nOn: [h:trigger:priest silence|silence] do [h:action:priest silence|silence] (41.000)\r\nOn: [h:trigger:priest silence on enemy healer|silence on enemy healer] do [h:action:priest silence on enemy healer|silence on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2441, 'strategy:druid cure restoration pvp', 1, 'cure restoration pvp [h:object|strategy] [c:co ~cure restoration pvp|toggle combat][c:nc ~cure restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2442, 'action:hunter update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:hunter beast mastery|beast mastery]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:hunter marksmanship|marksmanship]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:hunter survival|survival]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:hunter beast mastery|beast mastery]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:hunter marksmanship|marksmanship]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:hunter survival|survival]', '', '', '', '', '', '', '', '', '', 0), + (2443, 'strategy:shaman cc enhancement raid', 1, 'cc enhancement raid [h:object|strategy] [c:co ~cc enhancement raid|toggle combat][c:nc ~cc enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2444, 'trigger:quest update failed timer', 1, 'quest update failed timer [h:object|trigger] [c:quest update failed timer|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|quest update failed timer] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|quest update failed timer] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|quest update failed timer] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2445, 'action:druid update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid balance|balance]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid balance|balance]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]', '', '', '', '', '', '', '', '', '', 0), + (2446, 'strategy:hunter buff marksmanship pve', 1, 'buff marksmanship pve [h:object|strategy] [c:co ~buff marksmanship pve|toggle combat][c:nc ~buff marksmanship pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter deterrence|deterrence] (91.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:hunter trueshot aura|trueshot aura] do [h:action:hunter trueshot aura|trueshot aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2447, 'strategy:hunter cc beast mastery pve', 1, 'cc beast mastery pve [h:object|strategy] [c:co ~cc beast mastery pve|toggle combat][c:nc ~cc beast mastery pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy fifteen yards|enemy fifteen yards] do [h:action:hunter concussive shot|concussive shot] (21.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter scatter shot|scatter shot] (42.000)\r\nOn: [h:trigger:hunter freezing trap|freezing trap] do [h:action:hunter feign death|feign death] (41.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter scare beast|scare beast] do [h:action:hunter scare beast|scare beast] (22.000)', '', '', '', '', '', '', '', '', '', 0), + (2448, 'value:manual bool', 1, 'manual bool [h:object|value] [c:cdebug values manual bool|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2449, 'strategy:shaman boost enhancement raid', 1, 'boost enhancement raid [h:object|strategy] [c:co ~boost enhancement raid|toggle combat][c:nc ~boost enhancement raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2450, 'strategy:hunter survival', 1, 'survival [h:object|strategy] [c:co ~survival|toggle combat][c:nc ~survival|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:hunter update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:hunter update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:hunter update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:hunter update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:hunter update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:hunter update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2451, 'strategy:priest offdps pve', 1, 'offdps pve [h:object|strategy] [c:co ~offdps pve|toggle combat][c:nc ~offdps pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest holy fire|holy fire] do [h:action:priest holy fire|holy fire] (12.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:priest holy nova|holy nova] (20.000)\r\nOn: [h:trigger:priest shadow word: pain|shadow word: pain] do [h:action:priest shadow word: pain|shadow word: pain] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:priest starshards|starshards] (11.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] do [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000)\r\nOn: [h:trigger:priest smite|smite] do [h:action:priest smite|smite] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2452, 'strategy:druid cure dps feral pve', 1, 'cure dps feral pve [h:object|strategy] [c:co ~cure dps feral pve|toggle combat][c:nc ~cure dps feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2453, 'trigger:generic netherspite beams cheat need refresh', 1, 'netherspite beams cheat need refresh [h:object|trigger] [c:netherspite beams cheat need refresh|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|add nether portal - perseverence for tank] (101.000) for [h:strategy|netherspite]', '', '', '', '', '', '', '', '', '', 0), + (2454, 'trigger:follow target', 1, 'follow target [h:object|trigger] [c:follow target|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|follow target] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2455, 'strategy:shaman cc', 1, 'cc [h:object|strategy] [c:co ~cc|toggle combat][c:nc ~cc|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2456, 'strategy:prince malchezaar', 1, 'prince malchezaar [h:object|strategy] [c:co ~prince malchezaar|toggle combat][c:nc ~prince malchezaar|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|netherspite infernal too close] do [h:action|move away from netherspite infernal] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|end prince malchezaar fight] do [h:action|disable prince malchezaar fight strategy] (100.000)\r\nDead state behavior:\r\nOn: [h:trigger|end prince malchezaar fight] do [h:action|disable prince malchezaar fight strategy] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2457, 'strategy:priest cure shadow pve', 1, 'cure shadow pve [h:object|strategy] [c:co ~cure shadow pve|toggle combat][c:nc ~cure shadow pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)', '', '', '', '', '', '', '', '', '', 0), + (2458, 'action:hunter aspect of the beast', 1, 'aspect of the beast [h:object|action] [c:do aspect of the beast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the beast|aspect of the beast] with relevance (20.000) for [h:strategy:hunter aspect beast|aspect beast]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the beast|aspect of the beast] with relevance (20.000) for [h:strategy:hunter aspect beast|aspect beast]', '', '', '', '', '', '', '', '', '', 0), + (2459, 'trigger:hunter aspect of the dragonhawk', 1, 'aspect of the dragonhawk [h:object|trigger] [c:aspect of the dragonhawk|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the dragonhawk|aspect of the dragonhawk] (20.000) for [h:strategy:hunter aspect dragonhawk|aspect dragonhawk]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the dragonhawk|aspect of the dragonhawk] (20.000) for [h:strategy:hunter aspect dragonhawk|aspect dragonhawk]', '', '', '', '', '', '', '', '', '', 0), + (2460, 'strategy:warrior boost fury pvp', 1, 'boost fury pvp [h:object|strategy] [c:co ~boost fury pvp|toggle combat][c:nc ~boost fury pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior death wish|death wish] do [h:action:warrior death wish|death wish] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warrior recklessness|recklessness] do [h:action:warrior recklessness|recklessness] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2461, 'strategy:priest boost holy raid', 1, 'boost holy raid [h:object|strategy] [c:co ~boost holy raid|toggle combat][c:nc ~boost holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest inner focus|inner focus] do [h:action:priest inner focus|inner focus] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:priest power infusion|power infusion] do [h:action:priest power infusion|power infusion] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2462, 'trigger:hunter freezing trap', 1, 'freezing trap [h:object|trigger] [c:freezing trap|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter feign death|feign death] (41.000) for [h:strategy:hunter cc beast mastery pvp|cc beast mastery pvp]\r\nExecutes: [h:action:hunter feign death|feign death] (41.000) for [h:strategy:hunter cc marksmanship pvp|cc marksmanship pvp]\r\nExecutes: [h:action:hunter feign death|feign death] (41.000) for [h:strategy:hunter cc marksmanship raid|cc marksmanship raid]\r\nExecutes: [h:action:hunter feign death|feign death] (41.000) for [h:strategy:hunter cc marksmanship pve|cc marksmanship pve]\r\nExecutes: [h:action:hunter feign death|feign death] (41.000) for [h:strategy:hunter cc beast mastery pve|cc beast mastery pve]\r\nExecutes: [h:action:hunter feign death|feign death] (41.000) for [h:strategy:hunter cc beast mastery raid|cc beast mastery raid]\r\nExecutes: [h:action:hunter feign death|feign death] (41.000) for [h:strategy:hunter cc survival pve|cc survival pve]\r\nExecutes: [h:action:hunter feign death|feign death] (41.000) for [h:strategy:hunter cc survival pvp|cc survival pvp]\r\nExecutes: [h:action:hunter feign death|feign death] (41.000) for [h:strategy:hunter cc survival raid|cc survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2463, 'strategy:druid buff dps feral raid', 1, 'buff dps feral raid [h:object|strategy] [c:co ~buff dps feral raid|toggle combat][c:nc ~buff dps feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cat form|cat form] do [h:action:druid cat form|cat form] (30.000)\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nOn: [h:trigger:druid tiger\'s fury|tiger\'s fury] do [h:action:druid tiger\'s fury|tiger\'s fury] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid omen of clarity|omen of clarity] do [h:action:druid omen of clarity|omen of clarity] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2464, 'strategy:priest cc holy pvp', 1, 'cc holy pvp [h:object|strategy] [c:co ~cc holy pvp|toggle combat][c:nc ~cc holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest psychic scream|psychic scream] (40.000)\r\nOn: [h:trigger:priest shackle undead|shackle undead] do [h:action:priest shackle undead|shackle undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2465, 'action:hunter aspect of the dragonhawk', 1, 'aspect of the dragonhawk [h:object|action] [c:do aspect of the dragonhawk|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the dragonhawk|aspect of the dragonhawk] with relevance (20.000) for [h:strategy:hunter aspect dragonhawk|aspect dragonhawk]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter aspect of the dragonhawk|aspect of the dragonhawk] with relevance (20.000) for [h:strategy:hunter aspect dragonhawk|aspect dragonhawk]', '', '', '', '', '', '', '', '', '', 0), + (2466, 'strategy:priest offdps raid', 1, 'offdps raid [h:object|strategy] [c:co ~offdps raid|toggle combat][c:nc ~offdps raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest holy fire|holy fire] do [h:action:priest holy fire|holy fire] (12.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:priest holy nova|holy nova] (20.000)\r\nOn: [h:trigger:priest shadow word: pain|shadow word: pain] do [h:action:priest shadow word: pain|shadow word: pain] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:priest starshards|starshards] (11.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] do [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000)\r\nOn: [h:trigger:priest smite|smite] do [h:action:priest smite|smite] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2467, 'action:druid hibernate', 1, 'hibernate [h:object|action] [c:do hibernate|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc tank feral pvp|cc tank feral pvp]\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc restoration raid|cc restoration raid]\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc balance pve|cc balance pve]\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc dps feral pve|cc dps feral pve]\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc dps feral raid|cc dps feral raid]\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc balance pvp|cc balance pvp]\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc tank feral pve|cc tank feral pve]\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc balance raid|cc balance raid]\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc dps feral pvp|cc dps feral pvp]\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc restoration pve|cc restoration pve]\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc tank feral raid|cc tank feral raid]\r\nTriggers from: [h:trigger:druid hibernate|hibernate] with relevance (40.000) for [h:strategy:druid cc restoration pvp|cc restoration pvp]', '', '', '', '', '', '', '', '', '', 0), + (2468, 'strategy:rtsc jump', 1, 'rtsc jump [h:object|strategy] [c:co ~rtsc jump|toggle combat][c:nc ~rtsc jump|toggle noncombat]\r\n\r\nNon combat behavior:\r\nOn: [h:trigger|rtsc jump active] do [h:action|jump] (30.000)', '', '', '', '', '', '', '', '', '', 0), + (2469, 'strategy:druid boost dps feral pvp', 1, 'boost dps feral pvp [h:object|strategy] [c:co ~boost dps feral pvp|toggle combat][c:nc ~boost dps feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2470, 'strategy:hunter buff survival pvp', 1, 'buff survival pvp [h:object|strategy] [c:co ~buff survival pvp|toggle combat][c:nc ~buff survival pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter deterrence|deterrence] (91.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2471, 'action:priest update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:priest discipline|discipline]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:priest shadow|shadow]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:priest discipline|discipline]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (2472, 'strategy:shaman cc restoration pve', 1, 'cc restoration pve [h:object|strategy] [c:co ~cc restoration pve|toggle combat][c:nc ~cc restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2473, 'trigger:save ai', 1, 'save ai [h:object|trigger] [c:save ai|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|save ai] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|save ai] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|save ai] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|save ai] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2474, 'strategy:priest cc shadow pvp', 1, 'cc shadow pvp [h:object|strategy] [c:co ~cc shadow pvp|toggle combat][c:nc ~cc shadow pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest psychic scream|psychic scream] (40.000)\r\nOn: [h:trigger:priest shackle undead|shackle undead] do [h:action:priest shackle undead|shackle undead] (40.000)\r\nOn: [h:trigger:priest silence|silence] do [h:action:priest silence|silence] (41.000)\r\nOn: [h:trigger:priest silence on enemy healer|silence on enemy healer] do [h:action:priest silence on enemy healer|silence on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2475, 'strategy:druid buff restoration pvp', 1, 'buff restoration pvp [h:object|strategy] [c:co ~buff restoration pvp|toggle combat][c:nc ~buff restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2476, 'strategy:druid aoe tank feral pvp', 1, 'aoe tank feral pvp [h:object|strategy] [c:co ~aoe tank feral pvp|toggle combat][c:nc ~aoe tank feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid swipe|swipe] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid challenging roar|challenging roar] (23.000)[h:action:druid demoralizing roar|demoralizing roar] (22.000)[h:action:druid swipe|swipe] (21.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2477, 'strategy:druid cure balance raid', 1, 'cure balance raid [h:object|strategy] [c:co ~cure balance raid|toggle combat][c:nc ~cure balance raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2478, 'strategy:hunter sting survival pvp', 1, 'sting survival pvp [h:object|strategy] [c:co ~sting survival pvp|toggle combat][c:nc ~sting survival pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter viper sting|viper sting] (15.000)[h:action:hunter serpent sting|serpent sting] (14.000)\r\nOn: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] do [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000)\r\nOn: [h:trigger:hunter viper sting on attacker|viper sting on attacker] do [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2479, 'trigger:priest smite', 1, 'smite [h:object|trigger] [c:smite|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest smite|smite] (11.000) for [h:strategy:priest offdps pve|offdps pve]\r\nExecutes: [h:action:priest smite|smite] (11.000) for [h:strategy:priest offdps pvp|offdps pvp]\r\nExecutes: [h:action:priest smite|smite] (11.000) for [h:strategy:priest offdps raid|offdps raid]', '', '', '', '', '', '', '', '', '', 0), + (2480, 'strategy:priest discipline pve', 1, 'discipline pve [h:object|strategy] [c:co ~discipline pve|toggle combat][c:nc ~discipline pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest desperate prayer|desperate prayer] (90.000)[h:action:priest flash heal|flash heal] (80.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (70.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:priest renew on party|renew on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (80.000)[h:action:priest power word: shield on party|power word: shield on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (71.000)[h:action:priest power word: shield on party|power word: shield on party] (72.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest greater heal on party|greater heal on party] (70.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest power word: shield|power word: shield] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:priest resurrection|resurrection] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2481, 'trigger:jump', 1, 'jump [h:object|trigger] [c:jump|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|jump] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|jump] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|jump] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|jump] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2482, 'trigger:quest update complete', 1, 'quest update complete [h:object|trigger] [c:quest update complete|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|quest update complete] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|quest update complete] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|quest update complete] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2483, 'trigger:tank assist', 1, 'tank assist [h:object|trigger] [c:tank assist|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|tank assist] (60.000) for [h:strategy|tank assist]', '', '', '', '', '', '', '', '', '', 0), + (2484, 'action:warrior recklessness', 1, 'recklessness [h:object|action] [c:do recklessness|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior recklessness|recklessness] with relevance (20.000) for [h:strategy:warrior boost fury pve|boost fury pve]\r\nTriggers from: [h:trigger:warrior recklessness|recklessness] with relevance (20.000) for [h:strategy:warrior boost fury pvp|boost fury pvp]\r\nTriggers from: [h:trigger:warrior recklessness|recklessness] with relevance (20.000) for [h:strategy:warrior boost fury raid|boost fury raid]', '', '', '', '', '', '', '', '', '', 0), + (2485, 'strategy:shaman offheal pve', 1, 'offheal pve [h:object|strategy] [c:co ~offheal pve|toggle combat][c:nc ~offheal pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2486, 'strategy:shaman boost elemental pvp', 1, 'boost elemental pvp [h:object|strategy] [c:co ~boost elemental pvp|toggle combat][c:nc ~boost elemental pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2487, 'action:priest circle of healing', 1, 'circle of healing [h:object|action] [c:do circle of healing|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:priest aoe holy raid|aoe holy raid]\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:priest aoe holy pve|aoe holy pve]\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:priest aoe holy pvp|aoe holy pvp]', '', '', '', '', '', '', '', '', '', 0), + (2488, 'strategy:shaman offheal', 1, 'offheal [h:object|strategy] [c:co ~offheal|toggle combat][c:nc ~offheal|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2489, 'strategy:druid buff balance pvp', 1, 'buff balance pvp [h:object|strategy] [c:co ~buff balance pvp|toggle combat][c:nc ~buff balance pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nOn: [h:trigger:druid moonkin form|moonkin form] do [h:action:druid moonkin form|moonkin form] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2490, 'strategy:focus heal targets', 1, 'focus heal targets [h:object|strategy] [c:co ~focus heal targets|toggle combat][c:nc ~focus heal targets|toggle noncombat]\r\nThis strategy will make the bot focus heal the specified target using the \'set focus heal \' command', '', '', '', '', '', '', '', '', '', 0), + (2491, 'action:set avoid area', 1, 'set avoid area [h:object|action] [c:do set avoid area|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|very often] with relevance (10.000) for [h:strategy|avoid mobs]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|very often] with relevance (10.000) for [h:strategy|avoid mobs]', '', '', '', '', '', '', '', '', '', 0), + (2492, 'strategy:priest cure holy pvp', 1, 'cure holy pvp [h:object|strategy] [c:co ~cure holy pvp|toggle combat][c:nc ~cure holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)', '', '', '', '', '', '', '', '', '', 0), + (2493, 'trigger:quest update failed', 1, 'quest update failed [h:object|trigger] [c:quest update failed|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|quest update failed] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|quest update failed] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|quest update failed] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2494, 'strategy:priest boost shadow pve', 1, 'boost shadow pve [h:object|strategy] [c:co ~boost shadow pve|toggle combat][c:nc ~boost shadow pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest inner focus|inner focus] do [h:action:priest inner focus|inner focus] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:priest power infusion|power infusion] do [h:action:priest power infusion|power infusion] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2495, 'strategy:priest offheal pvp', 1, 'offheal pvp [h:object|strategy] [c:co ~offheal pvp|toggle combat][c:nc ~offheal pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (80.000)[h:action:priest power word: shield on party|power word: shield on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (70.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest renew on party|renew on party] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2496, 'trigger:hunter switch to ranged', 1, 'switch to ranged [h:object|trigger] [c:switch to ranged|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:-close,+ranged|-close,+ranged] (43.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nExecutes: [h:action:-close,+ranged|-close,+ranged] (43.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nExecutes: [h:action:-close,+ranged|-close,+ranged] (43.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nExecutes: [h:action:-close,+ranged|-close,+ranged] (43.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nExecutes: [h:action:-close,+ranged|-close,+ranged] (43.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nExecutes: [h:action:-close,+ranged|-close,+ranged] (43.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nExecutes: [h:action:-close,+ranged|-close,+ranged] (43.000) for [h:strategy:hunter survival pve|survival pve]\r\nExecutes: [h:action:-close,+ranged|-close,+ranged] (43.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nExecutes: [h:action:-close,+ranged|-close,+ranged] (43.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2497, 'strategy:hunter boost marksmanship pvp', 1, 'boost marksmanship pvp [h:object|strategy] [c:co ~boost marksmanship pvp|toggle combat][c:nc ~boost marksmanship pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:hunter rapid fire|rapid fire] do [h:action:hunter rapid fire|rapid fire] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2498, 'action:quest update complete', 1, 'quest update complete [h:object|action] [c:do quest update complete|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|quest update complete] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|quest update complete] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|quest update complete] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2499, 'strategy:mage boost frost pvp', 1, 'boost frost pvp [h:object|strategy] [c:co ~boost frost pvp|toggle combat][c:nc ~boost frost pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage cold snap|cold snap] do [h:action:mage cold snap|cold snap] (23.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2500, 'trigger:dispel enrage', 1, 'dispel enrage [h:object|trigger] [c:dispel enrage|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nExecutes: [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nExecutes: [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nExecutes: [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nExecutes: [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nExecutes: [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nExecutes: [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000) for [h:strategy:hunter survival pve|survival pve]\r\nExecutes: [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nExecutes: [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2501, 'action:stoneshield potion', 1, 'stoneshield potion [h:object|action] [c:do stoneshield potion|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:often|often] with relevance (20.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2502, 'strategy:druid cure balance pvp', 1, 'cure balance pvp [h:object|strategy] [c:co ~cure balance pvp|toggle combat][c:nc ~cure balance pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2503, 'action:-ranged,+close', 1, '-ranged,+close [h:object|action] [c:do -ranged,+close|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter switch to melee|switch to melee] with relevance (30.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nTriggers from: [h:trigger:hunter switch to melee|switch to melee] with relevance (30.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nTriggers from: [h:trigger:hunter switch to melee|switch to melee] with relevance (30.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nTriggers from: [h:trigger:hunter switch to melee|switch to melee] with relevance (30.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nTriggers from: [h:trigger:hunter switch to melee|switch to melee] with relevance (30.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nTriggers from: [h:trigger:hunter switch to melee|switch to melee] with relevance (30.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nTriggers from: [h:trigger:hunter switch to melee|switch to melee] with relevance (30.000) for [h:strategy:hunter survival pve|survival pve]\r\nTriggers from: [h:trigger:hunter switch to melee|switch to melee] with relevance (30.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nTriggers from: [h:trigger:hunter switch to melee|switch to melee] with relevance (30.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2504, 'strategy:hunter cc beast mastery raid', 1, 'cc beast mastery raid [h:object|strategy] [c:co ~cc beast mastery raid|toggle combat][c:nc ~cc beast mastery raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter freezing trap|freezing trap] do [h:action:hunter feign death|feign death] (41.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter scare beast|scare beast] do [h:action:hunter scare beast|scare beast] (22.000)', '', '', '', '', '', '', '', '', '', 0), + (2505, 'trigger:leave karazhan', 1, 'leave karazhan [h:object|trigger] [c:leave karazhan|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|disable karazhan strategy] (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), + (2506, 'strategy:mage boost arcane pve', 1, 'boost arcane pve [h:object|strategy] [c:co ~boost arcane pve|toggle combat][c:nc ~boost arcane pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage arcane power|arcane power] do [h:action:mage arcane power|arcane power] (22.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage presence of mind|presence of mind] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2507, 'action:hunter tranquilizing shot', 1, 'tranquilizing shot [h:object|action] [c:do tranquilizing shot|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger:dispel enrage|dispel enrage] with relevance (40.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nTriggers from: [h:trigger:dispel enrage|dispel enrage] with relevance (40.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nTriggers from: [h:trigger:dispel enrage|dispel enrage] with relevance (40.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nTriggers from: [h:trigger:dispel enrage|dispel enrage] with relevance (40.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nTriggers from: [h:trigger:dispel enrage|dispel enrage] with relevance (40.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nTriggers from: [h:trigger:dispel enrage|dispel enrage] with relevance (40.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nTriggers from: [h:trigger:dispel enrage|dispel enrage] with relevance (40.000) for [h:strategy:hunter survival pve|survival pve]\r\nTriggers from: [h:trigger:dispel enrage|dispel enrage] with relevance (40.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nTriggers from: [h:trigger:dispel enrage|dispel enrage] with relevance (40.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2508, 'strategy:hunter survival raid', 1, 'survival raid [h:object|strategy] [c:co ~survival raid|toggle combat][c:nc ~survival raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aimed shot|aimed shot] do [h:action:hunter aimed shot|aimed shot] (12.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:hunter hunter\'s mark|hunter\'s mark] do [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000)\r\nOn: [h:trigger:hunter counterattack|counterattack] do [h:action:hunter counterattack|counterattack] (22.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:hunter raptor strike|raptor strike] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (21.000)\r\nOn: [h:trigger:hunter switch to melee|switch to melee] do [h:action:-ranged,+close|-ranged,+close] (30.000)\r\nOn: [h:trigger:hunter switch to ranged|switch to ranged] do [h:action:-close,+ranged|-close,+ranged] (43.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:hunter auto shot|auto shot] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:hunter item count|item count] do [h:action:hunter say::no ammo|say::no ammo] (10.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:dispel enrage|dispel enrage] do [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2509, 'trigger:start four horseman fight', 1, 'start four horseman fight [h:object|trigger] [c:start four horseman fight|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|enable four horseman fight strategy] (100.000) for [h:strategy|naxxramas]', '', '', '', '', '', '', '', '', '', 0), + (2510, 'trigger:warlock spell lock', 1, 'spell lock [h:object|trigger] [c:spell lock|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock spell lock|spell lock] (46.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nExecutes: [h:action:warlock spell lock|spell lock] (46.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nExecutes: [h:action:warlock spell lock|spell lock] (46.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nExecutes: [h:action:warlock spell lock|spell lock] (46.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nExecutes: [h:action:warlock spell lock|spell lock] (46.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nExecutes: [h:action:warlock spell lock|spell lock] (46.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nExecutes: [h:action:warlock spell lock|spell lock] (46.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nExecutes: [h:action:warlock spell lock|spell lock] (46.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nExecutes: [h:action:warlock spell lock|spell lock] (46.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), + (2511, 'strategy:shaman cc enhancement pve', 1, 'cc enhancement pve [h:object|strategy] [c:co ~cc enhancement pve|toggle combat][c:nc ~cc enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2512, 'strategy:priest aoe', 1, 'aoe [h:object|strategy] [c:co ~aoe|toggle combat][c:nc ~aoe|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2513, 'strategy:rogue boost subtlety raid', 1, 'boost subtlety raid [h:object|strategy] [c:co ~boost subtlety raid|toggle combat][c:nc ~boost subtlety raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue preparation|preparation] (23.000)', '', '', '', '', '', '', '', '', '', 0), + (2514, 'strategy:shaman boost restoration pvp', 1, 'boost restoration pvp [h:object|strategy] [c:co ~boost restoration pvp|toggle combat][c:nc ~boost restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2515, 'strategy:shaman boost elemental pve', 1, 'boost elemental pve [h:object|strategy] [c:co ~boost elemental pve|toggle combat][c:nc ~boost elemental pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2516, 'trigger:druid enrage', 1, 'enrage [h:object|trigger] [c:enrage|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid enrage|enrage] (20.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nExecutes: [h:action:druid enrage|enrage] (20.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nExecutes: [h:action:druid enrage|enrage] (20.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (2517, 'strategy:hunter sting beast mastery pvp', 1, 'sting beast mastery pvp [h:object|strategy] [c:co ~sting beast mastery pvp|toggle combat][c:nc ~sting beast mastery pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter viper sting|viper sting] (15.000)[h:action:hunter serpent sting|serpent sting] (14.000)\r\nOn: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] do [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000)\r\nOn: [h:trigger:hunter viper sting on attacker|viper sting on attacker] do [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2518, 'strategy:priest offheal raid', 1, 'offheal raid [h:object|strategy] [c:co ~offheal raid|toggle combat][c:nc ~offheal raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (80.000)[h:action:priest power word: shield on party|power word: shield on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (70.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest renew on party|renew on party] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2519, 'strategy:warrior boost protection pve', 1, 'boost protection pve [h:object|strategy] [c:co ~boost protection pve|toggle combat][c:nc ~boost protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2520, 'action:add nether portal - perseverence for tank', 1, 'add nether portal - perseverence for tank [h:object|action] [c:do add nether portal - perseverence for tank|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|netherspite beams cheat need refresh] with relevance (101.000) for [h:strategy|netherspite]', '', '', '', '', '', '', '', '', '', 0), + (2521, 'trigger:end netherspite fight', 1, 'end netherspite fight [h:object|trigger] [c:end netherspite fight|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|disable netherspite fight strategy] (100.000) for [h:strategy|netherspite]\r\nDead state behavior:\r\nExecutes: [h:action|disable netherspite fight strategy] (100.000) for [h:strategy|netherspite]', '', '', '', '', '', '', '', '', '', 0), + (2522, 'strategy:priest shadow raid', 1, 'shadow raid [h:object|strategy] [c:co ~shadow raid|toggle combat][c:nc ~shadow raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest devouring plague|devouring plague] do [h:action:priest devouring plague|devouring plague] (12.000)\r\nDefault:[h:action:priest mind flay|mind flay] (1.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest desperate prayer|desperate prayer] (90.000)[h:action:priest flash heal|flash heal] (80.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:priest fade|fade] (50.000)\r\nOn: [h:trigger:priest hex of weakness|hex of weakness] do [h:action:priest hex of weakness|hex of weakness] (12.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (70.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:priest mind blast|mind blast] do [h:action:priest mind blast|mind blast] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:priest shadow word: pain|shadow word: pain] do [h:action:priest shadow word: pain|shadow word: pain] (12.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest power word: shield|power word: shield] (20.000)\r\nOn: [h:trigger:priest vampiric embrace|vampiric embrace] do [h:action:priest vampiric embrace|vampiric embrace] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:priest resurrection|resurrection] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2523, 'strategy:warlock boost affliction pve', 1, 'boost affliction pve [h:object|strategy] [c:co ~boost affliction pve|toggle combat][c:nc ~boost affliction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2524, 'strategy:druid buff tank feral raid', 1, 'buff tank feral raid [h:object|strategy] [c:co ~buff tank feral raid|toggle combat][c:nc ~buff tank feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid bear form|bear form] do [h:action:druid dire bear form|dire bear form] (39.000)\r\nOn: [h:trigger:druid enrage|enrage] do [h:action:druid enrage|enrage] (20.000)\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:stoneshield potion|stoneshield potion] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid omen of clarity|omen of clarity] do [h:action:druid omen of clarity|omen of clarity] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2525, 'strategy:hunter aspect', 1, 'aspect [h:object|strategy] [c:co ~aspect|toggle combat][c:nc ~aspect|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2526, 'strategy:paladin boost protection pve', 1, 'boost protection pve [h:object|strategy] [c:co ~boost protection pve|toggle combat][c:nc ~boost protection pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2527, 'trigger:target of fear cast', 1, 'target of fear cast [h:object|trigger] [c:target of fear cast|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff arms pve|buff arms pve]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff fury pvp|buff fury pvp]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff protection pve|buff protection pve]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff arms raid|buff arms raid]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff arms pvp|buff arms pvp]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff fury pve|buff fury pve]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff fury raid|buff fury raid]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff protection pvp|buff protection pvp]\r\nExecutes: [h:action:warrior berserker rage|berserker rage] (40.000) for [h:strategy:warrior buff protection raid|buff protection raid]', '', '', '', '', '', '', '', '', '', 0), + (2528, 'strategy:priest shadow pve', 1, 'shadow pve [h:object|strategy] [c:co ~shadow pve|toggle combat][c:nc ~shadow pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest devouring plague|devouring plague] do [h:action:priest devouring plague|devouring plague] (12.000)\r\nDefault:[h:action:priest mind flay|mind flay] (1.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest desperate prayer|desperate prayer] (90.000)[h:action:priest flash heal|flash heal] (80.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:priest hex of weakness|hex of weakness] do [h:action:priest hex of weakness|hex of weakness] (12.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (70.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:priest mind blast|mind blast] do [h:action:priest mind blast|mind blast] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:priest shadow word: pain|shadow word: pain] do [h:action:priest shadow word: pain|shadow word: pain] (12.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest power word: shield|power word: shield] (20.000)\r\nOn: [h:trigger:priest vampiric embrace|vampiric embrace] do [h:action:priest vampiric embrace|vampiric embrace] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:priest resurrection|resurrection] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2529, 'strategy:priest discipline pvp', 1, 'discipline pvp [h:object|strategy] [c:co ~discipline pvp|toggle combat][c:nc ~discipline pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest desperate prayer|desperate prayer] (90.000)[h:action:priest flash heal|flash heal] (80.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (70.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:priest renew on party|renew on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (80.000)[h:action:priest power word: shield on party|power word: shield on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (71.000)[h:action:priest power word: shield on party|power word: shield on party] (72.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest greater heal on party|greater heal on party] (70.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest power word: shield|power word: shield] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:priest resurrection|resurrection] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2530, 'strategy:priest cure discipline raid', 1, 'cure discipline raid [h:object|strategy] [c:co ~cure discipline raid|toggle combat][c:nc ~cure discipline raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)', '', '', '', '', '', '', '', '', '', 0), + (2531, 'strategy:hunter sting serpent', 1, 'sting serpent [h:object|strategy] [c:co ~sting serpent|toggle combat][c:nc ~sting serpent|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter serpent sting|serpent sting] (20.000)\r\nOn: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] do [h:action:hunter serpent sting on attacker|serpent sting on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2532, 'action:list ai', 1, 'list ai [h:object|action] [c:do list ai|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|list ai] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|list ai] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|list ai] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|list ai] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2533, 'value:lowest durability', 1, 'lowest durability [h:object|value] [c:cdebug values lowest durability|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2534, 'strategy:druid buff restoration pve', 1, 'buff restoration pve [h:object|strategy] [c:co ~buff restoration pve|toggle combat][c:nc ~buff restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2535, 'strategy:priest boost shadow raid', 1, 'boost shadow raid [h:object|strategy] [c:co ~boost shadow raid|toggle combat][c:nc ~boost shadow raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest inner focus|inner focus] do [h:action:priest inner focus|inner focus] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:priest power infusion|power infusion] do [h:action:priest power infusion|power infusion] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2536, 'action:quest update failed timer', 1, 'quest update failed timer [h:object|action] [c:do quest update failed timer|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|quest update failed timer] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|quest update failed timer] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|quest update failed timer] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2537, 'action:druid caster form', 1, 'caster form [h:object|action] [c:do caster form|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure tank feral pve|cure tank feral pve]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure balance pvp|cure balance pvp]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure dps feral pvp|cure dps feral pvp]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure dps feral pve|cure dps feral pve]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure balance pve|cure balance pve]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure balance raid|cure balance raid]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure dps feral raid|cure dps feral raid]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure restoration pve|cure restoration pve]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure restoration pvp|cure restoration pvp]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure restoration raid|cure restoration raid]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure tank feral pvp|cure tank feral pvp]\r\nTriggers from: [h:trigger:rooted|rooted] with relevance (50.000) for [h:strategy:druid cure tank feral raid|cure tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2538, 'strategy:druid aoe restoration raid', 1, 'aoe restoration raid [h:object|strategy] [c:co ~aoe restoration raid|toggle combat][c:nc ~aoe restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2539, 'strategy:druid cure restoration raid', 1, 'cure restoration raid [h:object|strategy] [c:co ~cure restoration raid|toggle combat][c:nc ~cure restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2540, 'strategy:hunter sting survival raid', 1, 'sting survival raid [h:object|strategy] [c:co ~sting survival raid|toggle combat][c:nc ~sting survival raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter viper sting|viper sting] (15.000)\r\nOn: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] do [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000)\r\nOn: [h:trigger:hunter viper sting on attacker|viper sting on attacker] do [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2541, 'strategy:druid cure tank feral pvp', 1, 'cure tank feral pvp [h:object|strategy] [c:co ~cure tank feral pvp|toggle combat][c:nc ~cure tank feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2542, 'strategy:paladin boost holy pvp', 1, 'boost holy pvp [h:object|strategy] [c:co ~boost holy pvp|toggle combat][c:nc ~boost holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin divine favor|divine favor] do [h:action:paladin divine favor|divine favor] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2543, 'strategy:druid aoe dps feral pvp', 1, 'aoe dps feral pvp [h:object|strategy] [c:co ~aoe dps feral pvp|toggle combat][c:nc ~aoe dps feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid swipe (cat)|swipe (cat)] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2544, 'strategy:druid buff dps feral pve', 1, 'buff dps feral pve [h:object|strategy] [c:co ~buff dps feral pve|toggle combat][c:nc ~buff dps feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cat form|cat form] do [h:action:druid cat form|cat form] (30.000)\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nOn: [h:trigger:druid tiger\'s fury|tiger\'s fury] do [h:action:druid tiger\'s fury|tiger\'s fury] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid omen of clarity|omen of clarity] do [h:action:druid omen of clarity|omen of clarity] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2545, 'strategy:hunter aoe beast mastery pvp', 1, 'aoe beast mastery pvp [h:object|strategy] [c:co ~aoe beast mastery pvp|toggle combat][c:nc ~aoe beast mastery pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:hunter volley|volley] (23.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:hunter multi-shot|multi-shot] do [h:action:hunter multi-shot|multi-shot] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2546, 'strategy:hunter aspect marksmanship pvp', 1, 'aspect marksmanship pvp [h:object|strategy] [c:co ~aspect marksmanship pvp|toggle combat][c:nc ~aspect marksmanship pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:hunter aspect of the cheetah|aspect of the cheetah] (26.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:hunter aspect of the cheetah|aspect of the cheetah] (26.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000)', '', '', '', '', '', '', '', '', '', 0), + (2547, 'strategy:shaman cc elemental raid', 1, 'cc elemental raid [h:object|strategy] [c:co ~cc elemental raid|toggle combat][c:nc ~cc elemental raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2548, 'strategy:hunter boost beast mastery pvp', 1, 'boost beast mastery pvp [h:object|strategy] [c:co ~boost beast mastery pvp|toggle combat][c:nc ~boost beast mastery pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter bestial wrath|bestial wrath] do [h:action:hunter bestial wrath|bestial wrath] (26.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:hunter rapid fire|rapid fire] do [h:action:hunter rapid fire|rapid fire] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2549, 'strategy:priest buff shadow pve', 1, 'buff shadow pve [h:object|strategy] [c:co ~buff shadow pve|toggle combat][c:nc ~buff shadow pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (90.000)\r\nOn: [h:trigger:priest feedback|feedback] do [h:action:priest feedback|feedback] (20.000)\r\nOn: [h:trigger:priest shadowform|shadowform] do [h:action:priest shadowform|shadowform] (30.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest elune\'s grace|elune\'s grace] (23.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest divine spirit|divine spirit] do [h:action:priest divine spirit|divine spirit] (11.000)\r\nOn: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] do [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000)\r\nOn: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] do [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000)\r\nOn: [h:trigger:priest touch of weakness|touch of weakness] do [h:action:priest touch of weakness|touch of weakness] (11.000)\r\nOn: [h:trigger:priest divine spirit on party|divine spirit on party] do [h:action:priest divine spirit on party|divine spirit on party] (12.000)\r\nOn: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] do [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000)\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (11.000)\r\nOn: [h:trigger:priest inner fire|inner fire] do [h:action:priest inner fire|inner fire] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:priest power word: fortitude|power word: fortitude] do [h:action:priest power word: fortitude|power word: fortitude] (11.000)\r\nOn: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] do [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000)\r\nOn: [h:trigger:priest shadow protection|shadow protection] do [h:action:priest shadow protection|shadow protection] (11.000)\r\nOn: [h:trigger:priest shadow protection on party|shadow protection on party] do [h:action:priest shadow protection on party|shadow protection on party] (12.000)\r\nOn: [h:trigger:priest shadowguard|shadowguard] do [h:action:priest shadowguard|shadowguard] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2550, 'strategy:druid cc restoration pvp', 1, 'cc restoration pvp [h:object|strategy] [c:co ~cc restoration pvp|toggle combat][c:nc ~cc restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:druid nature\'s grasp|nature\'s grasp] (20.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2551, 'strategy:warlock boost demonology pve', 1, 'boost demonology pve [h:object|strategy] [c:co ~boost demonology pve|toggle combat][c:nc ~boost demonology pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2552, 'strategy:chase jump', 1, 'chase jump [h:object|strategy] [c:co ~chase jump|toggle combat][c:nc ~chase jump|toggle noncombat]\r\nThis strategy makes bot jump when chasing enemies they can\'t reach.\r\n\r\nRelated strategies:\r\n[h:strategy|melee] \r\nCombat behavior:\r\nOn: [h:trigger|very often] do [h:action|jump] (39.000)\r\nNon combat behavior:\r\nOn: [h:trigger|very often] do [h:action|jump] (39.000)\r\nReaction behavior:\r\nOn: [h:trigger|very often] do [h:action|jump] (39.000)', '', '', '', '', '', '', '', '', '', 0), + (2553, 'action:druid unstealth', 1, 'unstealth [h:object|action] [c:do unstealth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (10.000) for [h:strategy:druid stealth dps feral pve|stealth dps feral pve]\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (10.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (10.000) for [h:strategy:druid stealth dps feral raid|stealth dps feral raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (10.000) for [h:strategy:druid stealth dps feral pve|stealth dps feral pve]\r\nTriggers from: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] with relevance (20.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (10.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (10.000) for [h:strategy:druid stealth dps feral raid|stealth dps feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2554, 'strategy:rogue boost subtlety pvp', 1, 'boost subtlety pvp [h:object|strategy] [c:co ~boost subtlety pvp|toggle combat][c:nc ~boost subtlety pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue preparation|preparation] (23.000)', '', '', '', '', '', '', '', '', '', 0), + (2555, 'strategy:hunter sting beast mastery raid', 1, 'sting beast mastery raid [h:object|strategy] [c:co ~sting beast mastery raid|toggle combat][c:nc ~sting beast mastery raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter viper sting|viper sting] (15.000)\r\nOn: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] do [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000)\r\nOn: [h:trigger:hunter viper sting on attacker|viper sting on attacker] do [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2556, 'strategy:hunter aspect hawk', 1, 'aspect hawk [h:object|strategy] [c:co ~aspect hawk|toggle combat][c:nc ~aspect hawk|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2557, 'strategy:druid buff balance pve', 1, 'buff balance pve [h:object|strategy] [c:co ~buff balance pve|toggle combat][c:nc ~buff balance pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nOn: [h:trigger:druid moonkin form|moonkin form] do [h:action:druid moonkin form|moonkin form] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2558, 'action:druid update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid balance|balance]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid balance|balance]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]', '', '', '', '', '', '', '', '', '', 0), + (2559, 'strategy:hunter sting scorpid', 1, 'sting scorpid [h:object|strategy] [c:co ~sting scorpid|toggle combat][c:nc ~sting scorpid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter scorpid sting|scorpid sting] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2560, 'strategy:hunter aspect marksmanship raid', 1, 'aspect marksmanship raid [h:object|strategy] [c:co ~aspect marksmanship raid|toggle combat][c:nc ~aspect marksmanship raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2561, 'strategy:druid buff dps feral pvp', 1, 'buff dps feral pvp [h:object|strategy] [c:co ~buff dps feral pvp|toggle combat][c:nc ~buff dps feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cat form|cat form] do [h:action:druid cat form|cat form] (30.000)\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nOn: [h:trigger:druid tiger\'s fury|tiger\'s fury] do [h:action:druid tiger\'s fury|tiger\'s fury] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid omen of clarity|omen of clarity] do [h:action:druid omen of clarity|omen of clarity] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2562, 'trigger:pet', 1, 'pet [h:object|trigger] [c:pet|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|pet] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2563, 'action:load ai', 1, 'load ai [h:object|action] [c:do load ai|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|load ai] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|load ai] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|load ai] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|load ai] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2564, 'action:whipper root tuber', 1, 'whipper root tuber [h:object|action] [c:do whipper root tuber|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|critical health] with relevance (80.000) for [h:strategy|potions]\r\nReaction behavior:\r\nTriggers from: [h:trigger|critical health] with relevance (80.000) for [h:strategy|potions]', '', '', '', '', '', '', '', '', '', 0), + (2565, 'strategy:warrior boost fury pve', 1, 'boost fury pve [h:object|strategy] [c:co ~boost fury pve|toggle combat][c:nc ~boost fury pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior death wish|death wish] do [h:action:warrior death wish|death wish] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warrior recklessness|recklessness] do [h:action:warrior recklessness|recklessness] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2566, 'action:enable karazhan strategy', 1, 'enable karazhan strategy [h:object|action] [c:do enable karazhan strategy|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|enter karazhan] with relevance (100.000) for [h:strategy|dungeon]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|enter karazhan] with relevance (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), + (2567, 'action:druid feral charge', 1, 'feral charge [h:object|action] [c:do feral charge|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid enemy out of melee range|enemy out of melee range] with relevance (31.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:druid enemy out of melee range|enemy out of melee range] with relevance (31.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:druid enemy out of melee range|enemy out of melee range] with relevance (31.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2568, 'trigger:quest update add item', 1, 'quest update add item [h:object|trigger] [c:quest update add item|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|quest update add item] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|quest update add item] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|quest update add item] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2569, 'strategy:druid restoration', 1, 'restoration [h:object|strategy] [c:co ~restoration|toggle combat][c:nc ~restoration|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:druid update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:druid update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:druid update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:druid update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:druid update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:druid update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2570, 'trigger:mage no fire vulnerability', 1, 'no fire vulnerability [h:object|trigger] [c:no fire vulnerability|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:mage scorch|scorch] (12.000) for [h:strategy:mage fire pve|fire pve]\r\nExecutes: [h:action:mage scorch|scorch] (12.000) for [h:strategy:mage fire pvp|fire pvp]\r\nExecutes: [h:action:mage scorch|scorch] (12.000) for [h:strategy:mage fire raid|fire raid]', '', '', '', '', '', '', '', '', '', 0), + (2571, 'trigger:hunter aspect of the monkey', 1, 'aspect of the monkey [h:object|trigger] [c:aspect of the monkey|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the monkey|aspect of the monkey] (20.000) for [h:strategy:hunter aspect monkey|aspect monkey]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the monkey|aspect of the monkey] (20.000) for [h:strategy:hunter aspect monkey|aspect monkey]', '', '', '', '', '', '', '', '', '', 0), + (2572, 'trigger:druid prowl', 1, 'prowl [h:object|trigger] [c:prowl|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid check stealth|check stealth] (90.000) for [h:strategy:druid stealth dps feral pve|stealth dps feral pve]\r\nExecutes: [h:action:druid check stealth|check stealth] (90.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]\r\nExecutes: [h:action:druid check stealth|check stealth] (90.000) for [h:strategy:druid stealth dps feral raid|stealth dps feral raid]\r\nNon combat behavior:\r\nExecutes: [h:action:druid check stealth|check stealth] (20.000) for [h:strategy:druid stealth dps feral pve|stealth dps feral pve]\r\nExecutes: [h:action:druid check stealth|check stealth] (20.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]\r\nExecutes: [h:action:druid check stealth|check stealth] (20.000) for [h:strategy:druid stealth dps feral raid|stealth dps feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2573, 'trigger:hunter aspect of the cheetah', 1, 'aspect of the cheetah [h:object|trigger] [c:aspect of the cheetah|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the cheetah|aspect of the cheetah] (20.000) for [h:strategy:hunter aspect cheetah|aspect cheetah]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the cheetah|aspect of the cheetah] (20.000) for [h:strategy:hunter aspect cheetah|aspect cheetah]', '', '', '', '', '', '', '', '', '', 0), + (2574, 'action:warrior cleave', 1, 'cleave [h:object|action] [c:do cleave|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe fury pve|aoe fury pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe arms raid|aoe arms raid]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe arms pve|aoe arms pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe arms pvp|aoe arms pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe protection pve|aoe protection pve]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe fury pvp|aoe fury pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe fury raid|aoe fury raid]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe protection pvp|aoe protection pvp]\r\nTriggers from: [h:trigger:warrior aoe|aoe] with relevance (23.000) for [h:strategy:warrior aoe protection raid|aoe protection raid]', '', '', '', '', '', '', '', '', '', 0), + (2575, 'strategy:warlock boost demonology pvp', 1, 'boost demonology pvp [h:object|strategy] [c:co ~boost demonology pvp|toggle combat][c:nc ~boost demonology pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2576, 'action:rpg enchant', 1, 'rpg enchant [h:object|action] [c:do rpg enchant|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|rpg enchant] with relevance (1.029) for [h:strategy|rpg player]', '', '', '', '', '', '', '', '', '', 0), + (2577, 'strategy:rogue boost combat pvp', 1, 'boost combat pvp [h:object|strategy] [c:co ~boost combat pvp|toggle combat][c:nc ~boost combat pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue adrenaline rush|adrenaline rush] do [h:action:rogue adrenaline rush|adrenaline rush] (25.000)\r\nOn: [h:trigger:rogue blade flurry|blade flurry] do [h:action:rogue blade flurry|blade flurry] (24.000)', '', '', '', '', '', '', '', '', '', 0), + (2578, 'strategy:priest boost shadow pvp', 1, 'boost shadow pvp [h:object|strategy] [c:co ~boost shadow pvp|toggle combat][c:nc ~boost shadow pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest inner focus|inner focus] do [h:action:priest inner focus|inner focus] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:priest power infusion|power infusion] do [h:action:priest power infusion|power infusion] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2579, 'action:druid mangle (cat)', 1, 'mangle (cat) [h:object|action] [c:do mangle (cat)|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (10.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (10.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (10.000) for [h:strategy:druid dps feral raid|dps feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2580, 'strategy:druid boost balance pvp', 1, 'boost balance pvp [h:object|strategy] [c:co ~boost balance pvp|toggle combat][c:nc ~boost balance pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] do [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2581, 'strategy:hunter aspect survival pve', 1, 'aspect survival pve [h:object|strategy] [c:co ~aspect survival pve|toggle combat][c:nc ~aspect survival pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2582, 'strategy:paladin offheal pve', 1, 'offheal pve [h:object|strategy] [c:co ~offheal pve|toggle combat][c:nc ~offheal pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2583, 'action:move away from netherspite infernal', 1, 'move away from netherspite infernal [h:object|action] [c:do move away from netherspite infernal|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|netherspite infernal too close] with relevance (100.000) for [h:strategy|prince malchezaar]', '', '', '', '', '', '', '', '', '', 0), + (2584, 'strategy:druid aoe balance raid', 1, 'aoe balance raid [h:object|strategy] [c:co ~aoe balance raid|toggle combat][c:nc ~aoe balance raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid starfall|starfall] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2585, 'strategy:netherspite', 1, 'netherspite [h:object|strategy] [c:co ~netherspite|toggle combat][c:nc ~netherspite|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|netherspite beams cheat need refresh] do [h:action|add nether portal - perseverence for tank] (101.000)\r\nOn: [h:trigger|netherspite beams cheat need refresh] do [h:action|remove nether portal buffs from netherspite] (101.000)\r\nOn: [h:trigger|void zone too close] do [h:action|move away from void zone] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|end netherspite fight] do [h:action|disable netherspite fight strategy] (100.000)\r\nDead state behavior:\r\nOn: [h:trigger|end netherspite fight] do [h:action|disable netherspite fight strategy] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2586, 'strategy:priest shadow pvp', 1, 'shadow pvp [h:object|strategy] [c:co ~shadow pvp|toggle combat][c:nc ~shadow pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest devouring plague|devouring plague] do [h:action:priest devouring plague|devouring plague] (12.000)\r\nDefault:[h:action:priest mind flay|mind flay] (1.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest desperate prayer|desperate prayer] (90.000)[h:action:priest flash heal|flash heal] (80.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:priest hex of weakness|hex of weakness] do [h:action:priest hex of weakness|hex of weakness] (12.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (70.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:priest mind blast|mind blast] do [h:action:priest mind blast|mind blast] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:priest shadow word: pain|shadow word: pain] do [h:action:priest shadow word: pain|shadow word: pain] (12.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest power word: shield|power word: shield] (20.000)\r\nOn: [h:trigger:priest vampiric embrace|vampiric embrace] do [h:action:priest vampiric embrace|vampiric embrace] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:priest resurrection|resurrection] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2587, 'value:gt32', 1, 'gt32 [h:object|value] [c:cdebug values gt32|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2588, 'trigger:enter karazhan', 1, 'enter karazhan [h:object|trigger] [c:enter karazhan|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|enable karazhan strategy] (100.000) for [h:strategy|dungeon]\r\nNon combat behavior:\r\nExecutes: [h:action|enable karazhan strategy] (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), + (2589, 'strategy:mage boost frost raid', 1, 'boost frost raid [h:object|strategy] [c:co ~boost frost raid|toggle combat][c:nc ~boost frost raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage cold snap|cold snap] do [h:action:mage cold snap|cold snap] (23.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2590, 'strategy:rogue boost assassination pve', 1, 'boost assassination pve [h:object|strategy] [c:co ~boost assassination pve|toggle combat][c:nc ~boost assassination pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue cold blood|cold blood] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2591, 'trigger:warlock item target', 1, 'item target [h:object|trigger] [c:item target|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action:warlock item target|item target] (11.000) for [h:strategy:warlock buff affliction pvp|buff affliction pvp]\r\nExecutes: [h:action:warlock item target|item target] (11.000) for [h:strategy:warlock buff demonology pve|buff demonology pve]\r\nExecutes: [h:action:warlock item target|item target] (11.000) for [h:strategy:warlock buff affliction pve|buff affliction pve]\r\nExecutes: [h:action:warlock item target|item target] (11.000) for [h:strategy:warlock buff affliction raid|buff affliction raid]\r\nExecutes: [h:action:warlock item target|item target] (11.000) for [h:strategy:warlock buff demonology pvp|buff demonology pvp]\r\nExecutes: [h:action:warlock item target|item target] (11.000) for [h:strategy:warlock buff demonology raid|buff demonology raid]\r\nExecutes: [h:action:warlock item target|item target] (11.000) for [h:strategy:warlock buff destruction pve|buff destruction pve]\r\nExecutes: [h:action:warlock item target|item target] (11.000) for [h:strategy:warlock buff destruction pvp|buff destruction pvp]\r\nExecutes: [h:action:warlock item target|item target] (11.000) for [h:strategy:warlock buff destruction raid|buff destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (2592, 'strategy:hunter buff beast mastery pve', 1, 'buff beast mastery pve [h:object|strategy] [c:co ~buff beast mastery pve|toggle combat][c:nc ~buff beast mastery pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter deterrence|deterrence] (91.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2593, 'trigger:shaman chain lightning', 1, 'chain lightning [h:object|trigger] [c:chain lightning|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman chain lightning|chain lightning] (21.000) for [h:strategy:shaman elemental pvp|elemental pvp]', '', '', '', '', '', '', '', '', '', 0), + (2594, 'action:warlock spell lock', 1, 'spell lock [h:object|action] [c:do spell lock|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock spell lock|spell lock] with relevance (46.000) for [h:strategy:warlock cc destruction raid|cc destruction raid]\r\nTriggers from: [h:trigger:warlock spell lock|spell lock] with relevance (46.000) for [h:strategy:warlock cc destruction pve|cc destruction pve]\r\nTriggers from: [h:trigger:warlock spell lock|spell lock] with relevance (46.000) for [h:strategy:warlock cc affliction pvp|cc affliction pvp]\r\nTriggers from: [h:trigger:warlock spell lock|spell lock] with relevance (46.000) for [h:strategy:warlock cc affliction raid|cc affliction raid]\r\nTriggers from: [h:trigger:warlock spell lock|spell lock] with relevance (46.000) for [h:strategy:warlock cc destruction pvp|cc destruction pvp]\r\nTriggers from: [h:trigger:warlock spell lock|spell lock] with relevance (46.000) for [h:strategy:warlock cc affliction pve|cc affliction pve]\r\nTriggers from: [h:trigger:warlock spell lock|spell lock] with relevance (46.000) for [h:strategy:warlock cc demonology pve|cc demonology pve]\r\nTriggers from: [h:trigger:warlock spell lock|spell lock] with relevance (46.000) for [h:strategy:warlock cc demonology pvp|cc demonology pvp]\r\nTriggers from: [h:trigger:warlock spell lock|spell lock] with relevance (46.000) for [h:strategy:warlock cc demonology raid|cc demonology raid]', '', '', '', '', '', '', '', '', '', 0), + (2595, 'strategy:warrior boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2596, 'strategy:priest buff discipline pve', 1, 'buff discipline pve [h:object|strategy] [c:co ~buff discipline pve|toggle combat][c:nc ~buff discipline pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (90.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest elune\'s grace|elune\'s grace] (23.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest divine spirit|divine spirit] do [h:action:priest divine spirit|divine spirit] (11.000)\r\nOn: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] do [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000)\r\nOn: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] do [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000)\r\nOn: [h:trigger:priest touch of weakness|touch of weakness] do [h:action:priest touch of weakness|touch of weakness] (11.000)\r\nOn: [h:trigger:priest divine spirit on party|divine spirit on party] do [h:action:priest divine spirit on party|divine spirit on party] (12.000)\r\nOn: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] do [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000)\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (11.000)\r\nOn: [h:trigger:priest inner fire|inner fire] do [h:action:priest inner fire|inner fire] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:priest power word: fortitude|power word: fortitude] do [h:action:priest power word: fortitude|power word: fortitude] (11.000)\r\nOn: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] do [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000)\r\nOn: [h:trigger:priest shadow protection|shadow protection] do [h:action:priest shadow protection|shadow protection] (11.000)\r\nOn: [h:trigger:priest shadow protection on party|shadow protection on party] do [h:action:priest shadow protection on party|shadow protection on party] (12.000)\r\nOn: [h:trigger:priest shadowguard|shadowguard] do [h:action:priest shadowguard|shadowguard] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2597, 'strategy:four horseman', 1, 'four horseman [h:object|strategy] [c:co ~four horseman|toggle combat][c:nc ~four horseman|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|void zone too close] do [h:action|move away from void zone] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2598, 'strategy:hunter boost beast mastery pve', 1, 'boost beast mastery pve [h:object|strategy] [c:co ~boost beast mastery pve|toggle combat][c:nc ~boost beast mastery pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter bestial wrath|bestial wrath] do [h:action:hunter bestial wrath|bestial wrath] (26.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:hunter rapid fire|rapid fire] do [h:action:hunter rapid fire|rapid fire] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2599, 'strategy:druid boost tank feral raid', 1, 'boost tank feral raid [h:object|strategy] [c:co ~boost tank feral raid|toggle combat][c:nc ~boost tank feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2600, 'strategy:druid cc balance pve', 1, 'cc balance pve [h:object|strategy] [c:co ~cc balance pve|toggle combat][c:nc ~cc balance pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:druid nature\'s grasp|nature\'s grasp] (20.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2601, 'strategy:hunter aoe survival pve', 1, 'aoe survival pve [h:object|strategy] [c:co ~aoe survival pve|toggle combat][c:nc ~aoe survival pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:hunter volley|volley] (23.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:hunter multi-shot|multi-shot] do [h:action:hunter multi-shot|multi-shot] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2602, 'strategy:hunter buff beast mastery raid', 1, 'buff beast mastery raid [h:object|strategy] [c:co ~buff beast mastery raid|toggle combat][c:nc ~buff beast mastery raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter deterrence|deterrence] (91.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2603, 'action:initialize pet', 1, 'initialize pet [h:object|action] [c:do initialize pet|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:often|often] with relevance (11.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:often|often] with relevance (11.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:often|often] with relevance (11.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (11.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:often|often] with relevance (11.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (11.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:often|often] with relevance (11.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:often|often] with relevance (11.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:often|often] with relevance (11.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (2604, 'strategy:druid stealthed', 1, 'stealthed [h:object|strategy] [c:co ~stealthed|toggle combat][c:nc ~stealthed|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2605, 'strategy:hunter cc survival pvp', 1, 'cc survival pvp [h:object|strategy] [c:co ~cc survival pvp|toggle combat][c:nc ~cc survival pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy fifteen yards|enemy fifteen yards] do [h:action:hunter concussive shot|concussive shot] (21.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter feign death|feign death] (43.000)[h:action:hunter scatter shot|scatter shot] (42.000)\r\nOn: [h:trigger:hunter freezing trap|freezing trap] do [h:action:hunter feign death|feign death] (41.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter scare beast|scare beast] do [h:action:hunter scare beast|scare beast] (22.000)', '', '', '', '', '', '', '', '', '', 0), + (2606, 'trigger:hunter multi-shot', 1, 'multi-shot [h:object|trigger] [c:multi-shot|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter multi-shot|multi-shot] (20.000) for [h:strategy:hunter aoe marksmanship raid|aoe marksmanship raid]\r\nExecutes: [h:action:hunter multi-shot|multi-shot] (20.000) for [h:strategy:hunter aoe marksmanship pve|aoe marksmanship pve]\r\nExecutes: [h:action:hunter multi-shot|multi-shot] (20.000) for [h:strategy:hunter aoe beast mastery pve|aoe beast mastery pve]\r\nExecutes: [h:action:hunter multi-shot|multi-shot] (20.000) for [h:strategy:hunter aoe beast mastery pvp|aoe beast mastery pvp]\r\nExecutes: [h:action:hunter multi-shot|multi-shot] (20.000) for [h:strategy:hunter aoe beast mastery raid|aoe beast mastery raid]\r\nExecutes: [h:action:hunter multi-shot|multi-shot] (20.000) for [h:strategy:hunter aoe survival pve|aoe survival pve]\r\nExecutes: [h:action:hunter multi-shot|multi-shot] (20.000) for [h:strategy:hunter aoe marksmanship pvp|aoe marksmanship pvp]\r\nExecutes: [h:action:hunter multi-shot|multi-shot] (20.000) for [h:strategy:hunter aoe survival pvp|aoe survival pvp]\r\nExecutes: [h:action:hunter multi-shot|multi-shot] (20.000) for [h:strategy:hunter aoe survival raid|aoe survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2607, 'strategy:priest buff discipline raid', 1, 'buff discipline raid [h:object|strategy] [c:co ~buff discipline raid|toggle combat][c:nc ~buff discipline raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (90.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest elune\'s grace|elune\'s grace] (23.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest divine spirit|divine spirit] do [h:action:priest divine spirit|divine spirit] (11.000)\r\nOn: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] do [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000)\r\nOn: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] do [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000)\r\nOn: [h:trigger:priest touch of weakness|touch of weakness] do [h:action:priest touch of weakness|touch of weakness] (11.000)\r\nOn: [h:trigger:priest divine spirit on party|divine spirit on party] do [h:action:priest divine spirit on party|divine spirit on party] (12.000)\r\nOn: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] do [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000)\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (11.000)\r\nOn: [h:trigger:priest inner fire|inner fire] do [h:action:priest inner fire|inner fire] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:priest power word: fortitude|power word: fortitude] do [h:action:priest power word: fortitude|power word: fortitude] (11.000)\r\nOn: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] do [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000)\r\nOn: [h:trigger:priest shadow protection|shadow protection] do [h:action:priest shadow protection|shadow protection] (11.000)\r\nOn: [h:trigger:priest shadow protection on party|shadow protection on party] do [h:action:priest shadow protection on party|shadow protection on party] (12.000)\r\nOn: [h:trigger:priest shadowguard|shadowguard] do [h:action:priest shadowguard|shadowguard] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2608, 'strategy:paladin offheal raid', 1, 'offheal raid [h:object|strategy] [c:co ~offheal raid|toggle combat][c:nc ~offheal raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2609, 'action:quest update add kill', 1, 'quest update add kill [h:object|action] [c:do quest update add kill|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|quest update add kill] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|quest update add kill] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|quest update add kill] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2610, 'action:honor gain', 1, 'honor gain [h:object|action] [c:do honor gain|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|honorgain] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|honorgain] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|honorgain] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2611, 'strategy:druid cc restoration pve', 1, 'cc restoration pve [h:object|strategy] [c:co ~cc restoration pve|toggle combat][c:nc ~cc restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:druid nature\'s grasp|nature\'s grasp] (20.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2612, 'strategy:druid cure restoration pve', 1, 'cure restoration pve [h:object|strategy] [c:co ~cure restoration pve|toggle combat][c:nc ~cure restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2613, 'strategy:rogue boost combat pve', 1, 'boost combat pve [h:object|strategy] [c:co ~boost combat pve|toggle combat][c:nc ~boost combat pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue adrenaline rush|adrenaline rush] do [h:action:rogue adrenaline rush|adrenaline rush] (25.000)\r\nOn: [h:trigger:rogue blade flurry|blade flurry] do [h:action:rogue blade flurry|blade flurry] (24.000)', '', '', '', '', '', '', '', '', '', 0), + (2614, 'action:warlock curse of tongues on attacker', 1, 'curse of tongues on attacker [h:object|action] [c:do curse of tongues on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of tongues on attacker|curse of tongues on attacker] with relevance (21.000) for [h:strategy:warlock curse tongues|curse tongues]', '', '', '', '', '', '', '', '', '', 0), + (2615, 'strategy:warrior boost arms pve', 1, 'boost arms pve [h:object|strategy] [c:co ~boost arms pve|toggle combat][c:nc ~boost arms pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2616, 'strategy:preheal', 1, 'preheal [h:object|strategy] [c:co ~preheal|toggle combat][c:nc ~preheal|toggle noncombat]\r\nThis strategy will make the bot calculate melee damage of attacker when deciding how to heal target', '', '', '', '', '', '', '', '', '', 0), + (2617, 'strategy:hunter survival pve', 1, 'survival pve [h:object|strategy] [c:co ~survival pve|toggle combat][c:nc ~survival pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aimed shot|aimed shot] do [h:action:hunter aimed shot|aimed shot] (12.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:hunter hunter\'s mark|hunter\'s mark] do [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000)\r\nOn: [h:trigger:hunter counterattack|counterattack] do [h:action:hunter counterattack|counterattack] (22.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:hunter raptor strike|raptor strike] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (21.000)\r\nOn: [h:trigger:hunter switch to melee|switch to melee] do [h:action:-ranged,+close|-ranged,+close] (30.000)\r\nOn: [h:trigger:hunter switch to ranged|switch to ranged] do [h:action:-close,+ranged|-close,+ranged] (43.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:hunter auto shot|auto shot] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:hunter item count|item count] do [h:action:hunter say::no ammo|say::no ammo] (10.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:dispel enrage|dispel enrage] do [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2618, 'strategy:druid tank feral', 1, 'tank feral [h:object|strategy] [c:co ~tank feral|toggle combat][c:nc ~tank feral|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:druid update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:druid update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:druid update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:druid update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:druid update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:druid update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2619, 'action:druid frenzied regeneration', 1, 'frenzied regeneration [h:object|action] [c:do frenzied regeneration|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:low health|low health] with relevance (60.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:low health|low health] with relevance (60.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:low health|low health] with relevance (60.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2620, 'value:generic useful to enchant', 1, 'items useful to enchant [h:object|value] [c:cdebug values items useful to enchant|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2621, 'strategy:druid buff tank feral pvp', 1, 'buff tank feral pvp [h:object|strategy] [c:co ~buff tank feral pvp|toggle combat][c:nc ~buff tank feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid bear form|bear form] do [h:action:druid dire bear form|dire bear form] (39.000)\r\nOn: [h:trigger:druid enrage|enrage] do [h:action:druid enrage|enrage] (20.000)\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid omen of clarity|omen of clarity] do [h:action:druid omen of clarity|omen of clarity] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2622, 'action:druid ravage', 1, 'ravage [h:object|action] [c:do ravage|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (12.000) for [h:strategy:druid stealth dps feral pve|stealth dps feral pve]\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (12.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]\r\nTriggers from: [h:trigger:druid trigger|trigger] with relevance (12.000) for [h:strategy:druid stealth dps feral raid|stealth dps feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2623, 'value:skip loot list', 1, 'skip loot list [h:object|value] [c:cdebug values skip loot list|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2624, 'trigger:warlock curse of doom on attacker', 1, 'curse of doom on attacker [h:object|trigger] [c:curse of doom on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of doom on attacker|curse of doom on attacker] (21.000) for [h:strategy:warlock curse doom|curse doom]', '', '', '', '', '', '', '', '', '', 0), + (2625, 'strategy:hunter marksmanship raid', 1, 'marksmanship raid [h:object|strategy] [c:co ~marksmanship raid|toggle combat][c:nc ~marksmanship raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aimed shot|aimed shot] do [h:action:hunter aimed shot|aimed shot] (12.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:hunter hunter\'s mark|hunter\'s mark] do [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000)\r\nOn: [h:trigger:hunter counterattack|counterattack] do [h:action:hunter counterattack|counterattack] (22.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:hunter raptor strike|raptor strike] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (21.000)\r\nOn: [h:trigger:hunter switch to melee|switch to melee] do [h:action:-ranged,+close|-ranged,+close] (30.000)\r\nOn: [h:trigger:hunter switch to ranged|switch to ranged] do [h:action:-close,+ranged|-close,+ranged] (43.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:hunter auto shot|auto shot] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:hunter item count|item count] do [h:action:hunter say::no ammo|say::no ammo] (10.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:dispel enrage|dispel enrage] do [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2626, 'trigger:paladin crusader strike', 1, 'crusader strike [h:object|trigger] [c:crusader strike|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin crusader strike|crusader strike] (10.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nExecutes: [h:action:paladin crusader strike|crusader strike] (10.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nExecutes: [h:action:paladin crusader strike|crusader strike] (10.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (2627, 'strategy:druid boost restoration pvp', 1, 'boost restoration pvp [h:object|strategy] [c:co ~boost restoration pvp|toggle combat][c:nc ~boost restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] do [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2628, 'strategy:avoid mobs', 1, 'avoid mobs [h:object|strategy] [c:co ~avoid mobs|toggle combat][c:nc ~avoid mobs|toggle noncombat]\r\nThis a strategy that will make bots mark mobs on the map so they try to walk around them.\r\nRelated strategies:\r\n[h:strategy|flee] [h:strategy|flee from adds] \r\nCombat behavior:\r\nOn: [h:trigger|very often] do [h:action|set avoid area] (10.000)\r\nNon combat behavior:\r\nOn: [h:trigger|very often] do [h:action|set avoid area] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2629, 'strategy:priest buff discipline pvp', 1, 'buff discipline pvp [h:object|strategy] [c:co ~buff discipline pvp|toggle combat][c:nc ~buff discipline pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (90.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest elune\'s grace|elune\'s grace] (23.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest divine spirit|divine spirit] do [h:action:priest divine spirit|divine spirit] (11.000)\r\nOn: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] do [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000)\r\nOn: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] do [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000)\r\nOn: [h:trigger:priest touch of weakness|touch of weakness] do [h:action:priest touch of weakness|touch of weakness] (11.000)\r\nOn: [h:trigger:priest divine spirit on party|divine spirit on party] do [h:action:priest divine spirit on party|divine spirit on party] (12.000)\r\nOn: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] do [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000)\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (11.000)\r\nOn: [h:trigger:priest inner fire|inner fire] do [h:action:priest inner fire|inner fire] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:priest power word: fortitude|power word: fortitude] do [h:action:priest power word: fortitude|power word: fortitude] (11.000)\r\nOn: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] do [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000)\r\nOn: [h:trigger:priest shadow protection|shadow protection] do [h:action:priest shadow protection|shadow protection] (11.000)\r\nOn: [h:trigger:priest shadow protection on party|shadow protection on party] do [h:action:priest shadow protection on party|shadow protection on party] (12.000)\r\nOn: [h:trigger:priest shadowguard|shadowguard] do [h:action:priest shadowguard|shadowguard] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2630, 'strategy:priest aoe holy pve', 1, 'aoe holy pve [h:object|strategy] [c:co ~aoe holy pve|toggle combat][c:nc ~aoe holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:priest circle of healing|circle of healing] (70.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2631, 'strategy:druid boost restoration raid', 1, 'boost restoration raid [h:object|strategy] [c:co ~boost restoration raid|toggle combat][c:nc ~boost restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] do [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2632, 'strategy:druid aoe tank feral pve', 1, 'aoe tank feral pve [h:object|strategy] [c:co ~aoe tank feral pve|toggle combat][c:nc ~aoe tank feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid swipe|swipe] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid challenging roar|challenging roar] (23.000)[h:action:druid demoralizing roar|demoralizing roar] (22.000)[h:action:druid swipe|swipe] (21.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2633, 'strategy:druid balance raid', 1, 'balance raid [h:object|strategy] [c:co ~balance raid|toggle combat][c:nc ~balance raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:druid rebirth|rebirth] do [h:action:druid rebirth|rebirth] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000)\r\nOn: [h:trigger:druid faerie fire|faerie fire] do [h:action:druid faerie fire|faerie fire] (13.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:druid starfire|starfire] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2634, 'strategy:hunter boost marksmanship raid', 1, 'boost marksmanship raid [h:object|strategy] [c:co ~boost marksmanship raid|toggle combat][c:nc ~boost marksmanship raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:hunter rapid fire|rapid fire] do [h:action:hunter rapid fire|rapid fire] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2635, 'strategy:hunter aspect beast mastery pvp', 1, 'aspect beast mastery pvp [h:object|strategy] [c:co ~aspect beast mastery pvp|toggle combat][c:nc ~aspect beast mastery pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:hunter aspect of the cheetah|aspect of the cheetah] (26.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:hunter aspect of the cheetah|aspect of the cheetah] (26.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000)', '', '', '', '', '', '', '', '', '', 0), + (2636, 'strategy:priest cc shadow pve', 1, 'cc shadow pve [h:object|strategy] [c:co ~cc shadow pve|toggle combat][c:nc ~cc shadow pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest psychic scream|psychic scream] (40.000)\r\nOn: [h:trigger:priest shackle undead|shackle undead] do [h:action:priest shackle undead|shackle undead] (40.000)\r\nOn: [h:trigger:priest silence|silence] do [h:action:priest silence|silence] (41.000)\r\nOn: [h:trigger:priest silence on enemy healer|silence on enemy healer] do [h:action:priest silence on enemy healer|silence on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2637, 'trigger:buff target', 1, 'buff target [h:object|trigger] [c:buff target|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|buff targets] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2638, 'strategy:paladin boost holy raid', 1, 'boost holy raid [h:object|strategy] [c:co ~boost holy raid|toggle combat][c:nc ~boost holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin divine favor|divine favor] do [h:action:paladin divine favor|divine favor] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2639, 'strategy:priest aoe discipline pvp', 1, 'aoe discipline pvp [h:object|strategy] [c:co ~aoe discipline pvp|toggle combat][c:nc ~aoe discipline pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:priest prayer of healing|prayer of healing] (70.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2640, 'trigger:revive target', 1, 'revive target [h:object|trigger] [c:revive target|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|revive targets] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2641, 'strategy:hunter marksmanship pve', 1, 'marksmanship pve [h:object|strategy] [c:co ~marksmanship pve|toggle combat][c:nc ~marksmanship pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aimed shot|aimed shot] do [h:action:hunter aimed shot|aimed shot] (12.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:hunter hunter\'s mark|hunter\'s mark] do [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000)\r\nOn: [h:trigger:hunter counterattack|counterattack] do [h:action:hunter counterattack|counterattack] (22.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:hunter raptor strike|raptor strike] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (21.000)\r\nOn: [h:trigger:hunter switch to melee|switch to melee] do [h:action:-ranged,+close|-ranged,+close] (30.000)\r\nOn: [h:trigger:hunter switch to ranged|switch to ranged] do [h:action:-close,+ranged|-close,+ranged] (43.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:hunter auto shot|auto shot] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:hunter item count|item count] do [h:action:hunter say::no ammo|say::no ammo] (10.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:dispel enrage|dispel enrage] do [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2642, 'strategy:priest cc discipline pve', 1, 'cc discipline pve [h:object|strategy] [c:co ~cc discipline pve|toggle combat][c:nc ~cc discipline pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest psychic scream|psychic scream] (40.000)\r\nOn: [h:trigger:priest shackle undead|shackle undead] do [h:action:priest shackle undead|shackle undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2643, 'strategy:druid restoration pvp', 1, 'restoration pvp [h:object|strategy] [c:co ~restoration pvp|toggle combat][c:nc ~restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:druid rejuvenation|rejuvenation] (61.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:druid tranquility|tranquility] (72.000)\r\nOn: [h:trigger:druid rebirth|rebirth] do [h:action:druid rebirth|rebirth] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:druid regrowth|regrowth] (71.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:druid rejuvenation on party|rejuvenation on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (20.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2644, 'trigger:quest details', 1, 'quest details [h:object|trigger] [c:quest details|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|quest details] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|quest details] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|quest details] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2645, 'strategy:hunter aspect marksmanship pve', 1, 'aspect marksmanship pve [h:object|strategy] [c:co ~aspect marksmanship pve|toggle combat][c:nc ~aspect marksmanship pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2646, 'strategy:warlock boost destruction pve', 1, 'boost destruction pve [h:object|strategy] [c:co ~boost destruction pve|toggle combat][c:nc ~boost destruction pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2647, 'action:buff targets', 1, 'buff targets [h:object|action] [c:do buff targets|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|buff target] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2648, 'value:attackers targeting me', 1, 'attackers targeting me [h:object|value] [c:cdebug values attackers targeting me|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2649, 'strategy:priest cc holy raid', 1, 'cc holy raid [h:object|strategy] [c:co ~cc holy raid|toggle combat][c:nc ~cc holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest psychic scream|psychic scream] (40.000)\r\nOn: [h:trigger:priest shackle undead|shackle undead] do [h:action:priest shackle undead|shackle undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2650, 'action:confirm quest', 1, 'confirm quest [h:object|action] [c:do confirm quest|execute]\r\nThis action will make a bot click accept asked to start a quest.\r\nCombat behavior:\r\nTriggers from: [h:trigger|confirm quest] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|confirm quest] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|confirm quest] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2651, 'strategy:paladin boost retribution raid', 1, 'boost retribution raid [h:object|strategy] [c:co ~boost retribution raid|toggle combat][c:nc ~boost retribution raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2652, 'strategy:debug loot', 1, 'debug loot [h:object|strategy] [c:co ~debug loot|toggle combat][c:nc ~debug loot|toggle noncombat]\r\nThis strategy will make the bot give chat feedback about looting.\r\nRelated strategies:\r\n[h:strategy|debug] ', '', '', '', '', '', '', '', '', '', 0), + (2653, 'strategy:naxxramas', 1, 'naxxramas [h:object|strategy] [c:co ~naxxramas|toggle combat][c:nc ~naxxramas|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|start four horseman fight] do [h:action|enable four horseman fight strategy] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2654, 'strategy:follow jump', 1, 'follow jump [h:object|strategy] [c:co ~follow jump|toggle combat][c:nc ~follow jump|toggle noncombat]\r\nThis strategy makes bot jump when following.\r\n\r\nRelated strategies:\r\n[h:strategy|follow] ', '', '', '', '', '', '', '', '', '', 0), + (2655, 'strategy:heal interrupt', 1, 'heal interrupt [h:object|strategy] [c:co ~heal interrupt|toggle combat][c:nc ~heal interrupt|toggle noncombat]\r\nThis strategy will make the bot interrupt the heal it currently casts if target is at full health\r\nCombat behavior:\r\nOn: [h:trigger|heal target full health] do [h:action|interrupt current spell] (90.000)\r\nReaction behavior:\r\nOn: [h:trigger|heal target full health] do [h:action|interrupt current spell] (90.000)', '', '', '', '', '', '', '', '', '', 0), + (2656, 'strategy:karazhan', 1, 'karazhan [h:object|strategy] [c:co ~karazhan|toggle combat][c:nc ~karazhan|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger|start netherspite fight] do [h:action|enable netherspite fight strategy] (100.000)\r\nOn: [h:trigger|start prince malchezaar fight] do [h:action|enable prince malchezaar fight strategy] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2657, 'strategy:shaman offheal pvp', 1, 'offheal pvp [h:object|strategy] [c:co ~offheal pvp|toggle combat][c:nc ~offheal pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2658, 'strategy:nowar', 1, 'nowar [h:object|strategy] [c:co ~nowar|toggle combat][c:nc ~nowar|toggle noncombat]\r\nThis a toggle strategy that removes the \'at war\' check for all factions from time to time.', '', '', '', '', '', '', '', '', '', 0), + (2659, 'strategy:silent', 1, 'silent [h:object|strategy] [c:co ~silent|toggle combat][c:nc ~silent|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2660, 'strategy:rpg jump', 1, 'rpg jump [h:object|strategy] [c:co ~rpg jump|toggle combat][c:nc ~rpg jump|toggle noncombat]\r\nThis strategy makes bot jump randomly.\r\nChances of jumps forward, in place, backward depend on config.\r\n\r\nRelated strategies:\r\n[h:strategy|rpg] \r\nCombat behavior:\r\nOn: [h:trigger|random jump] do [h:action|jump] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger|random jump] do [h:action|jump] (100.000)\r\nReaction behavior:\r\nOn: [h:trigger|random jump] do [h:action|jump] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2661, 'strategy:priest aoe discipline pve', 1, 'aoe discipline pve [h:object|strategy] [c:co ~aoe discipline pve|toggle combat][c:nc ~aoe discipline pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:priest prayer of healing|prayer of healing] (70.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2662, 'trigger:start netherspite fight', 1, 'start netherspite fight [h:object|trigger] [c:start netherspite fight|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|enable netherspite fight strategy] (100.000) for [h:strategy|karazhan]', '', '', '', '', '', '', '', '', '', 0), + (2663, 'strategy:priest aoe holy raid', 1, 'aoe holy raid [h:object|strategy] [c:co ~aoe holy raid|toggle combat][c:nc ~aoe holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:priest circle of healing|circle of healing] (70.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2664, 'strategy:priest aoe discipline raid', 1, 'aoe discipline raid [h:object|strategy] [c:co ~aoe discipline raid|toggle combat][c:nc ~aoe discipline raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:priest prayer of healing|prayer of healing] (70.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2665, 'strategy:priest aoe holy pvp', 1, 'aoe holy pvp [h:object|strategy] [c:co ~aoe holy pvp|toggle combat][c:nc ~aoe holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:priest circle of healing|circle of healing] (70.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2666, 'strategy:priest aoe shadow pve', 1, 'aoe shadow pve [h:object|strategy] [c:co ~aoe shadow pve|toggle combat][c:nc ~aoe shadow pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] do [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2667, 'strategy:priest aoe shadow pvp', 1, 'aoe shadow pvp [h:object|strategy] [c:co ~aoe shadow pvp|toggle combat][c:nc ~aoe shadow pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] do [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2668, 'strategy:priest holy pvp', 1, 'holy pvp [h:object|strategy] [c:co ~holy pvp|toggle combat][c:nc ~holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest desperate prayer|desperate prayer] (90.000)[h:action:priest flash heal|flash heal] (80.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (70.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:priest renew on party|renew on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (80.000)[h:action:priest power word: shield on party|power word: shield on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (71.000)[h:action:priest power word: shield on party|power word: shield on party] (72.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest greater heal on party|greater heal on party] (70.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest power word: shield|power word: shield] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:priest resurrection|resurrection] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2669, 'strategy:priest boost discipline pve', 1, 'boost discipline pve [h:object|strategy] [c:co ~boost discipline pve|toggle combat][c:nc ~boost discipline pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest inner focus|inner focus] do [h:action:priest inner focus|inner focus] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:priest power infusion|power infusion] do [h:action:priest power infusion|power infusion] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2670, 'strategy:priest aoe shadow raid', 1, 'aoe shadow raid [h:object|strategy] [c:co ~aoe shadow raid|toggle combat][c:nc ~aoe shadow raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] do [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2671, 'strategy:priest boost discipline pvp', 1, 'boost discipline pvp [h:object|strategy] [c:co ~boost discipline pvp|toggle combat][c:nc ~boost discipline pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest inner focus|inner focus] do [h:action:priest inner focus|inner focus] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:priest power infusion|power infusion] do [h:action:priest power infusion|power infusion] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2672, 'strategy:druid buff tank feral pve', 1, 'buff tank feral pve [h:object|strategy] [c:co ~buff tank feral pve|toggle combat][c:nc ~buff tank feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid bear form|bear form] do [h:action:druid dire bear form|dire bear form] (39.000)\r\nOn: [h:trigger:druid enrage|enrage] do [h:action:druid enrage|enrage] (20.000)\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid omen of clarity|omen of clarity] do [h:action:druid omen of clarity|omen of clarity] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2673, 'strategy:priest boost discipline raid', 1, 'boost discipline raid [h:object|strategy] [c:co ~boost discipline raid|toggle combat][c:nc ~boost discipline raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest inner focus|inner focus] do [h:action:priest inner focus|inner focus] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:priest power infusion|power infusion] do [h:action:priest power infusion|power infusion] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2674, 'strategy:shaman boost restoration raid', 1, 'boost restoration raid [h:object|strategy] [c:co ~boost restoration raid|toggle combat][c:nc ~boost restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2675, 'strategy:priest boost holy pve', 1, 'boost holy pve [h:object|strategy] [c:co ~boost holy pve|toggle combat][c:nc ~boost holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest inner focus|inner focus] do [h:action:priest inner focus|inner focus] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:priest power infusion|power infusion] do [h:action:priest power infusion|power infusion] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2676, 'strategy:priest boost holy pvp', 1, 'boost holy pvp [h:object|strategy] [c:co ~boost holy pvp|toggle combat][c:nc ~boost holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest inner focus|inner focus] do [h:action:priest inner focus|inner focus] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:priest power infusion|power infusion] do [h:action:priest power infusion|power infusion] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2677, 'strategy:priest buff shadow raid', 1, 'buff shadow raid [h:object|strategy] [c:co ~buff shadow raid|toggle combat][c:nc ~buff shadow raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (90.000)\r\nOn: [h:trigger:priest feedback|feedback] do [h:action:priest feedback|feedback] (20.000)\r\nOn: [h:trigger:priest shadowform|shadowform] do [h:action:priest shadowform|shadowform] (30.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest elune\'s grace|elune\'s grace] (23.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest divine spirit|divine spirit] do [h:action:priest divine spirit|divine spirit] (11.000)\r\nOn: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] do [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000)\r\nOn: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] do [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000)\r\nOn: [h:trigger:priest touch of weakness|touch of weakness] do [h:action:priest touch of weakness|touch of weakness] (11.000)\r\nOn: [h:trigger:priest divine spirit on party|divine spirit on party] do [h:action:priest divine spirit on party|divine spirit on party] (12.000)\r\nOn: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] do [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000)\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (11.000)\r\nOn: [h:trigger:priest inner fire|inner fire] do [h:action:priest inner fire|inner fire] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:priest power word: fortitude|power word: fortitude] do [h:action:priest power word: fortitude|power word: fortitude] (11.000)\r\nOn: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] do [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000)\r\nOn: [h:trigger:priest shadow protection|shadow protection] do [h:action:priest shadow protection|shadow protection] (11.000)\r\nOn: [h:trigger:priest shadow protection on party|shadow protection on party] do [h:action:priest shadow protection on party|shadow protection on party] (12.000)\r\nOn: [h:trigger:priest shadowguard|shadowguard] do [h:action:priest shadowguard|shadowguard] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2678, 'strategy:priest buff holy raid', 1, 'buff holy raid [h:object|strategy] [c:co ~buff holy raid|toggle combat][c:nc ~buff holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (90.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest elune\'s grace|elune\'s grace] (23.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest divine spirit|divine spirit] do [h:action:priest divine spirit|divine spirit] (11.000)\r\nOn: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] do [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000)\r\nOn: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] do [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000)\r\nOn: [h:trigger:priest touch of weakness|touch of weakness] do [h:action:priest touch of weakness|touch of weakness] (11.000)\r\nOn: [h:trigger:priest divine spirit on party|divine spirit on party] do [h:action:priest divine spirit on party|divine spirit on party] (12.000)\r\nOn: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] do [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000)\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (11.000)\r\nOn: [h:trigger:priest inner fire|inner fire] do [h:action:priest inner fire|inner fire] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:priest power word: fortitude|power word: fortitude] do [h:action:priest power word: fortitude|power word: fortitude] (11.000)\r\nOn: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] do [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000)\r\nOn: [h:trigger:priest shadow protection|shadow protection] do [h:action:priest shadow protection|shadow protection] (11.000)\r\nOn: [h:trigger:priest shadow protection on party|shadow protection on party] do [h:action:priest shadow protection on party|shadow protection on party] (12.000)\r\nOn: [h:trigger:priest shadowguard|shadowguard] do [h:action:priest shadowguard|shadowguard] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2679, 'strategy:priest buff holy pve', 1, 'buff holy pve [h:object|strategy] [c:co ~buff holy pve|toggle combat][c:nc ~buff holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (90.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest elune\'s grace|elune\'s grace] (23.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest divine spirit|divine spirit] do [h:action:priest divine spirit|divine spirit] (11.000)\r\nOn: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] do [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000)\r\nOn: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] do [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000)\r\nOn: [h:trigger:priest touch of weakness|touch of weakness] do [h:action:priest touch of weakness|touch of weakness] (11.000)\r\nOn: [h:trigger:priest divine spirit on party|divine spirit on party] do [h:action:priest divine spirit on party|divine spirit on party] (12.000)\r\nOn: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] do [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000)\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (11.000)\r\nOn: [h:trigger:priest inner fire|inner fire] do [h:action:priest inner fire|inner fire] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:priest power word: fortitude|power word: fortitude] do [h:action:priest power word: fortitude|power word: fortitude] (11.000)\r\nOn: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] do [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000)\r\nOn: [h:trigger:priest shadow protection|shadow protection] do [h:action:priest shadow protection|shadow protection] (11.000)\r\nOn: [h:trigger:priest shadow protection on party|shadow protection on party] do [h:action:priest shadow protection on party|shadow protection on party] (12.000)\r\nOn: [h:trigger:priest shadowguard|shadowguard] do [h:action:priest shadowguard|shadowguard] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2680, 'strategy:priest cure holy pve', 1, 'cure holy pve [h:object|strategy] [c:co ~cure holy pve|toggle combat][c:nc ~cure holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)', '', '', '', '', '', '', '', '', '', 0), + (2681, 'trigger:honorgain', 1, 'honorgain [h:object|trigger] [c:honorgain|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|honor gain] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|honor gain] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|honor gain] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2682, 'strategy:priest buff holy pvp', 1, 'buff holy pvp [h:object|strategy] [c:co ~buff holy pvp|toggle combat][c:nc ~buff holy pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (90.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest elune\'s grace|elune\'s grace] (23.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest divine spirit|divine spirit] do [h:action:priest divine spirit|divine spirit] (11.000)\r\nOn: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] do [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000)\r\nOn: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] do [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000)\r\nOn: [h:trigger:priest touch of weakness|touch of weakness] do [h:action:priest touch of weakness|touch of weakness] (11.000)\r\nOn: [h:trigger:priest divine spirit on party|divine spirit on party] do [h:action:priest divine spirit on party|divine spirit on party] (12.000)\r\nOn: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] do [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000)\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (11.000)\r\nOn: [h:trigger:priest inner fire|inner fire] do [h:action:priest inner fire|inner fire] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:priest power word: fortitude|power word: fortitude] do [h:action:priest power word: fortitude|power word: fortitude] (11.000)\r\nOn: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] do [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000)\r\nOn: [h:trigger:priest shadow protection|shadow protection] do [h:action:priest shadow protection|shadow protection] (11.000)\r\nOn: [h:trigger:priest shadow protection on party|shadow protection on party] do [h:action:priest shadow protection on party|shadow protection on party] (12.000)\r\nOn: [h:trigger:priest shadowguard|shadowguard] do [h:action:priest shadowguard|shadowguard] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2683, 'strategy:priest holy pve', 1, 'holy pve [h:object|strategy] [c:co ~holy pve|toggle combat][c:nc ~holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest desperate prayer|desperate prayer] (90.000)[h:action:priest flash heal|flash heal] (80.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (70.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:priest renew on party|renew on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (80.000)[h:action:priest power word: shield on party|power word: shield on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (71.000)[h:action:priest power word: shield on party|power word: shield on party] (72.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest greater heal on party|greater heal on party] (70.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest power word: shield|power word: shield] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:priest resurrection|resurrection] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2684, 'strategy:priest buff shadow pvp', 1, 'buff shadow pvp [h:object|strategy] [c:co ~buff shadow pvp|toggle combat][c:nc ~buff shadow pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (90.000)\r\nOn: [h:trigger:priest feedback|feedback] do [h:action:priest feedback|feedback] (20.000)\r\nOn: [h:trigger:priest shadowform|shadowform] do [h:action:priest shadowform|shadowform] (30.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest elune\'s grace|elune\'s grace] (23.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest divine spirit|divine spirit] do [h:action:priest divine spirit|divine spirit] (11.000)\r\nOn: [h:trigger:priest prayer of fortitude on party|prayer of fortitude on party] do [h:action:priest prayer of fortitude on party|prayer of fortitude on party] (13.000)\r\nOn: [h:trigger:priest power word: fortitude on party|power word: fortitude on party] do [h:action:priest power word: fortitude on party|power word: fortitude on party] (12.000)\r\nOn: [h:trigger:priest touch of weakness|touch of weakness] do [h:action:priest touch of weakness|touch of weakness] (11.000)\r\nOn: [h:trigger:priest divine spirit on party|divine spirit on party] do [h:action:priest divine spirit on party|divine spirit on party] (12.000)\r\nOn: [h:trigger:priest prayer of spirit on party|prayer of spirit on party] do [h:action:priest prayer of spirit on party|prayer of spirit on party] (13.000)\r\nOn: [h:trigger:priest fear ward|fear ward] do [h:action:priest fear ward|fear ward] (11.000)\r\nOn: [h:trigger:priest inner fire|inner fire] do [h:action:priest inner fire|inner fire] (11.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:priest power word: fortitude|power word: fortitude] do [h:action:priest power word: fortitude|power word: fortitude] (11.000)\r\nOn: [h:trigger:priest prayer of shadow protection on party|prayer of shadow protection on party] do [h:action:priest prayer of shadow protection on party|prayer of shadow protection on party] (13.000)\r\nOn: [h:trigger:priest shadow protection|shadow protection] do [h:action:priest shadow protection|shadow protection] (11.000)\r\nOn: [h:trigger:priest shadow protection on party|shadow protection on party] do [h:action:priest shadow protection on party|shadow protection on party] (12.000)\r\nOn: [h:trigger:priest shadowguard|shadowguard] do [h:action:priest shadowguard|shadowguard] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2685, 'strategy:priest cc discipline pvp', 1, 'cc discipline pvp [h:object|strategy] [c:co ~cc discipline pvp|toggle combat][c:nc ~cc discipline pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest psychic scream|psychic scream] (40.000)\r\nOn: [h:trigger:priest shackle undead|shackle undead] do [h:action:priest shackle undead|shackle undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2686, 'trigger:netherspite infernal too close', 1, 'netherspite infernal too close [h:object|trigger] [c:netherspite infernal too close|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|move away from netherspite infernal] (100.000) for [h:strategy|prince malchezaar]', '', '', '', '', '', '', '', '', '', 0), + (2687, 'strategy:priest holy raid', 1, 'holy raid [h:object|strategy] [c:co ~holy raid|toggle combat][c:nc ~holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest desperate prayer|desperate prayer] (90.000)[h:action:priest flash heal|flash heal] (80.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (70.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:priest fade|fade] (50.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:priest renew on party|renew on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (80.000)[h:action:priest power word: shield on party|power word: shield on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (71.000)[h:action:priest power word: shield on party|power word: shield on party] (72.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest greater heal on party|greater heal on party] (70.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest power word: shield|power word: shield] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:priest resurrection|resurrection] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2688, 'strategy:priest cc discipline raid', 1, 'cc discipline raid [h:object|strategy] [c:co ~cc discipline raid|toggle combat][c:nc ~cc discipline raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest psychic scream|psychic scream] (40.000)\r\nOn: [h:trigger:priest shackle undead|shackle undead] do [h:action:priest shackle undead|shackle undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2689, 'action:warlock curse of shadow on attacker', 1, 'curse of shadow on attacker [h:object|action] [c:do curse of shadow on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of shadow on attacker|curse of shadow on attacker] with relevance (21.000) for [h:strategy:warlock curse shadow|curse shadow]', '', '', '', '', '', '', '', '', '', 0), + (2690, 'strategy:priest offdps', 1, 'offdps [h:object|strategy] [c:co ~offdps|toggle combat][c:nc ~offdps|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2691, 'strategy:priest cc holy pve', 1, 'cc holy pve [h:object|strategy] [c:co ~cc holy pve|toggle combat][c:nc ~cc holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:priest psychic scream|psychic scream] (40.000)\r\nOn: [h:trigger:priest shackle undead|shackle undead] do [h:action:priest shackle undead|shackle undead] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2692, 'strategy:priest cure shadow pvp', 1, 'cure shadow pvp [h:object|strategy] [c:co ~cure shadow pvp|toggle combat][c:nc ~cure shadow pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)', '', '', '', '', '', '', '', '', '', 0), + (2693, 'strategy:priest cure discipline pve', 1, 'cure discipline pve [h:object|strategy] [c:co ~cure discipline pve|toggle combat][c:nc ~cure discipline pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)', '', '', '', '', '', '', '', '', '', 0), + (2694, 'strategy:priest cure discipline pvp', 1, 'cure discipline pvp [h:object|strategy] [c:co ~cure discipline pvp|toggle combat][c:nc ~cure discipline pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)', '', '', '', '', '', '', '', '', '', 0), + (2695, 'strategy:priest cure holy raid', 1, 'cure holy raid [h:object|strategy] [c:co ~cure holy raid|toggle combat][c:nc ~cure holy raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)', '', '', '', '', '', '', '', '', '', 0), + (2696, 'strategy:priest cure shadow raid', 1, 'cure shadow raid [h:object|strategy] [c:co ~cure shadow raid|toggle combat][c:nc ~cure shadow raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)\r\nNon combat behavior:\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease|abolish disease] (51.000)\r\nOn: [h:trigger:priest cure disease|cure disease] do [h:action:priest abolish disease on party|abolish disease on party] (50.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic|dispel magic] (53.000)\r\nOn: [h:trigger:priest dispel magic|dispel magic] do [h:action:priest dispel magic on party|dispel magic on party] (52.000)', '', '', '', '', '', '', '', '', '', 0), + (2697, 'strategy:priest discipline', 1, 'discipline [h:object|strategy] [c:co ~discipline|toggle combat][c:nc ~discipline|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:priest update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:priest update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:priest update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:priest update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:priest update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:priest update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2698, 'strategy:priest discipline raid', 1, 'discipline raid [h:object|strategy] [c:co ~discipline raid|toggle combat][c:nc ~discipline raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:priest desperate prayer|desperate prayer] (90.000)[h:action:priest flash heal|flash heal] (80.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:priest greater heal|greater heal] (70.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:priest fade|fade] (50.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:priest renew on party|renew on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (80.000)[h:action:priest power word: shield on party|power word: shield on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (71.000)[h:action:priest power word: shield on party|power word: shield on party] (72.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest greater heal on party|greater heal on party] (70.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:priest power word: shield|power word: shield] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:priest resurrection|resurrection] (90.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2699, 'strategy:priest offdps pvp', 1, 'offdps pvp [h:object|strategy] [c:co ~offdps pvp|toggle combat][c:nc ~offdps pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:priest holy fire|holy fire] do [h:action:priest holy fire|holy fire] (12.000)\r\nOn: [h:trigger:priest aoe|aoe] do [h:action:priest holy nova|holy nova] (20.000)\r\nOn: [h:trigger:priest shadow word: pain|shadow word: pain] do [h:action:priest shadow word: pain|shadow word: pain] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:priest starshards|starshards] (11.000)\r\nOn: [h:trigger:no mana|no mana] do [h:action:shoot|shoot] (10.000)\r\nOn: [h:trigger:priest shadow word: pain on attacker|shadow word: pain on attacker] do [h:action:priest shadow word: pain on attacker|shadow word: pain on attacker] (21.000)\r\nOn: [h:trigger:priest smite|smite] do [h:action:priest smite|smite] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2700, 'strategy:priest offheal', 1, 'offheal [h:object|strategy] [c:co ~offheal|toggle combat][c:nc ~offheal|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2701, 'strategy:priest offheal pve', 1, 'offheal pve [h:object|strategy] [c:co ~offheal pve|toggle combat][c:nc ~offheal pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:priest flash heal on party|flash heal on party] (80.000)[h:action:priest power word: shield on party|power word: shield on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (70.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:priest renew on party|renew on party] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:priest greater heal on party|greater heal on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2702, 'trigger:hunter switch to melee', 1, 'switch to melee [h:object|trigger] [c:switch to melee|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:-ranged,+close|-ranged,+close] (30.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nExecutes: [h:action:-ranged,+close|-ranged,+close] (30.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nExecutes: [h:action:-ranged,+close|-ranged,+close] (30.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nExecutes: [h:action:-ranged,+close|-ranged,+close] (30.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nExecutes: [h:action:-ranged,+close|-ranged,+close] (30.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nExecutes: [h:action:-ranged,+close|-ranged,+close] (30.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nExecutes: [h:action:-ranged,+close|-ranged,+close] (30.000) for [h:strategy:hunter survival pve|survival pve]\r\nExecutes: [h:action:-ranged,+close|-ranged,+close] (30.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nExecutes: [h:action:-ranged,+close|-ranged,+close] (30.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2703, 'strategy:warrior boost arms pvp', 1, 'boost arms pvp [h:object|strategy] [c:co ~boost arms pvp|toggle combat][c:nc ~boost arms pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2704, 'strategy:warrior boost fury raid', 1, 'boost fury raid [h:object|strategy] [c:co ~boost fury raid|toggle combat][c:nc ~boost fury raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warrior death wish|death wish] do [h:action:warrior death wish|death wish] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:warrior recklessness|recklessness] do [h:action:warrior recklessness|recklessness] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2705, 'strategy:warrior boost arms raid', 1, 'boost arms raid [h:object|strategy] [c:co ~boost arms raid|toggle combat][c:nc ~boost arms raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2706, 'strategy:warrior boost protection raid', 1, 'boost protection raid [h:object|strategy] [c:co ~boost protection raid|toggle combat][c:nc ~boost protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2707, 'strategy:paladin boost holy pve', 1, 'boost holy pve [h:object|strategy] [c:co ~boost holy pve|toggle combat][c:nc ~boost holy pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:paladin divine favor|divine favor] do [h:action:paladin divine favor|divine favor] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2708, 'strategy:paladin boost retribution pve', 1, 'boost retribution pve [h:object|strategy] [c:co ~boost retribution pve|toggle combat][c:nc ~boost retribution pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2709, 'strategy:paladin boost protection pvp', 1, 'boost protection pvp [h:object|strategy] [c:co ~boost protection pvp|toggle combat][c:nc ~boost protection pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2710, 'strategy:paladin boost protection raid', 1, 'boost protection raid [h:object|strategy] [c:co ~boost protection raid|toggle combat][c:nc ~boost protection raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2711, 'strategy:paladin offheal', 1, 'offheal [h:object|strategy] [c:co ~offheal|toggle combat][c:nc ~offheal|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2712, 'strategy:paladin offheal pvp', 1, 'offheal pvp [h:object|strategy] [c:co ~offheal pvp|toggle combat][c:nc ~offheal pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:paladin lay on hands on party|lay on hands on party] (80.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)\r\nOn: [h:trigger:protect party member|protect party member] do [h:action:paladin blessing of protection|blessing of protection] (80.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:paladin holy light on party|holy light on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2713, 'strategy:hunter aspect beast mastery raid', 1, 'aspect beast mastery raid [h:object|strategy] [c:co ~aspect beast mastery raid|toggle combat][c:nc ~aspect beast mastery raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2714, 'strategy:hunter aoe marksmanship pve', 1, 'aoe marksmanship pve [h:object|strategy] [c:co ~aoe marksmanship pve|toggle combat][c:nc ~aoe marksmanship pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:hunter volley|volley] (23.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:hunter multi-shot|multi-shot] do [h:action:hunter multi-shot|multi-shot] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2715, 'strategy:hunter boost marksmanship pve', 1, 'boost marksmanship pve [h:object|strategy] [c:co ~boost marksmanship pve|toggle combat][c:nc ~boost marksmanship pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:hunter rapid fire|rapid fire] do [h:action:hunter rapid fire|rapid fire] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2716, 'strategy:hunter boost beast mastery raid', 1, 'boost beast mastery raid [h:object|strategy] [c:co ~boost beast mastery raid|toggle combat][c:nc ~boost beast mastery raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter bestial wrath|bestial wrath] do [h:action:hunter bestial wrath|bestial wrath] (26.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:hunter rapid fire|rapid fire] do [h:action:hunter rapid fire|rapid fire] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2717, 'strategy:hunter aoe beast mastery pve', 1, 'aoe beast mastery pve [h:object|strategy] [c:co ~aoe beast mastery pve|toggle combat][c:nc ~aoe beast mastery pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:hunter volley|volley] (23.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:hunter multi-shot|multi-shot] do [h:action:hunter multi-shot|multi-shot] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2718, 'strategy:hunter aoe beast mastery raid', 1, 'aoe beast mastery raid [h:object|strategy] [c:co ~aoe beast mastery raid|toggle combat][c:nc ~aoe beast mastery raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:hunter volley|volley] (23.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:hunter multi-shot|multi-shot] do [h:action:hunter multi-shot|multi-shot] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2719, 'strategy:hunter aoe marksmanship pvp', 1, 'aoe marksmanship pvp [h:object|strategy] [c:co ~aoe marksmanship pvp|toggle combat][c:nc ~aoe marksmanship pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:hunter volley|volley] (23.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:hunter multi-shot|multi-shot] do [h:action:hunter multi-shot|multi-shot] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2720, 'strategy:mage boost fire pvp', 1, 'boost fire pvp [h:object|strategy] [c:co ~boost fire pvp|toggle combat][c:nc ~boost fire pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage combustion|combustion] do [h:action:mage combustion|combustion] (21.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2721, 'strategy:hunter aoe marksmanship raid', 1, 'aoe marksmanship raid [h:object|strategy] [c:co ~aoe marksmanship raid|toggle combat][c:nc ~aoe marksmanship raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:hunter volley|volley] (23.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:hunter multi-shot|multi-shot] do [h:action:hunter multi-shot|multi-shot] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2722, 'strategy:hunter aoe survival pvp', 1, 'aoe survival pvp [h:object|strategy] [c:co ~aoe survival pvp|toggle combat][c:nc ~aoe survival pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:hunter volley|volley] (23.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:hunter multi-shot|multi-shot] do [h:action:hunter multi-shot|multi-shot] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2723, 'trigger:warlock curse of shadow on attacker', 1, 'curse of shadow on attacker [h:object|trigger] [c:curse of shadow on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of shadow on attacker|curse of shadow on attacker] (21.000) for [h:strategy:warlock curse shadow|curse shadow]', '', '', '', '', '', '', '', '', '', 0), + (2724, 'strategy:hunter buff', 1, 'buff [h:object|strategy] [c:co ~buff|toggle combat][c:nc ~buff|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2725, 'strategy:hunter aoe survival raid', 1, 'aoe survival raid [h:object|strategy] [c:co ~aoe survival raid|toggle combat][c:nc ~aoe survival raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)[h:action:hunter volley|volley] (23.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:hunter multi-shot|multi-shot] do [h:action:hunter multi-shot|multi-shot] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2726, 'strategy:hunter aspect beast', 1, 'aspect beast [h:object|strategy] [c:co ~aspect beast|toggle combat][c:nc ~aspect beast|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the beast|aspect of the beast] do [h:action:hunter aspect of the beast|aspect of the beast] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the beast|aspect of the beast] do [h:action:hunter aspect of the beast|aspect of the beast] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2727, 'strategy:hunter cc marksmanship pve', 1, 'cc marksmanship pve [h:object|strategy] [c:co ~cc marksmanship pve|toggle combat][c:nc ~cc marksmanship pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy fifteen yards|enemy fifteen yards] do [h:action:hunter concussive shot|concussive shot] (21.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter scatter shot|scatter shot] (42.000)\r\nOn: [h:trigger:hunter freezing trap|freezing trap] do [h:action:hunter feign death|feign death] (41.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter scare beast|scare beast] do [h:action:hunter scare beast|scare beast] (22.000)', '', '', '', '', '', '', '', '', '', 0), + (2728, 'strategy:hunter aspect viper', 1, 'aspect viper [h:object|strategy] [c:co ~aspect viper|toggle combat][c:nc ~aspect viper|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the viper|aspect of the viper] do [h:action:hunter aspect of the viper|aspect of the viper] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the viper|aspect of the viper] do [h:action:hunter aspect of the viper|aspect of the viper] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2729, 'strategy:hunter aspect beast mastery pve', 1, 'aspect beast mastery pve [h:object|strategy] [c:co ~aspect beast mastery pve|toggle combat][c:nc ~aspect beast mastery pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2730, 'strategy:hunter aspect cheetah', 1, 'aspect cheetah [h:object|strategy] [c:co ~aspect cheetah|toggle combat][c:nc ~aspect cheetah|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the cheetah|aspect of the cheetah] do [h:action:hunter aspect of the cheetah|aspect of the cheetah] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the cheetah|aspect of the cheetah] do [h:action:hunter aspect of the cheetah|aspect of the cheetah] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2731, 'strategy:hunter cc beast mastery pvp', 1, 'cc beast mastery pvp [h:object|strategy] [c:co ~cc beast mastery pvp|toggle combat][c:nc ~cc beast mastery pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy fifteen yards|enemy fifteen yards] do [h:action:hunter concussive shot|concussive shot] (21.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter feign death|feign death] (43.000)[h:action:hunter scatter shot|scatter shot] (42.000)\r\nOn: [h:trigger:hunter freezing trap|freezing trap] do [h:action:hunter feign death|feign death] (41.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter scare beast|scare beast] do [h:action:hunter scare beast|scare beast] (22.000)', '', '', '', '', '', '', '', '', '', 0), + (2732, 'strategy:hunter aspect survival pvp', 1, 'aspect survival pvp [h:object|strategy] [c:co ~aspect survival pvp|toggle combat][c:nc ~aspect survival pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:hunter aspect of the cheetah|aspect of the cheetah] (26.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:hunter aspect of the cheetah|aspect of the cheetah] (26.000)\r\nOn: [h:trigger:target of attacker|target of attacker] do [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000)', '', '', '', '', '', '', '', '', '', 0), + (2733, 'strategy:hunter aspect dragonhawk', 1, 'aspect dragonhawk [h:object|strategy] [c:co ~aspect dragonhawk|toggle combat][c:nc ~aspect dragonhawk|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the dragonhawk|aspect of the dragonhawk] do [h:action:hunter aspect of the dragonhawk|aspect of the dragonhawk] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the dragonhawk|aspect of the dragonhawk] do [h:action:hunter aspect of the dragonhawk|aspect of the dragonhawk] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2734, 'strategy:hunter cc survival pve', 1, 'cc survival pve [h:object|strategy] [c:co ~cc survival pve|toggle combat][c:nc ~cc survival pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy fifteen yards|enemy fifteen yards] do [h:action:hunter concussive shot|concussive shot] (21.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter scatter shot|scatter shot] (42.000)\r\nOn: [h:trigger:hunter freezing trap|freezing trap] do [h:action:hunter feign death|feign death] (41.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter scare beast|scare beast] do [h:action:hunter scare beast|scare beast] (22.000)', '', '', '', '', '', '', '', '', '', 0), + (2735, 'strategy:hunter aspect monkey', 1, 'aspect monkey [h:object|strategy] [c:co ~aspect monkey|toggle combat][c:nc ~aspect monkey|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the monkey|aspect of the monkey] do [h:action:hunter aspect of the monkey|aspect of the monkey] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the monkey|aspect of the monkey] do [h:action:hunter aspect of the monkey|aspect of the monkey] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2736, 'strategy:hunter cc marksmanship pvp', 1, 'cc marksmanship pvp [h:object|strategy] [c:co ~cc marksmanship pvp|toggle combat][c:nc ~cc marksmanship pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy fifteen yards|enemy fifteen yards] do [h:action:hunter concussive shot|concussive shot] (21.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter feign death|feign death] (43.000)[h:action:hunter scatter shot|scatter shot] (42.000)\r\nOn: [h:trigger:hunter freezing trap|freezing trap] do [h:action:hunter feign death|feign death] (41.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter scare beast|scare beast] do [h:action:hunter scare beast|scare beast] (22.000)', '', '', '', '', '', '', '', '', '', 0), + (2737, 'strategy:hunter aspect wild', 1, 'aspect wild [h:object|strategy] [c:co ~aspect wild|toggle combat][c:nc ~aspect wild|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the wild|aspect of the wild] do [h:action:hunter aspect of the wild|aspect of the wild] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the wild|aspect of the wild] do [h:action:hunter aspect of the wild|aspect of the wild] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2738, 'strategy:hunter aspect pack', 1, 'aspect pack [h:object|strategy] [c:co ~aspect pack|toggle combat][c:nc ~aspect pack|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the pack|aspect of the pack] do [h:action:hunter aspect of the pack|aspect of the pack] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the pack|aspect of the pack] do [h:action:hunter aspect of the pack|aspect of the pack] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2739, 'strategy:hunter aspect survival raid', 1, 'aspect survival raid [h:object|strategy] [c:co ~aspect survival raid|toggle combat][c:nc ~aspect survival raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (25.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter aspect of the hawk|aspect of the hawk] do [h:action:hunter aspect of the hawk|aspect of the hawk] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2740, 'strategy:hunter beast mastery', 1, 'beast mastery [h:object|strategy] [c:co ~beast mastery|toggle combat][c:nc ~beast mastery|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:hunter update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:hunter update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:hunter update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:hunter update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:hunter update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:hunter update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2741, 'strategy:hunter buff beast mastery pvp', 1, 'buff beast mastery pvp [h:object|strategy] [c:co ~buff beast mastery pvp|toggle combat][c:nc ~buff beast mastery pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter deterrence|deterrence] (91.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2742, 'strategy:hunter beast mastery pve', 1, 'beast mastery pve [h:object|strategy] [c:co ~beast mastery pve|toggle combat][c:nc ~beast mastery pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aimed shot|aimed shot] do [h:action:hunter aimed shot|aimed shot] (12.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:hunter hunter\'s mark|hunter\'s mark] do [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000)\r\nOn: [h:trigger:hunter counterattack|counterattack] do [h:action:hunter counterattack|counterattack] (22.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:hunter raptor strike|raptor strike] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:often|often] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (21.000)\r\nOn: [h:trigger:hunter switch to melee|switch to melee] do [h:action:-ranged,+close|-ranged,+close] (30.000)\r\nOn: [h:trigger:hunter switch to ranged|switch to ranged] do [h:action:-close,+ranged|-close,+ranged] (43.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:hunter auto shot|auto shot] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:hunter item count|item count] do [h:action:hunter say::no ammo|say::no ammo] (10.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:dispel enrage|dispel enrage] do [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2743, 'strategy:hunter buff survival pve', 1, 'buff survival pve [h:object|strategy] [c:co ~buff survival pve|toggle combat][c:nc ~buff survival pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter deterrence|deterrence] (91.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2744, 'strategy:hunter beast mastery pvp', 1, 'beast mastery pvp [h:object|strategy] [c:co ~beast mastery pvp|toggle combat][c:nc ~beast mastery pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aimed shot|aimed shot] do [h:action:hunter aimed shot|aimed shot] (12.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:hunter hunter\'s mark|hunter\'s mark] do [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000)\r\nOn: [h:trigger:hunter counterattack|counterattack] do [h:action:hunter counterattack|counterattack] (22.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:hunter raptor strike|raptor strike] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (21.000)\r\nOn: [h:trigger:hunter switch to melee|switch to melee] do [h:action:-ranged,+close|-ranged,+close] (30.000)\r\nOn: [h:trigger:hunter switch to ranged|switch to ranged] do [h:action:-close,+ranged|-close,+ranged] (43.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:hunter auto shot|auto shot] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:hunter item count|item count] do [h:action:hunter say::no ammo|say::no ammo] (10.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:dispel enrage|dispel enrage] do [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2745, 'strategy:hunter beast mastery raid', 1, 'beast mastery raid [h:object|strategy] [c:co ~beast mastery raid|toggle combat][c:nc ~beast mastery raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aimed shot|aimed shot] do [h:action:hunter aimed shot|aimed shot] (12.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:hunter hunter\'s mark|hunter\'s mark] do [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000)\r\nOn: [h:trigger:hunter counterattack|counterattack] do [h:action:hunter counterattack|counterattack] (22.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:hunter raptor strike|raptor strike] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (21.000)\r\nOn: [h:trigger:hunter switch to melee|switch to melee] do [h:action:-ranged,+close|-ranged,+close] (30.000)\r\nOn: [h:trigger:hunter switch to ranged|switch to ranged] do [h:action:-close,+ranged|-close,+ranged] (43.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:hunter auto shot|auto shot] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:hunter item count|item count] do [h:action:hunter say::no ammo|say::no ammo] (10.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:dispel enrage|dispel enrage] do [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2746, 'strategy:hunter cc marksmanship raid', 1, 'cc marksmanship raid [h:object|strategy] [c:co ~cc marksmanship raid|toggle combat][c:nc ~cc marksmanship raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter freezing trap|freezing trap] do [h:action:hunter feign death|feign death] (41.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter scare beast|scare beast] do [h:action:hunter scare beast|scare beast] (22.000)', '', '', '', '', '', '', '', '', '', 0), + (2747, 'strategy:hunter boost survival pvp', 1, 'boost survival pvp [h:object|strategy] [c:co ~boost survival pvp|toggle combat][c:nc ~boost survival pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:hunter rapid fire|rapid fire] do [h:action:hunter rapid fire|rapid fire] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2748, 'strategy:hunter buff marksmanship pvp', 1, 'buff marksmanship pvp [h:object|strategy] [c:co ~buff marksmanship pvp|toggle combat][c:nc ~buff marksmanship pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter deterrence|deterrence] (91.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:hunter trueshot aura|trueshot aura] do [h:action:hunter trueshot aura|trueshot aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2749, 'strategy:hunter cc survival raid', 1, 'cc survival raid [h:object|strategy] [c:co ~cc survival raid|toggle combat][c:nc ~cc survival raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter freezing trap|freezing trap] do [h:action:hunter feign death|feign death] (41.000)\r\nOn: [h:trigger:hunter aoe|aoe] do [h:action:hunter feign death|feign death] (40.000)\r\nOn: [h:trigger:hunter scare beast|scare beast] do [h:action:hunter scare beast|scare beast] (22.000)', '', '', '', '', '', '', '', '', '', 0), + (2750, 'strategy:hunter boost survival pve', 1, 'boost survival pve [h:object|strategy] [c:co ~boost survival pve|toggle combat][c:nc ~boost survival pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:hunter rapid fire|rapid fire] do [h:action:hunter rapid fire|rapid fire] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2751, 'strategy:hunter boost survival raid', 1, 'boost survival raid [h:object|strategy] [c:co ~boost survival raid|toggle combat][c:nc ~boost survival raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:hunter rapid fire|rapid fire] do [h:action:hunter rapid fire|rapid fire] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2752, 'strategy:hunter buff marksmanship raid', 1, 'buff marksmanship raid [h:object|strategy] [c:co ~buff marksmanship raid|toggle combat][c:nc ~buff marksmanship raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter deterrence|deterrence] (91.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:hunter trueshot aura|trueshot aura] do [h:action:hunter trueshot aura|trueshot aura] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2753, 'strategy:druid aoe balance pvp', 1, 'aoe balance pvp [h:object|strategy] [c:co ~aoe balance pvp|toggle combat][c:nc ~aoe balance pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid starfall|starfall] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2754, 'strategy:hunter buff survival raid', 1, 'buff survival raid [h:object|strategy] [c:co ~buff survival raid|toggle combat][c:nc ~buff survival raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:target of attacker close|target of attacker close] do [h:action:hunter deterrence|deterrence] (91.000)\r\nNon combat behavior:\r\nOn: [h:trigger:hunter feign death|feign death] do [h:action:hunter remove feign death|remove feign death] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2755, 'strategy:hunter marksmanship', 1, 'marksmanship [h:object|strategy] [c:co ~marksmanship|toggle combat][c:nc ~marksmanship|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:hunter update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:hunter update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:hunter update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:hunter update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:hunter update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:hunter update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2756, 'strategy:hunter marksmanship pvp', 1, 'marksmanship pvp [h:object|strategy] [c:co ~marksmanship pvp|toggle combat][c:nc ~marksmanship pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter aimed shot|aimed shot] do [h:action:hunter aimed shot|aimed shot] (12.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:hunter hunter\'s mark|hunter\'s mark] do [h:action:hunter hunter\'s mark|hunter\'s mark] (16.000)\r\nOn: [h:trigger:hunter counterattack|counterattack] do [h:action:hunter counterattack|counterattack] (22.000)\r\nOn: [h:trigger:enemy is close|enemy is close] do [h:action:hunter raptor strike|raptor strike] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (21.000)\r\nOn: [h:trigger:hunter switch to melee|switch to melee] do [h:action:-ranged,+close|-ranged,+close] (30.000)\r\nOn: [h:trigger:hunter switch to ranged|switch to ranged] do [h:action:-close,+ranged|-close,+ranged] (43.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:hunter auto shot|auto shot] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:hunter item count|item count] do [h:action:hunter say::no ammo|say::no ammo] (10.000)\r\nOn: [h:trigger:hunter stealthed nearby|stealthed nearby] do [h:action:hunter flare|flare] (13.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check mount state|check mount state] (1.000)[h:action:check values|check values] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:dispel enrage|dispel enrage] do [h:action:hunter tranquilizing shot|tranquilizing shot] (40.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2757, 'strategy:hunter sting', 1, 'sting [h:object|strategy] [c:co ~sting|toggle combat][c:nc ~sting|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2758, 'strategy:hunter sting beast mastery pve', 1, 'sting beast mastery pve [h:object|strategy] [c:co ~sting beast mastery pve|toggle combat][c:nc ~sting beast mastery pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter viper sting|viper sting] (15.000)[h:action:hunter serpent sting|serpent sting] (14.000)\r\nOn: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] do [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000)\r\nOn: [h:trigger:hunter viper sting on attacker|viper sting on attacker] do [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2759, 'strategy:hunter sting marksmanship pve', 1, 'sting marksmanship pve [h:object|strategy] [c:co ~sting marksmanship pve|toggle combat][c:nc ~sting marksmanship pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter viper sting|viper sting] (15.000)[h:action:hunter serpent sting|serpent sting] (14.000)\r\nOn: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] do [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000)\r\nOn: [h:trigger:hunter viper sting on attacker|viper sting on attacker] do [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2760, 'strategy:hunter sting marksmanship pvp', 1, 'sting marksmanship pvp [h:object|strategy] [c:co ~sting marksmanship pvp|toggle combat][c:nc ~sting marksmanship pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter viper sting|viper sting] (15.000)[h:action:hunter serpent sting|serpent sting] (14.000)\r\nOn: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] do [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000)\r\nOn: [h:trigger:hunter viper sting on attacker|viper sting on attacker] do [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2761, 'strategy:hunter sting marksmanship raid', 1, 'sting marksmanship raid [h:object|strategy] [c:co ~sting marksmanship raid|toggle combat][c:nc ~sting marksmanship raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter viper sting|viper sting] (15.000)\r\nOn: [h:trigger:hunter serpent sting on attacker|serpent sting on attacker] do [h:action:hunter serpent sting on attacker|serpent sting on attacker] (22.000)\r\nOn: [h:trigger:hunter viper sting on attacker|viper sting on attacker] do [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2762, 'strategy:hunter sting viper', 1, 'sting viper [h:object|strategy] [c:co ~sting viper|toggle combat][c:nc ~sting viper|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:hunter trigger|trigger] do [h:action:hunter viper sting|viper sting] (20.000)\r\nOn: [h:trigger:hunter viper sting on attacker|viper sting on attacker] do [h:action:hunter viper sting on attacker|viper sting on attacker] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2763, 'strategy:rogue boost combat raid', 1, 'boost combat raid [h:object|strategy] [c:co ~boost combat raid|toggle combat][c:nc ~boost combat raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:rogue adrenaline rush|adrenaline rush] do [h:action:rogue adrenaline rush|adrenaline rush] (25.000)\r\nOn: [h:trigger:rogue blade flurry|blade flurry] do [h:action:rogue blade flurry|blade flurry] (24.000)', '', '', '', '', '', '', '', '', '', 0), + (2764, 'strategy:rogue boost assassination pvp', 1, 'boost assassination pvp [h:object|strategy] [c:co ~boost assassination pvp|toggle combat][c:nc ~boost assassination pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue cold blood|cold blood] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2765, 'strategy:rogue boost assassination raid', 1, 'boost assassination raid [h:object|strategy] [c:co ~boost assassination raid|toggle combat][c:nc ~boost assassination raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:very often|very often] do [h:action:rogue cold blood|cold blood] (25.000)', '', '', '', '', '', '', '', '', '', 0), + (2766, 'strategy:shaman boost restoration pve', 1, 'boost restoration pve [h:object|strategy] [c:co ~boost restoration pve|toggle combat][c:nc ~boost restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2767, 'strategy:shaman boost', 1, 'boost [h:object|strategy] [c:co ~boost|toggle combat][c:nc ~boost|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2768, 'strategy:shaman boost enhancement pvp', 1, 'boost enhancement pvp [h:object|strategy] [c:co ~boost enhancement pvp|toggle combat][c:nc ~boost enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2769, 'strategy:shaman cc restoration raid', 1, 'cc restoration raid [h:object|strategy] [c:co ~cc restoration raid|toggle combat][c:nc ~cc restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2770, 'strategy:shaman boost enhancement pve', 1, 'boost enhancement pve [h:object|strategy] [c:co ~boost enhancement pve|toggle combat][c:nc ~boost enhancement pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2771, 'strategy:shaman cc elemental pve', 1, 'cc elemental pve [h:object|strategy] [c:co ~cc elemental pve|toggle combat][c:nc ~cc elemental pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2772, 'strategy:shaman cc elemental pvp', 1, 'cc elemental pvp [h:object|strategy] [c:co ~cc elemental pvp|toggle combat][c:nc ~cc elemental pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2773, 'strategy:shaman cc enhancement pvp', 1, 'cc enhancement pvp [h:object|strategy] [c:co ~cc enhancement pvp|toggle combat][c:nc ~cc enhancement pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman enemy out of melee range|enemy out of melee range] do [h:action:throw grenade|throw grenade] (40.000)\r\nOn: [h:trigger:shaman frost shock on snare target|frost shock on snare target] do [h:action:shaman frost shock on snare target|frost shock on snare target] (20.000)\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2774, 'strategy:shaman cc restoration pvp', 1, 'cc restoration pvp [h:object|strategy] [c:co ~cc restoration pvp|toggle combat][c:nc ~cc restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:shaman wind shear|wind shear] do [h:action:shaman wind shear|wind shear] (40.000)\r\nOn: [h:trigger:shaman wind shear on enemy healer|wind shear on enemy healer] do [h:action:shaman wind shear on enemy healer|wind shear on enemy healer] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2775, 'strategy:shaman offheal raid', 1, 'offheal raid [h:object|strategy] [c:co ~offheal raid|toggle combat][c:nc ~offheal raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:shaman healing wave on party|healing wave on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2776, 'strategy:druid aoe tank feral raid', 1, 'aoe tank feral raid [h:object|strategy] [c:co ~aoe tank feral raid|toggle combat][c:nc ~aoe tank feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid swipe|swipe] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid challenging roar|challenging roar] (23.000)[h:action:druid demoralizing roar|demoralizing roar] (22.000)[h:action:druid swipe|swipe] (21.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2777, 'strategy:mage boost arcane pvp', 1, 'boost arcane pvp [h:object|strategy] [c:co ~boost arcane pvp|toggle combat][c:nc ~boost arcane pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage arcane power|arcane power] do [h:action:mage arcane power|arcane power] (22.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage presence of mind|presence of mind] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2778, 'strategy:mage boost fire raid', 1, 'boost fire raid [h:object|strategy] [c:co ~boost fire raid|toggle combat][c:nc ~boost fire raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage combustion|combustion] do [h:action:mage combustion|combustion] (21.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2779, 'strategy:mage boost arcane raid', 1, 'boost arcane raid [h:object|strategy] [c:co ~boost arcane raid|toggle combat][c:nc ~boost arcane raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage arcane power|arcane power] do [h:action:mage arcane power|arcane power] (22.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)\r\nOn: [h:trigger:mage presence of mind|presence of mind] do [h:action:mage presence of mind|presence of mind] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2780, 'strategy:mage boost fire pve', 1, 'boost fire pve [h:object|strategy] [c:co ~boost fire pve|toggle combat][c:nc ~boost fire pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage combustion|combustion] do [h:action:mage combustion|combustion] (21.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2781, 'strategy:mage boost frost pve', 1, 'boost frost pve [h:object|strategy] [c:co ~boost frost pve|toggle combat][c:nc ~boost frost pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:mage cold snap|cold snap] do [h:action:mage cold snap|cold snap] (23.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2782, 'strategy:warlock boost demonology raid', 1, 'boost demonology raid [h:object|strategy] [c:co ~boost demonology raid|toggle combat][c:nc ~boost demonology raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2783, 'strategy:warlock boost affliction raid', 1, 'boost affliction raid [h:object|strategy] [c:co ~boost affliction raid|toggle combat][c:nc ~boost affliction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2784, 'strategy:warlock boost affliction pvp', 1, 'boost affliction pvp [h:object|strategy] [c:co ~boost affliction pvp|toggle combat][c:nc ~boost affliction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2785, 'strategy:warlock boost destruction pvp', 1, 'boost destruction pvp [h:object|strategy] [c:co ~boost destruction pvp|toggle combat][c:nc ~boost destruction pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2786, 'strategy:warlock boost destruction raid', 1, 'boost destruction raid [h:object|strategy] [c:co ~boost destruction raid|toggle combat][c:nc ~boost destruction raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:warlock amplify curse|amplify curse] do [h:action:warlock amplify curse|amplify curse] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2787, 'strategy:druid aoe', 1, 'aoe [h:object|strategy] [c:co ~aoe|toggle combat][c:nc ~aoe|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2788, 'strategy:druid aoe balance pve', 1, 'aoe balance pve [h:object|strategy] [c:co ~aoe balance pve|toggle combat][c:nc ~aoe balance pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid starfall|starfall] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2789, 'strategy:druid buff restoration raid', 1, 'buff restoration raid [h:object|strategy] [c:co ~buff restoration raid|toggle combat][c:nc ~buff restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2790, 'strategy:druid boost tank feral pvp', 1, 'boost tank feral pvp [h:object|strategy] [c:co ~boost tank feral pvp|toggle combat][c:nc ~boost tank feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2791, 'strategy:druid aoe dps feral raid', 1, 'aoe dps feral raid [h:object|strategy] [c:co ~aoe dps feral raid|toggle combat][c:nc ~aoe dps feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid swipe (cat)|swipe (cat)] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2792, 'strategy:druid aoe dps feral pve', 1, 'aoe dps feral pve [h:object|strategy] [c:co ~aoe dps feral pve|toggle combat][c:nc ~aoe dps feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:druid swipe (cat)|swipe (cat)] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)', '', '', '', '', '', '', '', '', '', 0), + (2793, 'strategy:druid cure tank feral raid', 1, 'cure tank feral raid [h:object|strategy] [c:co ~cure tank feral raid|toggle combat][c:nc ~cure tank feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2794, 'strategy:druid aoe restoration pvp', 1, 'aoe restoration pvp [h:object|strategy] [c:co ~aoe restoration pvp|toggle combat][c:nc ~aoe restoration pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:goblin sapper|goblin sapper] (21.000)\r\nOn: [h:trigger:druid aoe|aoe] do [h:action:throw grenade|throw grenade] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2795, 'action:generic jump', 1, 'jump [h:object|action] [c:do jump|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|very often] with relevance (39.000) for [h:strategy|chase jump]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|very often] with relevance (39.000) for [h:strategy|chase jump]\r\nReaction behavior:\r\nTriggers from: [h:trigger|very often] with relevance (39.000) for [h:strategy|chase jump]', '', '', '', '', '', '', '', '', '', 0), + (2796, 'strategy:druid boost balance pve', 1, 'boost balance pve [h:object|strategy] [c:co ~boost balance pve|toggle combat][c:nc ~boost balance pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] do [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2797, 'trigger:paladin exorcism', 1, 'exorcism [h:object|trigger] [c:exorcism|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin exorcism|exorcism] (13.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:paladin exorcism|exorcism] (14.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nExecutes: [h:action:paladin exorcism|exorcism] (14.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nExecutes: [h:action:paladin exorcism|exorcism] (13.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin exorcism|exorcism] (13.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nExecutes: [h:action:paladin exorcism|exorcism] (14.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (2798, 'strategy:druid dps feral pve', 1, 'dps feral pve [h:object|strategy] [c:co ~dps feral pve|toggle combat][c:nc ~dps feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:druid ferocious bite|ferocious bite] (13.000)\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid shred|shred] (11.000)\r\nOn: [h:trigger:druid rebirth|rebirth] do [h:action:druid rebirth|rebirth] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] do [h:action:druid faerie fire (feral)|faerie fire (feral)] (15.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid mangle (cat)|mangle (cat)] (10.000)\r\nOn: [h:trigger:druid rake|rake] do [h:action:druid rake|rake] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:druid rip|rip] do [h:action:druid rip|rip] (14.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2799, 'strategy:druid balance', 1, 'balance [h:object|strategy] [c:co ~balance|toggle combat][c:nc ~balance|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:druid update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:druid update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:druid update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:druid update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:druid update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:druid update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2800, 'strategy:druid tank feral pvp', 1, 'tank feral pvp [h:object|strategy] [c:co ~tank feral pvp|toggle combat][c:nc ~tank feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy too close for melee|enemy too close for melee] do [h:action:move out of enemy contact|move out of enemy contact] (10.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)[h:action:druid frenzied regeneration|frenzied regeneration] (60.000)\r\nOn: [h:trigger:druid enemy out of melee range|enemy out of melee range] do [h:action:druid feral charge|feral charge] (31.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000)\r\nOn: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] do [h:action:druid faerie fire (feral)|faerie fire (feral)] (20.000)\r\nOn: [h:trigger:druid blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:druid growl|growl] (30.000)\r\nOn: [h:trigger:druid rage available|rage available] do [h:action:druid mangle (bear)|mangle (bear)] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (20.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:druid rebirth|rebirth] do [h:action:druid rebirth|rebirth] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (20.000)\r\nOn: [h:trigger:druid blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2801, 'strategy:druid dps feral', 1, 'dps feral [h:object|strategy] [c:co ~dps feral|toggle combat][c:nc ~dps feral|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:druid update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:druid update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:druid update raid strats|update raid strats] (100.000)\r\nNon combat behavior:\r\nOn: [h:trigger:in pve|in pve] do [h:action:druid update pve strats|update pve strats] (100.000)\r\nOn: [h:trigger:in pvp|in pvp] do [h:action:druid update pvp strats|update pvp strats] (100.000)\r\nOn: [h:trigger:in raid fight|in raid fight] do [h:action:druid update raid strats|update raid strats] (100.000)', '', '', '', '', '', '', '', '', '', 0), + (2802, 'strategy:druid balance pve', 1, 'balance pve [h:object|strategy] [c:co ~balance pve|toggle combat][c:nc ~balance pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000)\r\nOn: [h:trigger:druid faerie fire|faerie fire] do [h:action:druid faerie fire|faerie fire] (13.000)\r\nOn: [h:trigger:druid insect swarm|insect swarm] do [h:action:druid insect swarm|insect swarm] (12.000)\r\nOn: [h:trigger:druid moonfire|moonfire] do [h:action:druid moonfire|moonfire] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:druid rebirth|rebirth] do [h:action:druid rebirth|rebirth] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:druid starfire|starfire] (10.000)\r\nDefault:[h:action:druid wrath|wrath] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2803, 'strategy:druid balance pvp', 1, 'balance pvp [h:object|strategy] [c:co ~balance pvp|toggle combat][c:nc ~balance pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000)\r\nOn: [h:trigger:druid faerie fire|faerie fire] do [h:action:druid faerie fire|faerie fire] (13.000)\r\nOn: [h:trigger:druid insect swarm|insect swarm] do [h:action:druid insect swarm|insect swarm] (12.000)\r\nOn: [h:trigger:druid moonfire|moonfire] do [h:action:druid moonfire|moonfire] (11.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (20.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:druid rebirth|rebirth] do [h:action:druid rebirth|rebirth] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)[h:action:druid starfire|starfire] (10.000)\r\nDefault:[h:action:druid wrath|wrath] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2804, 'strategy:druid cure balance pve', 1, 'cure balance pve [h:object|strategy] [c:co ~cure balance pve|toggle combat][c:nc ~cure balance pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2805, 'strategy:druid boost balance raid', 1, 'boost balance raid [h:object|strategy] [c:co ~boost balance raid|toggle combat][c:nc ~boost balance raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid nature\'s swiftness|nature\'s swiftness] do [h:action:druid nature\'s swiftness|nature\'s swiftness] (20.000)\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2806, 'strategy:druid boost dps feral raid', 1, 'boost dps feral raid [h:object|strategy] [c:co ~boost dps feral raid|toggle combat][c:nc ~boost dps feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2807, 'strategy:druid cc dps feral raid', 1, 'cc dps feral raid [h:object|strategy] [c:co ~cc dps feral raid|toggle combat][c:nc ~cc dps feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2808, 'strategy:druid boost tank feral pve', 1, 'boost tank feral pve [h:object|strategy] [c:co ~boost tank feral pve|toggle combat][c:nc ~boost tank feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:often|often] do [h:action:use trinket|use trinket] (20.000)', '', '', '', '', '', '', '', '', '', 0), + (2809, 'strategy:druid cc balance raid', 1, 'cc balance raid [h:object|strategy] [c:co ~cc balance raid|toggle combat][c:nc ~cc balance raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:druid nature\'s grasp|nature\'s grasp] (20.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2810, 'strategy:druid buff balance raid', 1, 'buff balance raid [h:object|strategy] [c:co ~buff balance raid|toggle combat][c:nc ~buff balance raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid innervate|innervate] do [h:action:druid innervate|innervate] (20.000)\r\nOn: [h:trigger:druid moonkin form|moonkin form] do [h:action:druid moonkin form|moonkin form] (30.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid gift of the wild on party|gift of the wild on party] do [h:action:druid gift of the wild on party|gift of the wild on party] (13.000)\r\nOn: [h:trigger:druid mark of the wild|mark of the wild] do [h:action:druid mark of the wild|mark of the wild] (11.000)\r\nOn: [h:trigger:druid mark of the wild on party|mark of the wild on party] do [h:action:druid mark of the wild on party|mark of the wild on party] (12.000)\r\nOn: [h:trigger:druid thorns on party|thorns on party] do [h:action:druid thorns on party|thorns on party] (12.000)\r\nOn: [h:trigger:often|often] do [h:action:apply oil|apply oil] (10.000)\r\nOn: [h:trigger:druid thorns|thorns] do [h:action:druid thorns|thorns] (11.000)', '', '', '', '', '', '', '', '', '', 0), + (2811, 'strategy:druid cc balance pvp', 1, 'cc balance pvp [h:object|strategy] [c:co ~cc balance pvp|toggle combat][c:nc ~cc balance pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy five yards|enemy five yards] do [h:action:druid nature\'s grasp|nature\'s grasp] (20.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid entangling roots|entangling roots] do [h:action:druid entangling roots|entangling roots] (40.000)\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2812, 'strategy:druid cure dps feral pvp', 1, 'cure dps feral pvp [h:object|strategy] [c:co ~cure dps feral pvp|toggle combat][c:nc ~cure dps feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2813, 'strategy:druid cc dps feral pve', 1, 'cc dps feral pve [h:object|strategy] [c:co ~cc dps feral pve|toggle combat][c:nc ~cc dps feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2814, 'strategy:druid cc dps feral pvp', 1, 'cc dps feral pvp [h:object|strategy] [c:co ~cc dps feral pvp|toggle combat][c:nc ~cc dps feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2815, 'strategy:druid cc tank feral pve', 1, 'cc tank feral pve [h:object|strategy] [c:co ~cc tank feral pve|toggle combat][c:nc ~cc tank feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid bash|bash] do [h:action:druid bash|bash] (40.000)\r\nOn: [h:trigger:druid bash on enemy healer|bash on enemy healer] do [h:action:druid bash on enemy healer|bash on enemy healer] (40.000)\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2816, 'strategy:druid cc tank feral pvp', 1, 'cc tank feral pvp [h:object|strategy] [c:co ~cc tank feral pvp|toggle combat][c:nc ~cc tank feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid bash|bash] do [h:action:druid bash|bash] (40.000)\r\nOn: [h:trigger:druid bash on enemy healer|bash on enemy healer] do [h:action:druid bash on enemy healer|bash on enemy healer] (40.000)\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2817, 'strategy:druid cc tank feral raid', 1, 'cc tank feral raid [h:object|strategy] [c:co ~cc tank feral raid|toggle combat][c:nc ~cc tank feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid bash|bash] do [h:action:druid bash|bash] (40.000)\r\nOn: [h:trigger:druid bash on enemy healer|bash on enemy healer] do [h:action:druid bash on enemy healer|bash on enemy healer] (40.000)\r\nOn: [h:trigger:druid hibernate|hibernate] do [h:action:druid hibernate|hibernate] (40.000)', '', '', '', '', '', '', '', '', '', 0), + (2818, 'strategy:druid cure dps feral raid', 1, 'cure dps feral raid [h:object|strategy] [c:co ~cure dps feral raid|toggle combat][c:nc ~cure dps feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2819, 'strategy:druid cure tank feral pve', 1, 'cure tank feral pve [h:object|strategy] [c:co ~cure tank feral pve|toggle combat][c:nc ~cure tank feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)\r\nOn: [h:trigger:rooted|rooted] do [h:action:druid caster form|caster form] (50.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison|abolish poison] (50.000)\r\nOn: [h:trigger:druid cure poison|cure poison] do [h:action:druid abolish poison on party|abolish poison on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse on party|remove curse on party] (50.000)\r\nOn: [h:trigger:druid remove curse|remove curse] do [h:action:druid remove curse|remove curse] (50.000)', '', '', '', '', '', '', '', '', '', 0), + (2820, 'strategy:druid dps feral pvp', 1, 'dps feral pvp [h:object|strategy] [c:co ~dps feral pvp|toggle combat][c:nc ~dps feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:druid ferocious bite|ferocious bite] (13.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid shred|shred] (11.000)\r\nOn: [h:trigger:druid rebirth|rebirth] do [h:action:druid rebirth|rebirth] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:druid enemy out of melee range|enemy out of melee range] do [h:action:druid dash|dash] (20.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:druid dash|dash] (20.000)\r\nOn: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] do [h:action:druid faerie fire (feral)|faerie fire (feral)] (15.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid mangle (cat)|mangle (cat)] (10.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (20.000)[h:action:druid dash|dash] (20.000)\r\nOn: [h:trigger:druid rake|rake] do [h:action:druid rake|rake] (12.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nOn: [h:trigger:random|random] do [h:action:free action potion|free action potion] (20.000)\r\nOn: [h:trigger:druid rip|rip] do [h:action:druid rip|rip] (14.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:player has flag|player has flag] do [h:action:druid travel form|travel form] (20.000)[h:action:druid dash|dash] (20.000)\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:druid dash|dash] (20.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2821, 'strategy:druid dps feral raid', 1, 'dps feral raid [h:object|strategy] [c:co ~dps feral raid|toggle combat][c:nc ~dps feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:combo points available|combo points available] do [h:action:druid ferocious bite|ferocious bite] (13.000)\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid shred|shred] (11.000)\r\nOn: [h:trigger:druid rebirth|rebirth] do [h:action:druid rebirth|rebirth] (90.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] do [h:action:druid faerie fire (feral)|faerie fire (feral)] (15.000)\r\nOn: [h:trigger:medium threat|medium threat] do [h:action:druid cower|cower] (20.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid mangle (cat)|mangle (cat)] (10.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2822, 'strategy:druid offheal', 1, 'offheal [h:object|strategy] [c:co ~offheal|toggle combat][c:nc ~offheal|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2823, 'strategy:druid offheal pve', 1, 'offheal pve [h:object|strategy] [c:co ~offheal pve|toggle combat][c:nc ~offheal pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2824, 'strategy:druid offheal pvp', 1, 'offheal pvp [h:object|strategy] [c:co ~offheal pvp|toggle combat][c:nc ~offheal pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2825, 'strategy:druid offheal raid', 1, 'offheal raid [h:object|strategy] [c:co ~offheal raid|toggle combat][c:nc ~offheal raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nNon combat behavior:\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)', '', '', '', '', '', '', '', '', '', 0), + (2826, 'strategy:druid powershift', 1, 'powershift [h:object|strategy] [c:co ~powershift|toggle combat][c:nc ~powershift|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2827, 'strategy:druid restoration pve', 1, 'restoration pve [h:object|strategy] [c:co ~restoration pve|toggle combat][c:nc ~restoration pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:druid rejuvenation|rejuvenation] (61.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:druid tranquility|tranquility] (72.000)\r\nOn: [h:trigger:druid rebirth|rebirth] do [h:action:druid rebirth|rebirth] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:druid regrowth|regrowth] (71.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:druid rejuvenation on party|rejuvenation on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2828, 'strategy:druid restoration raid', 1, 'restoration raid [h:object|strategy] [c:co ~restoration raid|toggle combat][c:nc ~restoration raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:almost full health|almost full health] do [h:action:druid rejuvenation|rejuvenation] (61.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:medium aoe heal|medium aoe heal] do [h:action:druid tranquility|tranquility] (72.000)\r\nOn: [h:trigger:druid rebirth|rebirth] do [h:action:druid rebirth|rebirth] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:medium health|medium health] do [h:action:druid regrowth|regrowth] (71.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:party member almost full health|party member almost full health] do [h:action:druid rejuvenation on party|rejuvenation on party] (60.000)\r\nOn: [h:trigger:party member critical health|party member critical health] do [h:action:druid healing touch on party|healing touch on party] (80.000)[h:action:druid regrowth on party|regrowth on party] (81.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nOn: [h:trigger:party member medium health|party member medium health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nOn: [h:trigger:party member low health|party member low health] do [h:action:druid regrowth on party|regrowth on party] (70.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2829, 'strategy:druid stealth', 1, 'stealth [h:object|strategy] [c:co ~stealth|toggle combat][c:nc ~stealth|toggle noncombat]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2830, 'strategy:druid stealth dps feral raid', 1, 'stealth dps feral raid [h:object|strategy] [c:co ~stealth dps feral raid|toggle combat][c:nc ~stealth dps feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid pounce|pounce] (13.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid check stealth|check stealth] (90.000)\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid ravage|ravage] (12.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid unstealth|unstealth] (10.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid prowl|prowl] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid check stealth|check stealth] (20.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2831, 'strategy:druid stealth dps feral pvp', 1, 'stealth dps feral pvp [h:object|strategy] [c:co ~stealth dps feral pvp|toggle combat][c:nc ~stealth dps feral pvp|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid pounce|pounce] (13.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid check stealth|check stealth] (90.000)\r\nOn: [h:trigger:druid trigger|trigger] do [h:action:druid ravage|ravage] (12.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid unstealth|unstealth] (10.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid prowl|prowl] (90.000)\r\nNon combat behavior:\r\nOn: [h:trigger:enemy flagcarrier near|enemy flagcarrier near] do [h:action:druid dash|dash] (20.000)[h:action:druid unstealth|unstealth] (20.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid check stealth|check stealth] (20.000)\r\nOn: [h:trigger:druid prowl|prowl] do [h:action:druid unstealth|unstealth] (10.000)', '', '', '', '', '', '', '', '', '', 0), + (2832, 'strategy:druid tank feral pve', 1, 'tank feral pve [h:object|strategy] [c:co ~tank feral pve|toggle combat][c:nc ~tank feral pve|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy too close for melee|enemy too close for melee] do [h:action:move out of enemy contact|move out of enemy contact] (10.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)[h:action:druid frenzied regeneration|frenzied regeneration] (60.000)\r\nOn: [h:trigger:druid enemy out of melee range|enemy out of melee range] do [h:action:druid feral charge|feral charge] (31.000)\r\nOn: [h:trigger:critical health|critical health] do [h:action:druid healing touch|healing touch] (80.000)[h:action:druid regrowth|regrowth] (81.000)\r\nOn: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] do [h:action:druid faerie fire (feral)|faerie fire (feral)] (20.000)\r\nOn: [h:trigger:druid blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:druid growl|growl] (30.000)\r\nOn: [h:trigger:druid rage available|rage available] do [h:action:druid mangle (bear)|mangle (bear)] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:druid rebirth|rebirth] do [h:action:druid rebirth|rebirth] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:druid blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:low health|low health] do [h:action:druid regrowth|regrowth] (70.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2833, 'strategy:druid tank feral raid', 1, 'tank feral raid [h:object|strategy] [c:co ~tank feral raid|toggle combat][c:nc ~tank feral raid|toggle noncombat]\r\n\r\nCombat behavior:\r\nOn: [h:trigger:enemy too close for melee|enemy too close for melee] do [h:action:move out of enemy contact|move out of enemy contact] (10.000)\r\nOn: [h:trigger:combat long stuck|combat long stuck] do [h:action:hearthstone|hearthstone] (0.900)[h:action:repop|repop] (0.800)\r\nOn: [h:trigger:combat stuck|combat stuck] do [h:action:reset|reset] (0.700)\r\nOn: [h:trigger:low health|low health] do [h:action:druid frenzied regeneration|frenzied regeneration] (60.000)\r\nOn: [h:trigger:druid enemy out of melee range|enemy out of melee range] do [h:action:druid feral charge|feral charge] (31.000)\r\nOn: [h:trigger:invalid target|invalid target] do [h:action:select new target|select new target] (90.000)\r\nOn: [h:trigger:druid faerie fire (feral)|faerie fire (feral)] do [h:action:druid faerie fire (feral)|faerie fire (feral)] (20.000)\r\nOn: [h:trigger:druid blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:lose aggro|lose aggro] do [h:action:druid growl|growl] (30.000)\r\nOn: [h:trigger:druid rage available|rage available] do [h:action:druid mangle (bear)|mangle (bear)] (11.000)\r\nOn: [h:trigger:mounted|mounted] do [h:action:check mount state|check mount state] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:lightwell|lightwell] (60.000)\r\nDefault:[h:action:melee|melee] (1.000)\r\nNon combat behavior:\r\nOn: [h:trigger:at dark portal azeroth|at dark portal azeroth] do [h:action:dark portal azeroth|dark portal azeroth] (1.000)\r\nOn: [h:trigger:near dark portal|near dark portal] do [h:action:move to dark portal|move to dark portal] (1.000)\r\nOn: [h:trigger:at dark portal outland|at dark portal outland] do [h:action:move from dark portal|move from dark portal] (1.000)\r\nOn: [h:trigger:druid greater blessing of salvation|greater blessing of salvation] do [h:action:removegreater blessing of salvation|removegreater blessing of salvation] (90.000)\r\nOn: [h:trigger:druid blessing of salvation|blessing of salvation] do [h:action:removeblessing of salvation|removeblessing of salvation] (90.000)\r\nOn: [h:trigger:very often|very often] do [h:action:check values|check values] (1.000)[h:action:check mount state|check mount state] (1.000)\r\nReaction behavior:\r\nOn: [h:trigger:combat end|combat end] do [h:action:set non combat state|set non combat state] (110.000)\r\nOn: [h:trigger:combat start|combat start] do [h:action:set combat state|set combat state] (110.000)\r\nOn: [h:trigger:death|death] do [h:action:set dead state|set dead state] (110.000)\r\nOn: [h:trigger:resurrect|resurrect] do [h:action:set non combat state|set non combat state] (110.000)', '', '', '', '', '', '', '', '', '', 0), + (2834, 'trigger:end prince malchezaar fight', 1, 'end prince malchezaar fight [h:object|trigger] [c:end prince malchezaar fight|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|disable prince malchezaar fight strategy] (100.000) for [h:strategy|prince malchezaar]\r\nDead state behavior:\r\nExecutes: [h:action|disable prince malchezaar fight strategy] (100.000) for [h:strategy|prince malchezaar]', '', '', '', '', '', '', '', '', '', 0), + (2835, 'trigger:confirm quest', 1, 'confirm quest [h:object|trigger] [c:confirm quest|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|confirm quest] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|confirm quest] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|confirm quest] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2836, 'trigger:quest update add kill', 1, 'quest update add kill [h:object|trigger] [c:quest update add kill|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|quest update add kill] (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nExecutes: [h:action|quest update add kill] (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nExecutes: [h:action|quest update add kill] (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2837, 'trigger:bg ended', 1, 'bg ended [h:object|trigger] [c:bg ended|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|action] (20.000) for [h:strategy|battleground]', '', '', '', '', '', '', '', '', '', 0), + (2838, 'trigger:load ai', 1, 'load ai [h:object|trigger] [c:load ai|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|load ai] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|load ai] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|load ai] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|load ai] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2839, 'trigger:list ai', 1, 'list ai [h:object|trigger] [c:list ai|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|list ai] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|list ai] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|list ai] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|list ai] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2840, 'trigger:move style', 1, 'move style [h:object|trigger] [c:move style|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|move style] (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nExecutes: [h:action|move style] (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nExecutes: [h:action|move style] (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nExecutes: [h:action|move style] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2841, 'trigger:attack rti', 1, 'attack rti [h:object|trigger] [c:attack rti|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|attack rti target] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2842, 'trigger:boost target', 1, 'boost target [h:object|trigger] [c:boost target|trigger now]\r\n\r\nReaction behavior:\r\nExecutes: [h:action|boost targets] (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2843, 'trigger:heal target full health', 1, 'heal target full health [h:object|trigger] [c:heal target full health|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|interrupt current spell] (90.000) for [h:strategy|heal interrupt]\r\nReaction behavior:\r\nExecutes: [h:action|interrupt current spell] (90.000) for [h:strategy|heal interrupt]', '', '', '', '', '', '', '', '', '', 0), + (2844, 'trigger:void zone too close', 1, 'void zone too close [h:object|trigger] [c:void zone too close|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|move away from void zone] (100.000) for [h:strategy|four horseman]\r\nExecutes: [h:action|move away from void zone] (100.000) for [h:strategy|netherspite]', '', '', '', '', '', '', '', '', '', 0), + (2845, 'trigger:start prince malchezaar fight', 1, 'start prince malchezaar fight [h:object|trigger] [c:start prince malchezaar fight|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|enable prince malchezaar fight strategy] (100.000) for [h:strategy|karazhan]', '', '', '', '', '', '', '', '', '', 0), + (2846, 'trigger:random jump', 1, 'random jump [h:object|trigger] [c:random jump|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action|jump] (100.000) for [h:strategy|rpg jump]\r\nNon combat behavior:\r\nExecutes: [h:action|jump] (100.000) for [h:strategy|rpg jump]\r\nReaction behavior:\r\nExecutes: [h:action|jump] (100.000) for [h:strategy|rpg jump]', '', '', '', '', '', '', '', '', '', 0), + (2847, 'trigger:rpg enchant', 1, 'rpg enchant [h:object|trigger] [c:rpg enchant|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|rpg enchant] (1.029) for [h:strategy|rpg player]', '', '', '', '', '', '', '', '', '', 0), + (2848, 'trigger:rtsc jump active', 1, 'rtsc jump active [h:object|trigger] [c:rtsc jump active|trigger now]\r\n\r\nNon combat behavior:\r\nExecutes: [h:action|jump] (30.000) for [h:strategy|rtsc jump]', '', '', '', '', '', '', '', '', '', 0), + (2849, 'trigger:priest aoe', 1, 'aoe [h:object|trigger] [c:aoe|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:priest aoe discipline pve|aoe discipline pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:priest aoe discipline raid|aoe discipline raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:priest aoe shadow pve|aoe shadow pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:priest aoe discipline pvp|aoe discipline pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:priest aoe holy raid|aoe holy raid]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:priest aoe holy pve|aoe holy pve]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:priest aoe holy pvp|aoe holy pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:priest aoe shadow pvp|aoe shadow pvp]\r\nExecutes: [h:action:goblin sapper|goblin sapper] (21.000) for [h:strategy:priest aoe shadow raid|aoe shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (2850, 'trigger:target of attacker', 1, 'target of attacker [h:object|trigger] [c:target of attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000) for [h:strategy:hunter aspect survival pvp|aspect survival pvp]\r\nExecutes: [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000) for [h:strategy:hunter aspect marksmanship pvp|aspect marksmanship pvp]\r\nExecutes: [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000) for [h:strategy:hunter aspect beast mastery pvp|aspect beast mastery pvp]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000) for [h:strategy:hunter aspect survival pvp|aspect survival pvp]\r\nExecutes: [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000) for [h:strategy:hunter aspect marksmanship pvp|aspect marksmanship pvp]\r\nExecutes: [h:action:hunter remove aspect of the cheetah|remove aspect of the cheetah] (27.000) for [h:strategy:hunter aspect beast mastery pvp|aspect beast mastery pvp]', '', '', '', '', '', '', '', '', '', 0), + (2851, 'trigger:priest mind blast', 1, 'mind blast [h:object|trigger] [c:mind blast|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:priest mind blast|mind blast] (20.000) for [h:strategy:priest shadow pve|shadow pve]\r\nExecutes: [h:action:priest mind blast|mind blast] (20.000) for [h:strategy:priest shadow pvp|shadow pvp]\r\nExecutes: [h:action:priest mind blast|mind blast] (20.000) for [h:strategy:priest shadow raid|shadow raid]', '', '', '', '', '', '', '', '', '', 0), + (2852, 'trigger:warrior heroic strike', 1, 'heroic strike [h:object|trigger] [c:heroic strike|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior heroic strike|heroic strike] (11.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior heroic strike|heroic strike] (11.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior heroic strike|heroic strike] (11.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), + (2853, 'trigger:warrior whirlwind', 1, 'whirlwind [h:object|trigger] [c:whirlwind|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior whirlwind|whirlwind] (13.000) for [h:strategy:warrior arms pve|arms pve]\r\nExecutes: [h:action:warrior whirlwind|whirlwind] (13.000) for [h:strategy:warrior arms pvp|arms pvp]\r\nExecutes: [h:action:warrior whirlwind|whirlwind] (13.000) for [h:strategy:warrior arms raid|arms raid]\r\nExecutes: [h:action:warrior whirlwind|whirlwind] (12.000) for [h:strategy:warrior fury pve|fury pve]\r\nExecutes: [h:action:warrior whirlwind|whirlwind] (12.000) for [h:strategy:warrior fury pvp|fury pvp]\r\nExecutes: [h:action:warrior whirlwind|whirlwind] (12.000) for [h:strategy:warrior fury raid|fury raid]', '', '', '', '', '', '', '', '', '', 0), + (2854, 'trigger:warrior recklessness', 1, 'recklessness [h:object|trigger] [c:recklessness|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior recklessness|recklessness] (20.000) for [h:strategy:warrior boost fury pve|boost fury pve]\r\nExecutes: [h:action:warrior recklessness|recklessness] (20.000) for [h:strategy:warrior boost fury pvp|boost fury pvp]\r\nExecutes: [h:action:warrior recklessness|recklessness] (20.000) for [h:strategy:warrior boost fury raid|boost fury raid]', '', '', '', '', '', '', '', '', '', 0), + (2855, 'trigger:warrior demoralizing shout', 1, 'demoralizing shout [h:object|trigger] [c:demoralizing shout|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warrior demoralizing shout|demoralizing shout] (24.000) for [h:strategy:warrior protection pvp|protection pvp]\r\nExecutes: [h:action:warrior demoralizing shout|demoralizing shout] (24.000) for [h:strategy:warrior protection raid|protection raid]\r\nExecutes: [h:action:warrior demoralizing shout|demoralizing shout] (24.000) for [h:strategy:warrior protection pve|protection pve]', '', '', '', '', '', '', '', '', '', 0), + (2856, 'trigger:paladin seal', 1, 'seal [h:object|trigger] [c:seal|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin seal of vengeance|seal of vengeance] (12.000) for [h:strategy:paladin protection raid|protection raid]\r\nExecutes: [h:action:paladin seal of command|seal of command] (13.000) for [h:strategy:paladin retribution raid|retribution raid]\r\nExecutes: [h:action:paladin seal of command|seal of command] (13.000) for [h:strategy:paladin retribution pve|retribution pve]\r\nExecutes: [h:action:paladin seal of light|seal of light] (12.000) for [h:strategy:paladin holy pve|holy pve]\r\nExecutes: [h:action:paladin seal of light|seal of light] (12.000) for [h:strategy:paladin holy pvp|holy pvp]\r\nExecutes: [h:action:paladin seal of light|seal of light] (12.000) for [h:strategy:paladin holy raid|holy raid]\r\nExecutes: [h:action:paladin seal of vengeance|seal of vengeance] (12.000) for [h:strategy:paladin protection pve|protection pve]\r\nExecutes: [h:action:paladin seal of vengeance|seal of vengeance] (12.000) for [h:strategy:paladin protection pvp|protection pvp]\r\nExecutes: [h:action:paladin seal of command|seal of command] (13.000) for [h:strategy:paladin retribution pvp|retribution pvp]', '', '', '', '', '', '', '', '', '', 0), + (2857, 'trigger:paladin consecration', 1, 'consecration [h:object|trigger] [c:consecration|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:paladin consecration|consecration] (20.000) for [h:strategy:paladin aoe protection raid|aoe protection raid]\r\nExecutes: [h:action:paladin consecration|consecration] (20.000) for [h:strategy:paladin aoe retribution pve|aoe retribution pve]\r\nExecutes: [h:action:paladin consecration|consecration] (20.000) for [h:strategy:paladin aoe protection pve|aoe protection pve]\r\nExecutes: [h:action:paladin consecration|consecration] (20.000) for [h:strategy:paladin aoe protection pvp|aoe protection pvp]\r\nExecutes: [h:action:paladin consecration|consecration] (20.000) for [h:strategy:paladin aoe retribution pvp|aoe retribution pvp]\r\nExecutes: [h:action:paladin consecration|consecration] (20.000) for [h:strategy:paladin aoe retribution raid|aoe retribution raid]', '', '', '', '', '', '', '', '', '', 0), + (2858, 'trigger:target of attacker close', 1, 'target of attacker close [h:object|trigger] [c:target of attacker close|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman fire nova|fire nova] (20.000) for [h:strategy:shaman elemental pvp|elemental pvp]', '', '', '', '', '', '', '', '', '', 0), + (2859, 'trigger:hunter aspect of the beast', 1, 'aspect of the beast [h:object|trigger] [c:aspect of the beast|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:hunter aspect of the beast|aspect of the beast] (20.000) for [h:strategy:hunter aspect beast|aspect beast]\r\nNon combat behavior:\r\nExecutes: [h:action:hunter aspect of the beast|aspect of the beast] (20.000) for [h:strategy:hunter aspect beast|aspect beast]', '', '', '', '', '', '', '', '', '', 0), + (2860, 'trigger:shaman enemy out of melee range', 1, 'enemy out of melee range [h:object|trigger] [c:enemy out of melee range|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:throw grenade|throw grenade] (40.000) for [h:strategy:shaman cc enhancement pvp|cc enhancement pvp]', '', '', '', '', '', '', '', '', '', 0), + (2861, 'trigger:shaman stormstrike', 1, 'stormstrike [h:object|trigger] [c:stormstrike|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:shaman stormstrike|stormstrike] (11.000) for [h:strategy:shaman enhancement raid|enhancement raid]\r\nExecutes: [h:action:shaman stormstrike|stormstrike] (11.000) for [h:strategy:shaman enhancement pve|enhancement pve]\r\nExecutes: [h:action:shaman stormstrike|stormstrike] (11.000) for [h:strategy:shaman enhancement pvp|enhancement pvp]', '', '', '', '', '', '', '', '', '', 0), + (2862, 'trigger:warlock curse of tongues on attacker', 1, 'curse of tongues on attacker [h:object|trigger] [c:curse of tongues on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of tongues on attacker|curse of tongues on attacker] (21.000) for [h:strategy:warlock curse tongues|curse tongues]', '', '', '', '', '', '', '', '', '', 0), + (2863, 'trigger:warlock curse of recklessness on attacker', 1, 'curse of recklessness on attacker [h:object|trigger] [c:curse of recklessness on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of recklessness on attacker|curse of recklessness on attacker] (21.000) for [h:strategy:warlock curse recklessness|curse recklessness]', '', '', '', '', '', '', '', '', '', 0), + (2864, 'trigger:warlock curse of the elements on attacker', 1, 'curse of the elements on attacker [h:object|trigger] [c:curse of the elements on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of the elements on attacker|curse of the elements on attacker] (21.000) for [h:strategy:warlock curse elements|curse elements]', '', '', '', '', '', '', '', '', '', 0), + (2865, 'trigger:warlock curse of weakness on attacker', 1, 'curse of weakness on attacker [h:object|trigger] [c:curse of weakness on attacker|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:warlock curse of weakness on attacker|curse of weakness on attacker] (21.000) for [h:strategy:warlock curse weakness|curse weakness]', '', '', '', '', '', '', '', '', '', 0), + (2866, 'trigger:druid innervate', 1, 'innervate [h:object|trigger] [c:innervate|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff restoration raid|buff restoration raid]\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff dps feral pve|buff dps feral pve]\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff restoration pve|buff restoration pve]\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff restoration pvp|buff restoration pvp]\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff balance raid|buff balance raid]\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff dps feral raid|buff dps feral raid]\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff dps feral pvp|buff dps feral pvp]\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nExecutes: [h:action:druid innervate|innervate] (20.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (2867, 'trigger:druid moonkin form', 1, 'moonkin form [h:object|trigger] [c:moonkin form|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid moonkin form|moonkin form] (30.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nExecutes: [h:action:druid moonkin form|moonkin form] (30.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nExecutes: [h:action:druid moonkin form|moonkin form] (30.000) for [h:strategy:druid buff balance raid|buff balance raid]', '', '', '', '', '', '', '', '', '', 0), + (2868, 'trigger:druid rebirth', 1, 'rebirth [h:object|trigger] [c:rebirth|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid rebirth|rebirth] (90.000) for [h:strategy:druid balance pve|balance pve]\r\nExecutes: [h:action:druid rebirth|rebirth] (90.000) for [h:strategy:druid balance pvp|balance pvp]\r\nExecutes: [h:action:druid rebirth|rebirth] (90.000) for [h:strategy:druid balance raid|balance raid]\r\nExecutes: [h:action:druid rebirth|rebirth] (90.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:druid rebirth|rebirth] (90.000) for [h:strategy:druid dps feral pvp|dps feral pvp]\r\nExecutes: [h:action:druid rebirth|rebirth] (90.000) for [h:strategy:druid dps feral raid|dps feral raid]\r\nExecutes: [h:action:druid rebirth|rebirth] (90.000) for [h:strategy:druid restoration pve|restoration pve]\r\nExecutes: [h:action:druid rebirth|rebirth] (90.000) for [h:strategy:druid restoration pvp|restoration pvp]\r\nExecutes: [h:action:druid rebirth|rebirth] (90.000) for [h:strategy:druid restoration raid|restoration raid]\r\nExecutes: [h:action:druid rebirth|rebirth] (90.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:druid rebirth|rebirth] (90.000) for [h:strategy:druid tank feral pvp|tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (2869, 'trigger:druid rip', 1, 'rip [h:object|trigger] [c:rip|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid rip|rip] (14.000) for [h:strategy:druid dps feral pve|dps feral pve]\r\nExecutes: [h:action:druid rip|rip] (14.000) for [h:strategy:druid dps feral pvp|dps feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (2870, 'trigger:druid rage available', 1, 'rage available [h:object|trigger] [c:rage available|trigger now]\r\n\r\nCombat behavior:\r\nExecutes: [h:action:druid mangle (bear)|mangle (bear)] (11.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nExecutes: [h:action:druid mangle (bear)|mangle (bear)] (11.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nExecutes: [h:action:druid mangle (bear)|mangle (bear)] (11.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2871, 'action:disable prince malchezaar fight strategy', 1, 'disable prince malchezaar fight strategy [h:object|action] [c:do disable prince malchezaar fight strategy|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|end prince malchezaar fight] with relevance (100.000) for [h:strategy|prince malchezaar]\r\nDead state behavior:\r\nTriggers from: [h:trigger|end prince malchezaar fight] with relevance (100.000) for [h:strategy|prince malchezaar]', '', '', '', '', '', '', '', '', '', 0), + (2872, 'action:quest update failed', 1, 'quest update failed [h:object|action] [c:do quest update failed|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|quest update failed] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|quest update failed] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|quest update failed] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2873, 'action:quest details', 1, 'quest details [h:object|action] [c:do quest details|execute]\r\nThis action will make a bot click accept in the quest details page.\r\nCombat behavior:\r\nTriggers from: [h:trigger|quest details] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|quest details] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|quest details] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2874, 'action:quest update add item', 1, 'quest update add item [h:object|action] [c:do quest update add item|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|quest update add item] with relevance (100.000) for [h:strategy|default]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|quest update add item] with relevance (100.000) for [h:strategy|default]\r\nDead state behavior:\r\nTriggers from: [h:trigger|quest update add item] with relevance (100.000) for [h:strategy|default]', '', '', '', '', '', '', '', '', '', 0), + (2875, 'action:move style', 1, 'move style [h:object|action] [c:do move style|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|move style] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|move style] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|move style] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|move style] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2876, 'action:quest reward', 1, 'quest reward [h:object|action] [c:do quest reward|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|quest reward] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|quest reward] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|quest reward] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|quest reward] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2877, 'action:save ai', 1, 'save ai [h:object|action] [c:do save ai|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|save ai] with relevance (100.000) for [h:strategy|chat]\r\nNon combat behavior:\r\nTriggers from: [h:trigger|save ai] with relevance (100.000) for [h:strategy|chat]\r\nDead state behavior:\r\nTriggers from: [h:trigger|save ai] with relevance (100.000) for [h:strategy|chat]\r\nReaction behavior:\r\nTriggers from: [h:trigger|save ai] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2878, 'action:attack rti target', 1, 'attack rti target [h:object|action] [c:do attack rti target|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|attack rti] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2879, 'action:boost targets', 1, 'boost targets [h:object|action] [c:do boost targets|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|boost target] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2880, 'value:durability inventory', 1, 'durability inventory [h:object|value] [c:cdebug values durability inventory|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2881, 'action:focus heal targets', 1, 'focus heal targets [h:object|action] [c:do focus heal targets|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|focus heal] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2882, 'action:pet', 1, 'pet [h:object|action] [c:do pet|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|pet] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2883, 'action:follow target', 1, 'follow target [h:object|action] [c:do follow target|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|follow target] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2884, 'action:revive targets', 1, 'revive targets [h:object|action] [c:do revive targets|execute]\r\n\r\nReaction behavior:\r\nTriggers from: [h:trigger|revive target] with relevance (100.000) for [h:strategy|chat]', '', '', '', '', '', '', '', '', '', 0), + (2885, 'action:disable karazhan strategy', 1, 'disable karazhan strategy [h:object|action] [c:do disable karazhan strategy|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|leave karazhan] with relevance (100.000) for [h:strategy|dungeon]', '', '', '', '', '', '', '', '', '', 0), + (2886, 'action:enable four horseman fight strategy', 1, 'enable four horseman fight strategy [h:object|action] [c:do enable four horseman fight strategy|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|start four horseman fight] with relevance (100.000) for [h:strategy|naxxramas]', '', '', '', '', '', '', '', '', '', 0), + (2887, 'action:interrupt current spell', 1, 'interrupt current spell [h:object|action] [c:do interrupt current spell|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|heal target full health] with relevance (90.000) for [h:strategy|heal interrupt]\r\nReaction behavior:\r\nTriggers from: [h:trigger|heal target full health] with relevance (90.000) for [h:strategy|heal interrupt]', '', '', '', '', '', '', '', '', '', 0), + (2888, 'action:move away from void zone', 1, 'move away from void zone [h:object|action] [c:do move away from void zone|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|void zone too close] with relevance (100.000) for [h:strategy|four horseman]\r\nTriggers from: [h:trigger|void zone too close] with relevance (100.000) for [h:strategy|netherspite]', '', '', '', '', '', '', '', '', '', 0), + (2889, 'action:enable prince malchezaar fight strategy', 1, 'enable prince malchezaar fight strategy [h:object|action] [c:do enable prince malchezaar fight strategy|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|start prince malchezaar fight] with relevance (100.000) for [h:strategy|karazhan]', '', '', '', '', '', '', '', '', '', 0), + (2890, 'action:remove nether portal buffs from netherspite', 1, 'remove nether portal buffs from netherspite [h:object|action] [c:do remove nether portal buffs from netherspite|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger|netherspite beams cheat need refresh] with relevance (101.000) for [h:strategy|netherspite]', '', '', '', '', '', '', '', '', '', 0), + (2891, 'action:disable netherspite fight strategy', 1, 'disable netherspite fight strategy [h:object|action] [c:do disable netherspite fight strategy|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger|end netherspite fight] with relevance (100.000) for [h:strategy|netherspite]\r\nDead state behavior:\r\nTriggers from: [h:trigger|end netherspite fight] with relevance (100.000) for [h:strategy|netherspite]', '', '', '', '', '', '', '', '', '', 0), + (2892, 'action:priest prayer of healing', 1, 'prayer of healing [h:object|action] [c:do prayer of healing|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:priest aoe discipline pve|aoe discipline pve]\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:priest aoe discipline raid|aoe discipline raid]\r\nTriggers from: [h:trigger:medium aoe heal|medium aoe heal] with relevance (70.000) for [h:strategy:priest aoe discipline pvp|aoe discipline pvp]', '', '', '', '', '', '', '', '', '', 0), + (2893, 'action:priest update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:priest discipline|discipline]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:priest shadow|shadow]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:priest discipline|discipline]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (2894, 'action:priest update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:priest discipline|discipline]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:priest shadow|shadow]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:priest discipline|discipline]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:priest shadow|shadow]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:priest holy|holy]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:priest shadow|shadow]', '', '', '', '', '', '', '', '', '', 0), + (2895, 'action:priest holy nova', 1, 'holy nova [h:object|action] [c:do holy nova|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:priest aoe|aoe] with relevance (20.000) for [h:strategy:priest offdps pve|offdps pve]\r\nTriggers from: [h:trigger:priest aoe|aoe] with relevance (20.000) for [h:strategy:priest offdps pvp|offdps pvp]\r\nTriggers from: [h:trigger:priest aoe|aoe] with relevance (20.000) for [h:strategy:priest offdps raid|offdps raid]', '', '', '', '', '', '', '', '', '', 0), + (2896, 'action:hunter scare beast', 1, 'scare beast [h:object|action] [c:do scare beast|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter scare beast|scare beast] with relevance (22.000) for [h:strategy:hunter cc beast mastery pvp|cc beast mastery pvp]\r\nTriggers from: [h:trigger:hunter scare beast|scare beast] with relevance (22.000) for [h:strategy:hunter cc marksmanship pvp|cc marksmanship pvp]\r\nTriggers from: [h:trigger:hunter scare beast|scare beast] with relevance (22.000) for [h:strategy:hunter cc marksmanship raid|cc marksmanship raid]\r\nTriggers from: [h:trigger:hunter scare beast|scare beast] with relevance (22.000) for [h:strategy:hunter cc marksmanship pve|cc marksmanship pve]\r\nTriggers from: [h:trigger:hunter scare beast|scare beast] with relevance (22.000) for [h:strategy:hunter cc beast mastery pve|cc beast mastery pve]\r\nTriggers from: [h:trigger:hunter scare beast|scare beast] with relevance (22.000) for [h:strategy:hunter cc beast mastery raid|cc beast mastery raid]\r\nTriggers from: [h:trigger:hunter scare beast|scare beast] with relevance (22.000) for [h:strategy:hunter cc survival pve|cc survival pve]\r\nTriggers from: [h:trigger:hunter scare beast|scare beast] with relevance (22.000) for [h:strategy:hunter cc survival pvp|cc survival pvp]\r\nTriggers from: [h:trigger:hunter scare beast|scare beast] with relevance (22.000) for [h:strategy:hunter cc survival raid|cc survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2897, 'action:hunter scatter shot', 1, 'scatter shot [h:object|action] [c:do scatter shot|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (42.000) for [h:strategy:hunter cc beast mastery pvp|cc beast mastery pvp]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (42.000) for [h:strategy:hunter cc marksmanship pvp|cc marksmanship pvp]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (42.000) for [h:strategy:hunter cc marksmanship pve|cc marksmanship pve]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (42.000) for [h:strategy:hunter cc beast mastery pve|cc beast mastery pve]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (42.000) for [h:strategy:hunter cc survival pve|cc survival pve]\r\nTriggers from: [h:trigger:target of attacker close|target of attacker close] with relevance (42.000) for [h:strategy:hunter cc survival pvp|cc survival pvp]', '', '', '', '', '', '', '', '', '', 0), + (2898, 'action:-close,+ranged', 1, '-close,+ranged [h:object|action] [c:do -close,+ranged|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter switch to ranged|switch to ranged] with relevance (43.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nTriggers from: [h:trigger:hunter switch to ranged|switch to ranged] with relevance (43.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nTriggers from: [h:trigger:hunter switch to ranged|switch to ranged] with relevance (43.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nTriggers from: [h:trigger:hunter switch to ranged|switch to ranged] with relevance (43.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nTriggers from: [h:trigger:hunter switch to ranged|switch to ranged] with relevance (43.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nTriggers from: [h:trigger:hunter switch to ranged|switch to ranged] with relevance (43.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nTriggers from: [h:trigger:hunter switch to ranged|switch to ranged] with relevance (43.000) for [h:strategy:hunter survival pve|survival pve]\r\nTriggers from: [h:trigger:hunter switch to ranged|switch to ranged] with relevance (43.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nTriggers from: [h:trigger:hunter switch to ranged|switch to ranged] with relevance (43.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2899, 'action:hunter say::no ammo', 1, 'say::no ammo [h:object|action] [c:do say::no ammo|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:hunter item count|item count] with relevance (10.000) for [h:strategy:hunter marksmanship pve|marksmanship pve]\r\nTriggers from: [h:trigger:hunter item count|item count] with relevance (10.000) for [h:strategy:hunter beast mastery pve|beast mastery pve]\r\nTriggers from: [h:trigger:hunter item count|item count] with relevance (10.000) for [h:strategy:hunter beast mastery pvp|beast mastery pvp]\r\nTriggers from: [h:trigger:hunter item count|item count] with relevance (10.000) for [h:strategy:hunter beast mastery raid|beast mastery raid]\r\nTriggers from: [h:trigger:hunter item count|item count] with relevance (10.000) for [h:strategy:hunter marksmanship pvp|marksmanship pvp]\r\nTriggers from: [h:trigger:hunter item count|item count] with relevance (10.000) for [h:strategy:hunter marksmanship raid|marksmanship raid]\r\nTriggers from: [h:trigger:hunter item count|item count] with relevance (10.000) for [h:strategy:hunter survival pve|survival pve]\r\nTriggers from: [h:trigger:hunter item count|item count] with relevance (10.000) for [h:strategy:hunter survival pvp|survival pvp]\r\nTriggers from: [h:trigger:hunter item count|item count] with relevance (10.000) for [h:strategy:hunter survival raid|survival raid]', '', '', '', '', '', '', '', '', '', 0), + (2900, 'action:hunter update pve strats', 1, 'update pve strats [h:object|action] [c:do update pve strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:hunter beast mastery|beast mastery]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:hunter marksmanship|marksmanship]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:hunter survival|survival]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:hunter beast mastery|beast mastery]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:hunter marksmanship|marksmanship]\r\nTriggers from: [h:trigger:in pve|in pve] with relevance (100.000) for [h:strategy:hunter survival|survival]', '', '', '', '', '', '', '', '', '', 0), + (2901, 'action:hunter update pvp strats', 1, 'update pvp strats [h:object|action] [c:do update pvp strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:hunter beast mastery|beast mastery]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:hunter marksmanship|marksmanship]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:hunter survival|survival]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:hunter beast mastery|beast mastery]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:hunter marksmanship|marksmanship]\r\nTriggers from: [h:trigger:in pvp|in pvp] with relevance (100.000) for [h:strategy:hunter survival|survival]', '', '', '', '', '', '', '', '', '', 0), + (2902, 'action:hunter scorpid sting', 1, 'scorpid sting [h:object|action] [c:do scorpid sting|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:hunter trigger|trigger] with relevance (20.000) for [h:strategy:hunter sting scorpid|sting scorpid]', '', '', '', '', '', '', '', '', '', 0), + (2903, 'action:warlock sacrifice', 1, 'sacrifice [h:object|action] [c:do sacrifice|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warlock affliction pve|affliction pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warlock affliction raid|affliction raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warlock affliction pvp|affliction pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warlock destruction pve|destruction pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warlock demonology pvp|demonology pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warlock demonology pve|demonology pve]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warlock demonology raid|demonology raid]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warlock destruction pvp|destruction pvp]\r\nTriggers from: [h:trigger:critical health|critical health] with relevance (90.000) for [h:strategy:warlock destruction raid|destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (2904, 'action:warlock item target', 1, 'item target [h:object|action] [c:do item target|execute]\r\n\r\nNon combat behavior:\r\nTriggers from: [h:trigger:warlock item target|item target] with relevance (11.000) for [h:strategy:warlock buff affliction pvp|buff affliction pvp]\r\nTriggers from: [h:trigger:warlock item target|item target] with relevance (11.000) for [h:strategy:warlock buff demonology pve|buff demonology pve]\r\nTriggers from: [h:trigger:warlock item target|item target] with relevance (11.000) for [h:strategy:warlock buff affliction pve|buff affliction pve]\r\nTriggers from: [h:trigger:warlock item target|item target] with relevance (11.000) for [h:strategy:warlock buff affliction raid|buff affliction raid]\r\nTriggers from: [h:trigger:warlock item target|item target] with relevance (11.000) for [h:strategy:warlock buff demonology pvp|buff demonology pvp]\r\nTriggers from: [h:trigger:warlock item target|item target] with relevance (11.000) for [h:strategy:warlock buff demonology raid|buff demonology raid]\r\nTriggers from: [h:trigger:warlock item target|item target] with relevance (11.000) for [h:strategy:warlock buff destruction pve|buff destruction pve]\r\nTriggers from: [h:trigger:warlock item target|item target] with relevance (11.000) for [h:strategy:warlock buff destruction pvp|buff destruction pvp]\r\nTriggers from: [h:trigger:warlock item target|item target] with relevance (11.000) for [h:strategy:warlock buff destruction raid|buff destruction raid]', '', '', '', '', '', '', '', '', '', 0), + (2905, 'action:warlock curse of recklessness on attacker', 1, 'curse of recklessness on attacker [h:object|action] [c:do curse of recklessness on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of recklessness on attacker|curse of recklessness on attacker] with relevance (21.000) for [h:strategy:warlock curse recklessness|curse recklessness]', '', '', '', '', '', '', '', '', '', 0), + (2906, 'action:warlock curse of doom on attacker', 1, 'curse of doom on attacker [h:object|action] [c:do curse of doom on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of doom on attacker|curse of doom on attacker] with relevance (21.000) for [h:strategy:warlock curse doom|curse doom]', '', '', '', '', '', '', '', '', '', 0), + (2907, 'action:warlock curse of the elements on attacker', 1, 'curse of the elements on attacker [h:object|action] [c:do curse of the elements on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of the elements on attacker|curse of the elements on attacker] with relevance (21.000) for [h:strategy:warlock curse elements|curse elements]', '', '', '', '', '', '', '', '', '', 0), + (2908, 'action:warlock curse of weakness on attacker', 1, 'curse of weakness on attacker [h:object|action] [c:do curse of weakness on attacker|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:warlock curse of weakness on attacker|curse of weakness on attacker] with relevance (21.000) for [h:strategy:warlock curse weakness|curse weakness]', '', '', '', '', '', '', '', '', '', 0), + (2909, 'action:druid swipe', 1, 'swipe [h:object|action] [c:do swipe|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe tank feral pve|aoe tank feral pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe tank feral pve|aoe tank feral pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe tank feral pvp|aoe tank feral pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe tank feral pvp|aoe tank feral pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (20.000) for [h:strategy:druid aoe tank feral raid|aoe tank feral raid]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (21.000) for [h:strategy:druid aoe tank feral raid|aoe tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2910, 'action:druid challenging roar', 1, 'challenging roar [h:object|action] [c:do challenging roar|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (23.000) for [h:strategy:druid aoe tank feral pve|aoe tank feral pve]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (23.000) for [h:strategy:druid aoe tank feral pvp|aoe tank feral pvp]\r\nTriggers from: [h:trigger:druid aoe|aoe] with relevance (23.000) for [h:strategy:druid aoe tank feral raid|aoe tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2911, 'action:druid update raid strats', 1, 'update raid strats [h:object|action] [c:do update raid strats|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid balance|balance]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid balance|balance]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid dps feral|dps feral]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid restoration|restoration]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]\r\nTriggers from: [h:trigger:in raid fight|in raid fight] with relevance (100.000) for [h:strategy:druid tank feral|tank feral]', '', '', '', '', '', '', '', '', '', 0), + (2912, 'action:druid moonkin form', 1, 'moonkin form [h:object|action] [c:do moonkin form|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid moonkin form|moonkin form] with relevance (30.000) for [h:strategy:druid buff balance pve|buff balance pve]\r\nTriggers from: [h:trigger:druid moonkin form|moonkin form] with relevance (30.000) for [h:strategy:druid buff balance pvp|buff balance pvp]\r\nTriggers from: [h:trigger:druid moonkin form|moonkin form] with relevance (30.000) for [h:strategy:druid buff balance raid|buff balance raid]', '', '', '', '', '', '', '', '', '', 0), + (2913, 'action:druid mangle (bear)', 1, 'mangle (bear) [h:object|action] [c:do mangle (bear)|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid rage available|rage available] with relevance (11.000) for [h:strategy:druid tank feral pve|tank feral pve]\r\nTriggers from: [h:trigger:druid rage available|rage available] with relevance (11.000) for [h:strategy:druid tank feral pvp|tank feral pvp]\r\nTriggers from: [h:trigger:druid rage available|rage available] with relevance (11.000) for [h:strategy:druid tank feral raid|tank feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2914, 'action:druid enrage', 1, 'enrage [h:object|action] [c:do enrage|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid enrage|enrage] with relevance (20.000) for [h:strategy:druid buff tank feral raid|buff tank feral raid]\r\nTriggers from: [h:trigger:druid enrage|enrage] with relevance (20.000) for [h:strategy:druid buff tank feral pve|buff tank feral pve]\r\nTriggers from: [h:trigger:druid enrage|enrage] with relevance (20.000) for [h:strategy:druid buff tank feral pvp|buff tank feral pvp]', '', '', '', '', '', '', '', '', '', 0), + (2915, 'action:druid check stealth', 1, 'check stealth [h:object|action] [c:do check stealth|execute]\r\n\r\nCombat behavior:\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (90.000) for [h:strategy:druid stealth dps feral pve|stealth dps feral pve]\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (90.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (90.000) for [h:strategy:druid stealth dps feral raid|stealth dps feral raid]\r\nNon combat behavior:\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (20.000) for [h:strategy:druid stealth dps feral pve|stealth dps feral pve]\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (20.000) for [h:strategy:druid stealth dps feral pvp|stealth dps feral pvp]\r\nTriggers from: [h:trigger:druid prowl|prowl] with relevance (20.000) for [h:strategy:druid stealth dps feral raid|stealth dps feral raid]', '', '', '', '', '', '', '', '', '', 0), + (2916, 'value:closest attacker targeting me', 1, 'closest attacker targeting me [h:object|value] [c:cdebug values closest attacker targeting me|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2917, 'value:enchant spells', 1, 'enchant spells [h:object|value] [c:cdebug values enchant spells|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2918, 'value:guid filter', 1, 'guid filter [h:object|value] [c:cdebug values guid filter|current value]\r\nThis value will returns only the ObjectGuids of specific entries.', '', '', '', '', '', '', '', '', '', 0), + (2919, 'value:move style', 1, 'move style [h:object|value] [c:cdebug values move style|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2920, 'value:party tank without lifebloom', 1, 'party tank without lifebloom [h:object|value] [c:cdebug values party tank without lifebloom|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2921, 'value:quest reward', 1, 'quest reward [h:object|value] [c:cdebug values quest reward|current value]\r\n', '', '', '', '', '', '', '', '', '', 0), + (2922, 'value:skip go loot list', 1, 'skip go loot list [h:object|value] [c:cdebug values skip go loot list|current value]\r\n', '', '', '', '', '', '', '', '', '', 0); + DROP TABLE IF EXISTS `ai_playerbot_texts`; CREATE TABLE IF NOT EXISTS `ai_playerbot_texts` ( `id` smallint(20) NOT NULL AUTO_INCREMENT,