mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-01-08 05:47:07 +00:00
77b42daca1
* use steady_clock race timer * formatting and const * improve time interface * added uptime chat command * fix bug and update documentation * inrease /uptime GM level requirement * update GM level for /uptime (again) * made changes according to feedback
23 lines
1.4 KiB
C++
23 lines
1.4 KiB
C++
#ifndef GMZEROCOMMANDS_H
|
|
#define GMZEROCOMMANDS_H
|
|
|
|
namespace GMZeroCommands {
|
|
void Help(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Credits(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Info(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Die(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Ping(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Pvp(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void RequestMailCount(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Who(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void FixStats(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Join(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void LeaveZone(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void Resurrect(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void InstanceInfo(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void ServerUptime(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
void ClientHandled(Entity* entity, const SystemAddress& sysAddr, const std::string args);
|
|
}
|
|
|
|
#endif //!GMZEROCOMMANDS_H
|