mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
6aa90ad5b2
* Breakout rest of the enums from dcommonvars so we don't have to deal with merge conflicts ePlayerFlags is not a scoped enum, yet, due to it's complexity * address feedback * make player flag types consistent * fix typo
30 lines
913 B
C++
30 lines
913 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 = EntityManager::Instance()->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);
|
|
}
|
|
}
|