mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
8d37d9b681
* Organize dScripts whitespace Remove parent scope Remove parent scope from initial setter Remove debug Remove helper programs * Fix NtImagimeterVisibility script Co-authored-by: aronwk-aaron <aronwk.aaron@gmail.com>
14 lines
607 B
C++
14 lines
607 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);
|
|
}
|
|
}
|