mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-12 19:28:21 +00:00
15 lines
622 B
C++
15 lines
622 B
C++
#include "NpcNpSpacemanBob.h"
|
|
#include "DestroyableComponent.h"
|
|
#include "MissionComponent.h"
|
|
#include "eMissionState.h"
|
|
|
|
void NpcNpSpacemanBob::OnMissionDialogueOK(Entity* self, Entity* target, int missionID, eMissionState missionState) {
|
|
if (missionState == eMissionState::READY_TO_COMPLETE && missionID == 173) {
|
|
DestroyableComponent* destroyable = static_cast<DestroyableComponent*>(target->GetComponent(COMPONENT_TYPE_DESTROYABLE));
|
|
destroyable->SetImagination(6);
|
|
MissionComponent* mission = static_cast<MissionComponent*>(target->GetComponent(COMPONENT_TYPE_MISSION));
|
|
|
|
mission->CompleteMission(664);
|
|
}
|
|
}
|