mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
* [Feature] GM State Change Persistance - Flymode and Invulnerable will now persist over zoning. - Appended GMSpeed, Flymode and Invulnerable to the hideme message GMs see when they first login. - Added #godmode [on/off] command to turn on or off hideme, flymode, gmspeed and invulnerable all in one shot. - /becomenpc will now disable tells to the target player. It will also automatically disable GM States that interfere with its functionality. - GM Command /toggle will not properly turn tells on/off - GMs will now be notified if they are ignoring tells when they first zone-in, provided their GM flag is up. - Added TellsOff variable to the output to #showstats * [Bug] Fix tells when gmhideme is turned off. * [Cleanup] Cleanup function and rename for consistancy. Remove un-needed this-> * Tweaks * Tweaks * Update db_update_manifest.txt * Move string building logic to a vector and use strings join * Update client_packet.cpp * Update 2022_07_28_gm_state_changes.sql * PR comment tweaks Co-authored-by: Akkadius <akkadius1@gmail.com>
41 lines
1011 B
C++
Executable File
41 lines
1011 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_flymode(Client *c, const Seperator *sep)
|
|
{
|
|
int arguments = sep->argnum;
|
|
if (!arguments || !sep->IsNumber(1)) {
|
|
return;
|
|
}
|
|
|
|
Mob *target = c;
|
|
if (c->GetTarget()) {
|
|
target = c->GetTarget();
|
|
}
|
|
|
|
auto flymode_id = std::stoul(sep->arg[1]);
|
|
if (
|
|
flymode_id < EQ::constants::GravityBehavior::Ground &&
|
|
flymode_id > EQ::constants::GravityBehavior::LevitateWhileRunning
|
|
) {
|
|
c->Message(Chat::White, "Usage:: #flymode [Flymode ID]");
|
|
c->Message(Chat::White, "0 = Ground, 1 = Flying, 2 = Levitating, 3 = Water, 4 = Floating, 5 = Levitating While Running");
|
|
return;
|
|
}
|
|
|
|
target->SetFlyMode(static_cast<GravityBehavior>(flymode_id));
|
|
target->SendAppearancePacket(AT_Levitate, flymode_id);
|
|
uint32 account = c->AccountID();
|
|
database.SetGMFlymode(account, flymode_id);
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Fly Mode for {} is now {} ({}).",
|
|
c->GetTargetDescription(target),
|
|
EQ::constants::GetFlyModeName(flymode_id),
|
|
flymode_id
|
|
).c_str()
|
|
);
|
|
}
|
|
|
|
|