mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
455f9470a5
* Move EntityManager to Game namespace * move initialization to later Need to wait for dZoneManager to be initialized. * Fix bugs - Cannot delete from a RandomAccessIterator while in a range based for loop. Touchup zone manager initialize replace magic numbers with better named constants replace magic zonecontrol id with a more readable hex alternative condense stack variables move initializers closer to their use initialize entity manager with zone control change initialize timings If zone is not zero we expect to initialize the entity manager during zone manager initialization Add constexpr for zone control LOT * Add proper error handling * revert vanity changes * Update WorldServer.cpp * Update dZoneManager.cpp
25 lines
862 B
C++
25 lines
862 B
C++
#include "NjNPCMissionSpinjitzuServer.h"
|
|
#include "Character.h"
|
|
#include "EntityManager.h"
|
|
#include "eMissionState.h"
|
|
|
|
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 = Game::entityManager->GetEntity(targetID);
|
|
if (target != nullptr) {
|
|
auto* character = target->GetCharacter();
|
|
if (character != nullptr) {
|
|
character->SetPlayerFlag(ElementFlags.at(element), true);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|