mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-10-14 03:19:56 +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:
19
dScripts/02_server/Map/PR/PrSeagullFly.cpp
Normal file
19
dScripts/02_server/Map/PR/PrSeagullFly.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "PrSeagullFly.h"
|
||||
#include "Entity.h"
|
||||
|
||||
void PrSeagullFly::OnStartup(Entity* self) {
|
||||
self->SetVar<int32_t>(u"playersNear", 0);
|
||||
self->SetProximityRadius(15, "birdMonitor");
|
||||
}
|
||||
|
||||
void PrSeagullFly::OnProximityUpdate(Entity* self, Entity* entering, std::string name, std::string status) {
|
||||
if (!entering->IsPlayer()) return;
|
||||
|
||||
if (status == "ENTER") {
|
||||
self->SetVar<int32_t>(u"playersNear", self->GetVar<int32_t>(u"playersNear") + 1);
|
||||
} else if (status == "LEAVE") {
|
||||
self->SetVar<int32_t>(u"playersNear", self->GetVar<int32_t>(u"playersNear") - 1);
|
||||
}
|
||||
|
||||
self->SetNetworkVar(u"BirdLanded", self->GetVar<int32_t>(u"playersNear") == 0);
|
||||
}
|
Reference in New Issue
Block a user