mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-11 02:38:21 +00:00
455f9470a5
* Move EntityManager to Game namespace * move initialization to later Need to wait for dZoneManager to be initialized. * Fix bugs - Cannot delete from a RandomAccessIterator while in a range based for loop. Touchup zone manager initialize replace magic numbers with better named constants replace magic zonecontrol id with a more readable hex alternative condense stack variables move initializers closer to their use initialize entity manager with zone control change initialize timings If zone is not zero we expect to initialize the entity manager during zone manager initialization Add constexpr for zone control LOT * Add proper error handling * revert vanity changes * Update WorldServer.cpp * Update dZoneManager.cpp
41 lines
1004 B
C++
41 lines
1004 B
C++
#include "NsQbImaginationStatue.h"
|
|
#include "EntityManager.h"
|
|
#include "GameMessages.h"
|
|
|
|
void NsQbImaginationStatue::OnStartup(Entity* self) {
|
|
|
|
}
|
|
|
|
void NsQbImaginationStatue::OnRebuildComplete(Entity* self, Entity* target) {
|
|
if (target == nullptr) return;
|
|
|
|
self->SetVar(u"Player", target->GetObjectID());
|
|
|
|
SpawnLoot(self);
|
|
|
|
self->AddTimer("SpawnDelay", 1.5f);
|
|
|
|
self->AddTimer("StopSpawner", 10.0f);
|
|
}
|
|
|
|
void NsQbImaginationStatue::OnTimerDone(Entity* self, std::string timerName) {
|
|
if (timerName == "SpawnDelay") {
|
|
SpawnLoot(self);
|
|
|
|
self->AddTimer("SpawnDelay", 1.5f);
|
|
} else if (timerName == "StopSpawner") {
|
|
self->CancelAllTimers();
|
|
}
|
|
}
|
|
|
|
void NsQbImaginationStatue::SpawnLoot(Entity* self) {
|
|
const auto playerId = self->GetVar<LWOOBJID>(u"Player");
|
|
|
|
auto* player = Game::entityManager->GetEntity(playerId);
|
|
|
|
if (player == nullptr) return;
|
|
|
|
GameMessages::SendDropClientLoot(player, self->GetObjectID(), 935, 0);
|
|
GameMessages::SendDropClientLoot(player, self->GetObjectID(), 935, 0);
|
|
}
|