2021-12-05 17:54:36 +00:00
|
|
|
#include "NjNPCMissionSpinjitzuServer.h"
|
|
|
|
#include "Character.h"
|
|
|
|
#include "EntityManager.h"
|
2023-01-07 05:17:05 +00:00
|
|
|
#include "eMissionState.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void NjNPCMissionSpinjitzuServer::OnMissionDialogueOK(Entity* self, Entity* target, int missionID, eMissionState missionState) {
|
|
|
|
|
|
|
|
const auto& element = self->GetVar<std::u16string>(ElementVariable);
|
|
|
|
if (missionID == ElementMissions.at(element) && missionState >= eMissionState::READY_TO_COMPLETE) {
|
|
|
|
|
|
|
|
const auto targetID = target->GetObjectID();
|
|
|
|
|
|
|
|
// Wait for an animation to complete and flag that the player has learned spinjitzu
|
|
|
|
self->AddCallbackTimer(5.0f, [targetID, element]() {
|
|
|
|
auto* target = EntityManager::Instance()->GetEntity(targetID);
|
|
|
|
if (target != nullptr) {
|
|
|
|
auto* character = target->GetCharacter();
|
|
|
|
if (character != nullptr) {
|
|
|
|
character->SetPlayerFlag(ElementFlags.at(element), true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|