mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +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
30 lines
907 B
C++
30 lines
907 B
C++
#include "AgCagedBricksServer.h"
|
|
#include "InventoryComponent.h"
|
|
#include "GameMessages.h"
|
|
#include "Character.h"
|
|
#include "EntityManager.h"
|
|
#include "eReplicaComponentType.h"
|
|
#include "ePlayerFlag.h"
|
|
|
|
void AgCagedBricksServer::OnUse(Entity* self, Entity* user) {
|
|
//Tell the client to spawn the baby spiderling:
|
|
auto spooders = Game::entityManager->GetEntitiesInGroup("cagedSpider");
|
|
for (auto spodder : spooders) {
|
|
GameMessages::SendFireEventClientSide(spodder->GetObjectID(), user->GetSystemAddress(), u"toggle", LWOOBJID_EMPTY, 0, 0, user->GetObjectID());
|
|
}
|
|
|
|
//Set the flag & mission status:
|
|
auto character = user->GetCharacter();
|
|
|
|
if (!character) return;
|
|
|
|
character->SetPlayerFlag(ePlayerFlag::CAGED_SPIDER, true);
|
|
|
|
//Remove the maelstrom cube:
|
|
auto inv = static_cast<InventoryComponent*>(user->GetComponent(eReplicaComponentType::INVENTORY));
|
|
|
|
if (inv) {
|
|
inv->RemoveItem(14553, 1);
|
|
}
|
|
}
|