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>
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
#include "StinkyFishTarget.h"
|
|
#include "EntityManager.h"
|
|
|
|
void StinkyFishTarget::OnStartup(Entity* self) {
|
|
auto position = self->GetPosition();
|
|
position.SetY(position.GetY() - 0.5f);
|
|
self->SetPosition(position);
|
|
}
|
|
|
|
void StinkyFishTarget::OnSkillEventFired(Entity* self, Entity* caster, const std::string& message) {
|
|
if (message != "stinkfish" || self->GetVar<bool>(u"used"))
|
|
return;
|
|
|
|
self->SetVar<bool>(u"used", true);
|
|
self->SetVar<LWOOBJID>(u"player", caster->GetObjectID());
|
|
|
|
EntityInfo entityInfo{};
|
|
entityInfo.pos = self->GetPosition();
|
|
entityInfo.rot = self->GetRotation();
|
|
entityInfo.spawnerID = self->GetObjectID();
|
|
entityInfo.settings = {
|
|
new LDFData<bool>(u"no_timed_spawn", true)
|
|
};
|
|
|
|
auto* fish = EntityManager::Instance()->CreateEntity(entityInfo);
|
|
EntityManager::Instance()->ConstructEntity(fish);
|
|
|
|
self->SetVar<LWOOBJID>(u"fish", fish->GetObjectID());
|
|
self->AddTimer("smash", 5.0f);
|
|
}
|
|
|
|
void StinkyFishTarget::OnTimerDone(Entity* self, std::string timerName) {
|
|
if (timerName == "smash") {
|
|
const auto playerID = self->GetVar<LWOOBJID>(u"player");
|
|
auto* fish = EntityManager::Instance()->GetEntity(self->GetVar<LWOOBJID>(u"fish"));
|
|
|
|
if (fish != nullptr) {
|
|
fish->Smash(playerID);
|
|
self->Smash(playerID);
|
|
}
|
|
}
|
|
}
|