DarkflameServer/dScripts/BaseWavesGenericEnemy.cpp

14 lines
444 B
C++
Raw Normal View History

#include "BaseWavesGenericEnemy.h"
#include "dZoneManager.h"
2022-07-28 13:39:57 +00:00
void BaseWavesGenericEnemy::OnStartup(Entity* self) {
self->SetNetworkVar<uint32_t>(u"points", GetPoints());
}
2022-07-28 13:39:57 +00:00
void BaseWavesGenericEnemy::OnDie(Entity* self, Entity* killer) {
auto* zoneControlObject = dZoneManager::Instance()->GetZoneControlObject();
if (zoneControlObject != nullptr) {
zoneControlObject->OnFireEventServerSide(killer, "Survival_Update", GetPoints());
}
}