mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-04 09:44:10 +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:
33
dScripts/02_server/Map/AG/AgMonumentBirds.cpp
Normal file
33
dScripts/02_server/Map/AG/AgMonumentBirds.cpp
Normal file
@@ -0,0 +1,33 @@
|
||||
#include "AgMonumentBirds.h"
|
||||
#include "GameMessages.h"
|
||||
|
||||
//--------------------------------------------------------------
|
||||
//Makes the ag birds fly away when you get close and smashes them.
|
||||
//Created mrb... 6 / 3 / 11
|
||||
//Ported Max 20/07/2020
|
||||
//--------------------------------------------------------------
|
||||
|
||||
void AgMonumentBirds::OnStartup(Entity* self) {
|
||||
self->SetProximityRadius(flyRadius, "MonumentBirds");
|
||||
}
|
||||
|
||||
void AgMonumentBirds::OnProximityUpdate(Entity* self, Entity* entering, std::string name, std::string status) {
|
||||
if (self->GetVar<bool>(u"IsFlying")) return;
|
||||
|
||||
if (name == "MonumentBirds" && status == "ENTER") {
|
||||
self->AddTimer("killBird", 1.0f);
|
||||
GameMessages::SendPlayAnimation(self, sOnProximityAnim);
|
||||
self->SetVar<bool>(u"IsFlying", true);
|
||||
self->SetVar<LWOOBJID>(u"PlayerID", entering->GetObjectID());
|
||||
}
|
||||
}
|
||||
|
||||
void AgMonumentBirds::OnTimerDone(Entity* self, std::string timerName) {
|
||||
if (timerName != "killBird") return;
|
||||
|
||||
auto* player = EntityManager::Instance()->GetEntity(self->GetVar<LWOOBJID>(u"PlayerID"));
|
||||
|
||||
if (player == nullptr) return;
|
||||
|
||||
self->ScheduleKillAfterUpdate(player);
|
||||
}
|
Reference in New Issue
Block a user