Kinglykrab 7df9b2974b
[Commands] Cleanup #reloadzps Command. (#2129)
* [Commands] Cleanup #reloadzps Command.
- Cleanup messages and logic.
- Make reloading of zone points global instead of zone specific.

* Further cleanup.
- Add zone->GetZoneDescription().
- Add mob->GetTargetDescription(mob).

* Final cleanup.

* Typo.
2022-05-07 03:23:15 -04:00

78 lines
1.7 KiB
C++
Executable File

#include "../client.h"
#include "../worldserver.h"
extern WorldServer worldserver;
void command_revoke(Client *c, const Seperator *sep)
{
int arguments = sep->argnum;
if (!arguments || !sep->IsNumber(2)) {
c->Message(Chat::White, "Usage: #revoke [Character Name] [0|1]");
return;
}
std::string character_name = sep->arg[1];
auto account_id = database.GetAccountIDByChar(character_name.c_str());
if (!account_id) {
c->Message(
Chat::White,
fmt::format(
"Character {} does not exist.",
character_name
).c_str()
);
return;
}
bool revoked = std::stoi(sep->arg[2]) ? true : false;
auto query = fmt::format(
"UPDATE account SET revoked = {} WHERE id = {}",
revoked,
account_id
);
auto results = database.QueryDatabase(query);
c->Message(
Chat::White,
fmt::format(
"{} character {} on account ID {}.",
revoked ? "Revoking" : "Unrevoking",
character_name,
account_id
).c_str()
);
auto revoke_client = entity_list.GetClientByAccID(account_id);
if (revoke_client) {
c->Message(
Chat::White,
fmt::format(
"Found {} in this zone.",
c->GetTargetDescription(revoke_client)
).c_str()
);
revoke_client->SetRevoked(revoked);
return;
} else {
c->Message(
Chat::White,
fmt::format(
"Attempting to {} {}.",
revoked ? "revoked" : "unrevoke",
character_name
).c_str()
);
auto pack = new ServerPacket(ServerOP_Revoke, sizeof(RevokeStruct));
auto rs = (RevokeStruct *) pack->pBuffer;
strn0cpy(rs->adminname, c->GetName(), sizeof(rs->adminname));
strn0cpy(rs->name, character_name.c_str(), sizeof(rs->name));
rs->toggle = revoked;
worldserver.SendPacket(pack);
safe_delete(pack);
};
}