2021-12-05 17:54:36 +00:00
|
|
|
#include "TreasureChestDragonServer.h"
|
|
|
|
#include "ScriptedActivityComponent.h"
|
|
|
|
#include "TeamManager.h"
|
|
|
|
#include "EntityManager.h"
|
|
|
|
|
|
|
|
void TreasureChestDragonServer::OnStartup(Entity* self)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void TreasureChestDragonServer::OnUse(Entity* self, Entity* user)
|
|
|
|
{
|
|
|
|
if (self->GetVar<bool>(u"bUsed"))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->SetVar<bool>(u"bUsed", true);
|
|
|
|
|
|
|
|
auto* scriptedActivityComponent = self->GetComponent<ScriptedActivityComponent>();
|
|
|
|
|
|
|
|
if (scriptedActivityComponent == nullptr)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto rating = 1;
|
|
|
|
|
|
|
|
auto* team = TeamManager::Instance()->GetTeam(user->GetObjectID());
|
|
|
|
|
|
|
|
if (team != nullptr)
|
|
|
|
{
|
|
|
|
rating = team->members.size();
|
|
|
|
|
|
|
|
for (const auto member : team->members)
|
|
|
|
{
|
|
|
|
auto* memberObject = EntityManager::Instance()->GetEntity(member);
|
|
|
|
|
|
|
|
if (memberObject == nullptr) continue;
|
|
|
|
|
2021-12-20 10:25:45 +00:00
|
|
|
LootGenerator::Instance().DropActivityLoot(memberObject, self, scriptedActivityComponent->GetActivityID(), rating);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-20 10:25:45 +00:00
|
|
|
LootGenerator::Instance().DropActivityLoot(user, self, scriptedActivityComponent->GetActivityID(), rating);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self->Smash(self->GetObjectID());
|
|
|
|
}
|