2021-12-05 17:54:36 +00:00
|
|
|
#include "ActSharkPlayerDeathTrigger.h"
|
2022-06-23 05:19:49 +00:00
|
|
|
#include "MissionComponent.h"
|
|
|
|
#include "MissionTaskType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
#include "Entity.h"
|
|
|
|
|
|
|
|
void ActSharkPlayerDeathTrigger::OnFireEventServerSide(Entity *self, Entity *sender, std::string args, int32_t param1,
|
|
|
|
int32_t param2, int32_t param3) {
|
|
|
|
if (args == "achieve") {
|
2022-06-22 08:22:59 +00:00
|
|
|
auto missionComponent = sender->GetComponent<MissionComponent>();
|
|
|
|
if (!missionComponent) return;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-06-22 08:22:59 +00:00
|
|
|
missionComponent->Progress(MissionTaskType::MISSION_TASK_TYPE_SCRIPT, 8419);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
if (sender->GetIsDead() || !sender->GetPlayerReadyForUpdates()) return; //Don't kill already dead players or players not ready
|
|
|
|
|
|
|
|
if (sender->GetCharacter()) {
|
|
|
|
sender->Smash(self->GetObjectID(), eKillType::VIOLENT, u"big-shark-death");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|