mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-13 09:07:19 +00:00
Avoid aoe base
This commit is contained in:
@@ -66,11 +66,20 @@ class FleeWithPetAction : public MovementAction
|
||||
bool Execute(Event event) override;
|
||||
};
|
||||
|
||||
class AvoidAoeAction : public MovementAction
|
||||
{
|
||||
public:
|
||||
AvoidAoeAction(PlayerbotAI* botAI) : MovementAction(botAI, "avoid aoe") { }
|
||||
|
||||
bool isUseful() override;
|
||||
bool Execute(Event event) override;
|
||||
};
|
||||
|
||||
class RunAwayAction : public MovementAction
|
||||
{
|
||||
public:
|
||||
RunAwayAction(PlayerbotAI* botAI) : MovementAction(botAI, "runaway") { }
|
||||
|
||||
|
||||
bool Execute(Event event) override;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user