mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 02:11:30 +00:00
35 lines
982 B
C++
Executable File
35 lines
982 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_permarace(Client *c, const Seperator *sep)
|
|
{
|
|
Client *t = c;
|
|
|
|
if (c->GetTarget() && c->GetTarget()->IsClient()) {
|
|
t = c->GetTarget()->CastToClient();
|
|
}
|
|
|
|
if (sep->arg[1][0] == 0) {
|
|
c->Message(Chat::White, "Usage: #permarace <racenum>");
|
|
c->Message(
|
|
Chat::White,
|
|
"NOTE: Not all models are global. If a model is not global, it will appear as a human on character select and in zones without the model."
|
|
);
|
|
}
|
|
else if (!t->IsClient()) {
|
|
c->Message(Chat::White, "Target is not a client.");
|
|
}
|
|
else {
|
|
c->Message(Chat::White, "Setting %s's race - zone to take effect", t->GetName());
|
|
LogInfo("Permanant race change request from [{}] for [{}], requested race:[{}]",
|
|
c->GetName(),
|
|
t->GetName(),
|
|
atoi(sep->arg[1]));
|
|
uint32 tmp = Mob::GetDefaultGender(atoi(sep->arg[1]), t->GetBaseGender());
|
|
t->SetBaseRace(atoi(sep->arg[1]));
|
|
t->SetBaseGender(tmp);
|
|
t->Save();
|
|
t->SendIllusionPacket(atoi(sep->arg[1]));
|
|
}
|
|
}
|
|
|