2022-04-17 12:43:07 +00:00
|
|
|
package emu.grasscutter;
|
|
|
|
|
2022-04-18 05:11:27 +00:00
|
|
|
public final class Config {
|
2022-04-17 12:43:07 +00:00
|
|
|
public String DispatchServerIp = "127.0.0.1";
|
|
|
|
public int DispatchServerPort = 443;
|
|
|
|
public String DispatchServerKeystorePath = "./keystore.p12";
|
|
|
|
public String DispatchServerKeystorePassword = "";
|
|
|
|
|
|
|
|
public String GameServerName = "Test";
|
|
|
|
public String GameServerIp = "127.0.0.1";
|
|
|
|
public int GameServerPort = 22102;
|
|
|
|
|
|
|
|
public String DatabaseUrl = "mongodb://localhost:27017";
|
|
|
|
public String DatabaseCollection = "grasscutter";
|
|
|
|
|
|
|
|
public String RESOURCE_FOLDER = "./resources/";
|
|
|
|
public String DATA_FOLDER = "./data/";
|
|
|
|
public String PACKETS_FOLDER = "./packets/";
|
|
|
|
public String DUMPS_FOLDER = "./dumps/";
|
|
|
|
public String KEY_FOLDER = "./keys/";
|
|
|
|
public boolean LOG_PACKETS = false;
|
|
|
|
|
|
|
|
public GameRates Game = new GameRates();
|
|
|
|
public ServerOptions ServerOptions = new ServerOptions();
|
|
|
|
|
|
|
|
public GameRates getGameRates() {
|
|
|
|
return Game;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ServerOptions getServerOptions() {
|
|
|
|
return ServerOptions;
|
|
|
|
}
|
|
|
|
|
2022-04-18 05:11:27 +00:00
|
|
|
public static class GameRates {
|
2022-04-17 12:43:07 +00:00
|
|
|
public float ADVENTURE_EXP_RATE = 1.0f;
|
|
|
|
public float MORA_RATE = 1.0f;
|
|
|
|
public float DOMAIN_DROP_RATE = 1.0f;
|
|
|
|
}
|
|
|
|
|
2022-04-18 05:11:27 +00:00
|
|
|
public static class ServerOptions {
|
|
|
|
public int MaxEntityLimit = 1000; // Max entity limit per world. // TODO: Enforce later.
|
2022-04-17 12:43:07 +00:00
|
|
|
public int[] WelcomeEmotes = {2007, 1002, 4010};
|
|
|
|
public String WelcomeMotd = "Welcome to Grasscutter emu";
|
|
|
|
}
|
|
|
|
}
|