mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-07 03:04:05 +00:00
Organize dScripts (#814)
* 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>
This commit is contained in:
30
dScripts/ai/FV/FvDragonSmashingGolemQb.cpp
Normal file
30
dScripts/ai/FV/FvDragonSmashingGolemQb.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
#include "FvDragonSmashingGolemQb.h"
|
||||
#include "GameMessages.h"
|
||||
#include "EntityManager.h"
|
||||
|
||||
void FvDragonSmashingGolemQb::OnStartup(Entity* self) {
|
||||
self->AddTimer("GolemBreakTimer", 10.5f);
|
||||
}
|
||||
|
||||
void FvDragonSmashingGolemQb::OnTimerDone(Entity* self, std::string timerName) {
|
||||
if (timerName == "GolemBreakTimer") {
|
||||
self->Smash();
|
||||
}
|
||||
}
|
||||
|
||||
void FvDragonSmashingGolemQb::OnRebuildNotifyState(Entity* self, eRebuildState state) {
|
||||
if (state == eRebuildState::REBUILD_COMPLETED) {
|
||||
GameMessages::SendPlayAnimation(self, u"dragonsmash");
|
||||
|
||||
const auto dragonId = self->GetVar<LWOOBJID>(u"Dragon");
|
||||
|
||||
auto* dragon = EntityManager::Instance()->GetEntity(dragonId);
|
||||
|
||||
if (dragon != nullptr) {
|
||||
dragon->OnFireEventServerSide(self, "rebuildDone");
|
||||
}
|
||||
|
||||
self->CancelTimer("GolemBreakTimer");
|
||||
self->AddTimer("GolemBreakTimer", 10.5f);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user