mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-02-01 09:53:47 +00:00
razuvious strategy
This commit is contained in:
@@ -91,23 +91,23 @@ bool HeiganRangedTrigger::IsActive()
|
||||
return botAI->IsRanged(bot);
|
||||
}
|
||||
|
||||
// bool RazuviousTankTrigger::IsActive()
|
||||
// {
|
||||
// Difficulty diff = bot->GetRaidDifficulty();
|
||||
// if (diff == RAID_DIFFICULTY_10MAN_NORMAL) {
|
||||
// return BossPhaseTrigger::IsActive() && botAI->IsTank(bot);
|
||||
// }
|
||||
// return BossPhaseTrigger::IsActive() && bot->getClass() == CLASS_PRIEST;
|
||||
// }
|
||||
bool RazuviousTankTrigger::IsActive()
|
||||
{
|
||||
Difficulty diff = bot->GetRaidDifficulty();
|
||||
if (diff == RAID_DIFFICULTY_10MAN_NORMAL) {
|
||||
return helper.UpdateBossAI() && botAI->IsTank(bot);
|
||||
}
|
||||
return helper.UpdateBossAI() && bot->getClass() == CLASS_PRIEST;
|
||||
}
|
||||
|
||||
// bool RazuviousNontankTrigger::IsActive()
|
||||
// {
|
||||
// Difficulty diff = bot->GetRaidDifficulty();
|
||||
// if (diff == RAID_DIFFICULTY_10MAN_NORMAL) {
|
||||
// return BossPhaseTrigger::IsActive() && !(botAI->IsTank(bot));
|
||||
// }
|
||||
// return BossPhaseTrigger::IsActive() && !(bot->getClass() == CLASS_PRIEST);
|
||||
// }
|
||||
bool RazuviousNontankTrigger::IsActive()
|
||||
{
|
||||
Difficulty diff = bot->GetRaidDifficulty();
|
||||
if (diff == RAID_DIFFICULTY_10MAN_NORMAL) {
|
||||
return helper.UpdateBossAI() && !(botAI->IsTank(bot));
|
||||
}
|
||||
return helper.UpdateBossAI() && !(bot->getClass() == CLASS_PRIEST);
|
||||
}
|
||||
|
||||
// bool HorsemanAttractorsTrigger::IsActive()
|
||||
// {
|
||||
|
||||
Reference in New Issue
Block a user