mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
45 lines
987 B
C++
45 lines
987 B
C++
#include "../client.h"
|
|
|
|
void command_emptyinventory(Client *c, const Seperator *sep)
|
|
{
|
|
Client* t = c;
|
|
if (c->GetGM() && c->GetTarget() && c->GetTarget()->IsClient()) {
|
|
t = c->GetTarget()->CastToClient();
|
|
}
|
|
|
|
EQ::ItemInstance *item = nullptr;
|
|
uint32 removed_count = 0;
|
|
|
|
for (const int16& slot_id : t->GetInventorySlots()) {
|
|
item = t->GetInv().GetItem(slot_id);
|
|
|
|
if (item) {
|
|
uint32 stack_size = std::max(static_cast<uint32>(item->GetCharges()), static_cast<uint32>(1));
|
|
removed_count += stack_size;
|
|
t->DeleteItemInInventory(slot_id, 0, true);
|
|
}
|
|
}
|
|
|
|
if (!removed_count) {
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"{} {} no items to delete.",
|
|
c->GetTargetDescription(t, TargetDescriptionType::UCYou),
|
|
c == t ? "have" : "has"
|
|
).c_str()
|
|
);
|
|
return;
|
|
}
|
|
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Inventory cleared for {}, {} item{} deleted.",
|
|
c->GetTargetDescription(t),
|
|
removed_count,
|
|
removed_count != 1 ? "s" : ""
|
|
).c_str()
|
|
);
|
|
}
|