2024-05-16 09:30:00 +00:00
|
|
|
#ifndef GMGREATERTHANZEROCOMMANDS_H
|
|
|
|
#define GMGREATERTHANZEROCOMMANDS_H
|
|
|
|
|
2024-04-10 01:15:51 +00:00
|
|
|
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);
|
2024-04-18 02:47:28 +00:00
|
|
|
void ShowAll(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
|
|
void FindPlayer(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
|
|
}
|
2024-05-16 09:30:00 +00:00
|
|
|
|
|
|
|
#endif //!GMGREATERTHANZEROCOMMANDS_H
|