mirror of
https://github.com/liyunfan1223/mod-playerbots.git
synced 2026-02-21 02:20:00 +01:00
- Utgarde Pinnacle implementation
- Culling of Stratholme implementation
- Added additional value ("nearest hostile npcs") needed to expose some hidden trigger-type npc units (eg. frost breath on Skadi fight in UP)
19 lines
535 B
C++
19 lines
535 B
C++
#ifndef _PLAYERBOT_WOTLKDUNGEONUPSTRATEGY_H
|
|
#define _PLAYERBOT_WOTLKDUNGEONUPSTRATEGY_H
|
|
|
|
#include "Multiplier.h"
|
|
#include "AiObjectContext.h"
|
|
#include "Strategy.h"
|
|
|
|
|
|
class WotlkDungeonUPStrategy : public Strategy
|
|
{
|
|
public:
|
|
WotlkDungeonUPStrategy(PlayerbotAI* ai) : Strategy(ai) {}
|
|
virtual std::string const getName() override { return "utgarde pinnacle"; }
|
|
virtual void InitTriggers(std::vector<TriggerNode*> &triggers) override;
|
|
virtual void InitMultipliers(std::vector<Multiplier*> &multipliers) override;
|
|
};
|
|
|
|
#endif
|