DarkflameServer/dScripts/NpcNpSpacemanBob.cpp
EmosewaMC 37de00464e M-Z scripts
Removing extraneous includes from scripts that start with the letter M-Z
2022-06-23 01:26:44 -07:00

16 lines
610 B
C++

#include "NpcNpSpacemanBob.h"
#include "DestroyableComponent.h"
#include "MissionComponent.h"
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);
}
}