mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +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>
20 lines
644 B
C++
20 lines
644 B
C++
#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);
|
|
}
|