2021-12-05 17:54:36 +00:00
|
|
|
#include "VeMissionConsole.h"
|
|
|
|
#include "InventoryComponent.h"
|
|
|
|
#include "Character.h"
|
|
|
|
#include "GameMessages.h"
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void VeMissionConsole::OnUse(Entity* self, Entity* user) {
|
|
|
|
LootGenerator::Instance().DropActivityLoot(user, self, 12551);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
auto* inventoryComponent = user->GetComponent<InventoryComponent>();
|
|
|
|
if (inventoryComponent != nullptr) {
|
|
|
|
inventoryComponent->AddItem(12547, 1, eLootSourceType::LOOT_SOURCE_ACTIVITY); // Add the panel required for pickup
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
// The flag to set is 101<number>
|
|
|
|
const auto flagNumber = self->GetVar<std::u16string>(m_NumberVariable);
|
|
|
|
const auto flag = std::stoi("101" + GeneralUtils::UTF16ToWTF8(flagNumber));
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
auto* character = user->GetCharacter();
|
|
|
|
if (character != nullptr) {
|
|
|
|
character->SetPlayerFlag(flag, true);
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
GameMessages::SendNotifyClientObject(self->GetObjectID(), u"");
|
|
|
|
GameMessages::SendTerminateInteraction(user->GetObjectID(), FROM_INTERACTION, self->GetObjectID());
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|