Package net.minecraft.src
Interface IServer
- All Known Implementing Classes:
DedicatedServer
public interface IServer
-
Method Summary
Modifier and TypeMethodDescriptionexecuteCommand(String var1) String[]Returns an array of the usernames of all the connected players.intReturns the number of players currently on the server.Returns the server's hostname.intgetIntProperty(String var1, int var2) Gets an integer property.intReturns the maximum number of players allowed on the server.Returns the server's Minecraft version as string.getMotd()Returns the server message of the dayUsed by RCon's Query in the form of "MajorServerMod 1.2.3: MyPlugin 1.3; AnotherPlugin 2.1; AndSoForth 1.0".intgetPort()Never used, but "getServerPort" is already taken.Returns the filename where server properties are storedgetStringProperty(String var1, String var2) Gets a string property.booleanReturns true if debugging is enabled, false otherwise.voidIf isDebuggingEnabled(), logs the message with a level of INFO.voidLogs the message with a level of INFO.voidLogs the error message with a level of SEVERE.voidlogWarning(String var1) Logs the message with a level of WARN.voidSaves all of the server properties to the properties file.voidsetProperty(String var1, Object var2) Saves an Object with the given property name.
-
Method Details
-
getIntProperty
Gets an integer property. If it does not exist, set it to the specified value. -
getStringProperty
Gets a string property. If it does not exist, set it to the specified value. -
setProperty
Saves an Object with the given property name. -
saveProperties
void saveProperties()Saves all of the server properties to the properties file. -
getSettingsFilename
String getSettingsFilename()Returns the filename where server properties are stored -
getHostname
String getHostname()Returns the server's hostname. -
getPort
int getPort()Never used, but "getServerPort" is already taken. -
getMotd
String getMotd()Returns the server message of the day -
getMinecraftVersion
String getMinecraftVersion()Returns the server's Minecraft version as string. -
getCurrentPlayerCount
int getCurrentPlayerCount()Returns the number of players currently on the server. -
getMaxPlayers
int getMaxPlayers()Returns the maximum number of players allowed on the server. -
getAllUsernames
String[] getAllUsernames()Returns an array of the usernames of all the connected players. -
getFolderName
String getFolderName() -
getPlugins
String getPlugins()Used by RCon's Query in the form of "MajorServerMod 1.2.3: MyPlugin 1.3; AnotherPlugin 2.1; AndSoForth 1.0". -
executeCommand
-
isDebuggingEnabled
boolean isDebuggingEnabled()Returns true if debugging is enabled, false otherwise. -
logInfo
Logs the message with a level of INFO. -
logWarning
Logs the message with a level of WARN. -
logSevere
Logs the error message with a level of SEVERE. -
logDebug
If isDebuggingEnabled(), logs the message with a level of INFO.
-