mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-02-13 23:33:47 +00:00
Icecrown gunship strategy
This commit is contained in:
14
src/strategy/raids/icecrown/RaidIccStrategy.cpp
Normal file
14
src/strategy/raids/icecrown/RaidIccStrategy.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "RaidIccStrategy.h"
|
||||
|
||||
#include "Strategy.h"
|
||||
|
||||
void RaidIccStrategy::InitTriggers(std::vector<TriggerNode*>& triggers)
|
||||
{
|
||||
triggers.push_back(new TriggerNode(
|
||||
"icc gunship cannon near",
|
||||
NextAction::array(0, new NextAction("icc gunship enter cannon", ACTION_RAID + 2), nullptr)));
|
||||
|
||||
triggers.push_back(
|
||||
new TriggerNode("icc in cannon",
|
||||
NextAction::array(0, new NextAction("icc cannon fire", ACTION_RAID), nullptr)));
|
||||
}
|
||||
Reference in New Issue
Block a user