2020-08-23 17:14:54 +00:00
|
|
|
#pragma once
|
2020-08-18 20:42:30 +00:00
|
|
|
|
|
|
|
namespace settings {
|
2020-08-23 21:09:31 +00:00
|
|
|
extern int VERBOSITY;
|
2020-08-18 20:42:30 +00:00
|
|
|
extern int LOGINPORT;
|
|
|
|
extern bool LOGINRANDCHARACTERS;
|
2020-09-01 22:37:09 +00:00
|
|
|
extern bool APPROVEALLNAMES;
|
2020-08-18 20:42:30 +00:00
|
|
|
extern int SHARDPORT;
|
|
|
|
extern std::string SHARDSERVERIP;
|
2020-08-26 02:53:27 +00:00
|
|
|
extern int PLAYERDISTANCE;
|
|
|
|
extern int NPCDISTANCE;
|
2020-08-18 20:42:30 +00:00
|
|
|
extern int SPAWN_X;
|
|
|
|
extern int SPAWN_Y;
|
|
|
|
extern int SPAWN_Z;
|
2020-09-08 20:41:02 +00:00
|
|
|
extern int SPAWN_ANGLE;
|
2020-08-19 17:22:54 +00:00
|
|
|
extern std::string MOTDSTRING;
|
2020-08-21 22:14:11 +00:00
|
|
|
extern std::string NPCJSON;
|
2020-09-09 17:06:22 +00:00
|
|
|
extern std::string XDTJSON;
|
2020-09-07 17:54:40 +00:00
|
|
|
extern std::string MOBJSON;
|
2020-08-25 02:28:42 +00:00
|
|
|
extern bool GM;
|
2020-08-18 20:42:30 +00:00
|
|
|
|
|
|
|
void init();
|
|
|
|
}
|