mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 05:27:19 +00:00
99e7349f6c
* feat: showall, findplayer, get/openhttpmoninfo http monitor info is planned to be used later, just putting in info that i've since reverse engineered and don't want lost Additionally add debug world packet for duture dev use Tested all new commands and variation of command arguments * fix missing newline at eofs * address most feedback * Compormise and use struct with (de)serialize * remove httpmoninfo commands
16 lines
1.1 KiB
C++
16 lines
1.1 KiB
C++
namespace GMGreaterThanZeroCommands {
|
|
void Kick(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void MailItem(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Ban(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void ApproveProperty(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Mute(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Fly(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void AttackImmune(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void GmImmune(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void GmInvis(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void SetName(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Title(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void ShowAll(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void FindPlayer(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
}
|