PoS Strategies (#1283)

PoS Strategies
This commit is contained in:
Noscopezz
2025-05-11 00:24:09 +02:00
committed by GitHub
parent dc703cc897
commit 3881940f33
16 changed files with 571 additions and 10 deletions

View File

@@ -0,0 +1,22 @@
#include "Playerbots.h"
#include "PitOfSaronTriggers.h"
#include "AiObject.h"
#include "AiObjectContext.h"
bool IckAndKrickTrigger::IsActive()
{
Unit* boss = AI_VALUE2(Unit*, "find target", "Ick");
if (!boss)
return false;
return true;
}
bool TyrannusTrigger::IsActive()
{
Unit* boss = AI_VALUE2(Unit*, "find target", "scourgelord tyrannus");
if (!boss)
return false;
return true;
}