2021-12-05 17:54:36 +00:00
|
|
|
#include "VeEpsilonServer.h"
|
|
|
|
#include "Character.h"
|
|
|
|
#include "EntityManager.h"
|
|
|
|
#include "GameMessages.h"
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void VeEpsilonServer::OnMissionDialogueOK(Entity* self, Entity* target, int missionID, MissionState missionState) {
|
|
|
|
auto* character = target->GetCharacter();
|
|
|
|
if (character == nullptr)
|
|
|
|
return;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
// Resets the player flags that track which consoles they've used
|
|
|
|
if ((missionID == m_ConsoleMissionID || missionID == m_ConsoleRepeatMissionID)
|
|
|
|
&& (missionState == MissionState::MISSION_STATE_AVAILABLE || missionState == MissionState::MISSION_STATE_COMPLETE_AVAILABLE)) {
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
for (auto i = 0; i < 10; i++) {
|
|
|
|
character->SetPlayerFlag(m_ConsoleBaseFlag + i, false);
|
|
|
|
}
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
// Notify the client that all objects have updated
|
|
|
|
self->AddCallbackTimer(3.0f, [this]() {
|
|
|
|
for (const auto* console : EntityManager::Instance()->GetEntitiesInGroup(m_ConsoleGroup)) {
|
|
|
|
GameMessages::SendNotifyClientObject(console->GetObjectID(), u"");
|
|
|
|
}
|
|
|
|
});
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|