public class CommonStrings
Contains basic mod constants, common error messages, and the IDs of sector persistent data that core commands use.
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
DATA_HOME_ID
The persistent data ID of the SectorEntityToken used by the Home command.
|
static java.lang.String |
DATA_PREFIX
A recommended prefix for keys in sector persistent data to avoid collision with any existing keys.
|
static java.lang.String |
DATA_STORAGE_ID
The persistent data ID of the SectorEntityToken used by the Storage command.
|
static java.lang.String |
ERROR_CAMPAIGN_ONLY
The error message displayed by core commands when a campaign-only command is used elsewhere.
|
static java.lang.String |
ERROR_COMBAT_ONLY
The error message displayed by core commands when a combat-only command is used elsewhere.
|
static java.lang.String |
ERROR_MARKET_ONLY
The error message displayed by core commands when a market-only command is used elsewhere.
|
static java.lang.String |
ERROR_MISSION_ONLY
The error message displayed by core commands when a mission-only command is used elsewhere.
|
static java.lang.String |
ERROR_SIMULATION_ONLY
The error message displayed by core commands when a simulation-only command is used elsewhere.
|
static java.lang.String |
INPUT_QUERY
The message the console shows when it's first summoned.
|
static java.lang.String |
MOD_ID
The ID of this mod as defined in mod_info.json, used for loading commands.
|
static java.lang.String |
PATH_COMMON_DATA
The path to the config file in common data, automatically generated via the Settings command.
|
static java.lang.String |
PATH_CSV
The path to commands.csv, used for loading commands.
|
static java.lang.String |
PATH_LISTENER_CSV
The path to command_listeners.csv, used for listening for and intercepting input.
|
static java.lang.String |
PATH_RUNCODE_CSV
The path to runcode_imports.csv, used for setting custom imports for the RunCode command.
|
static java.lang.String |
PATH_RUNCODE_MACROS
The path to runcode_macros.csv, used for setting custom macros for the RunCode command.
|
static java.lang.String |
PATH_SETTINGS
The path to console_settings.csv.
|
public static java.lang.String MOD_ID
The ID of this mod as defined in mod_info.json, used for loading commands.
public static java.lang.String PATH_SETTINGS
The path to console_settings.csv.
public static java.lang.String PATH_CSV
The path to commands.csv, used for loading commands.
public static java.lang.String PATH_COMMON_DATA
The path to the config file in common data, automatically generated via the Settings command.
public static java.lang.String PATH_RUNCODE_CSV
The path to runcode_imports.csv, used for setting custom imports for the RunCode command.
public static java.lang.String PATH_RUNCODE_MACROS
The path to runcode_macros.csv, used for setting custom macros for the RunCode command.
public static java.lang.String PATH_LISTENER_CSV
The path to command_listeners.csv, used for listening for and intercepting input.
public static java.lang.String INPUT_QUERY
The message the console shows when it's first summoned.
public static java.lang.String ERROR_CAMPAIGN_ONLY
The error message displayed by core commands when a campaign-only command is used elsewhere.
public static java.lang.String ERROR_MARKET_ONLY
The error message displayed by core commands when a market-only command is used elsewhere.
public static java.lang.String ERROR_COMBAT_ONLY
The error message displayed by core commands when a combat-only command is used elsewhere.
public static java.lang.String ERROR_MISSION_ONLY
The error message displayed by core commands when a mission-only command is used elsewhere.
public static java.lang.String ERROR_SIMULATION_ONLY
The error message displayed by core commands when a simulation-only command is used elsewhere.
public static java.lang.String DATA_PREFIX
A recommended prefix for keys in sector persistent data to avoid collision with any existing keys.
public static java.lang.String DATA_HOME_ID
The persistent data ID of the SectorEntityToken used by the Home command.
public static java.lang.String DATA_STORAGE_ID
The persistent data ID of the SectorEntityToken used by the Storage command.