2021-12-05 17:54:36 +00:00
|
|
|
#include "NpcNpSpacemanBob.h"
|
|
|
|
#include "DestroyableComponent.h"
|
2022-07-05 06:00:10 +00:00
|
|
|
#include "MissionComponent.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void NpcNpSpacemanBob::OnMissionDialogueOK(Entity* self, Entity* target, int missionID, MissionState missionState)
|
|
|
|
{
|
|
|
|
if (missionState == MissionState::MISSION_STATE_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);
|
|
|
|
}
|
|
|
|
}
|