tell expected group dps

This commit is contained in:
Yunfan Li
2023-10-10 23:31:43 +08:00
parent 417c5bbc93
commit 687aba146a
5 changed files with 20 additions and 0 deletions

View File

@@ -125,4 +125,11 @@ bool TellAuraAction::Execute(Event event)
}
}
return true;
}
bool TellExpectedDpsAction::Execute(Event event)
{
float dps = AI_VALUE(float, "expected group dps");
botAI->TellMaster("Expected Group DPS: " + std::to_string(dps));
return true;
}