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