Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.53 KB | None | 0 0
  1. ## To create a custom config for a mod create a file with the same name
  2. ## as the jar file and append ".conf", for craftbukkit this would be
  3. ## "craftbukkit.jar.conf".
  4. ## The following config is an example that lists all possible options,
  5. ## without actually changing anything (it remaps the commands on
  6. ## themselves)
  7. ##
  8. ## General configuration. If this contains a setting called "file" the
  9. ## [commands], [start] and [parse_*] sections will be loaded from this
  10. ## other file
  11. [config]
  12. ## The name as displayed in the panel, leave empty to hide
  13. name = Mod: Thermos 1.7.10 1614
  14. ## Where to download the JAR file from
  15. source = https://github.com/CyberdyneCC/Thermos/releases/download/57/Thermos-1.7.10-1614-server.jar
  16. ## Where to download this file from (will overwrite this file with the downloaded one)
  17. configSource = http://oasiscraft.org/downloads/multicraft/conf/Thermos.jar.conf
  18. ## Sections of this file that may be overridden by .conf files in the server directory
  19. #safeConfSections = ^(encoding|commands|parse_.+)$
  20.  
  21. ## Encoding used for strings sent to and received from the server
  22. [encoding]
  23. ## The encoding to use to send data to the Minecraft process
  24. ## Use "system" for your current locale.
  25. ## default: system
  26. encode = utf-8
  27. ## The encoding to use to decode data received from the Minecraft process
  28. ## Use "system" for your current locale.
  29. ## default: system
  30. decode = utf-8
  31. ## The encoding used when reading/writing configuration files such as
  32. ## the server.properties
  33. ## default: latin-1
  34. fileEncoding = latin-1
  35.  
  36.  
  37. ## Command line customization.
  38. ## Available variables
  39. ## - {MULTICRAFT_DIR} The Multicraft daemon base directory
  40. ## - {BASE_DIR} Same as {MULTICRAFT_DIR}
  41. ## - {DAEMON_DIR} Directory of the daemon binaries
  42. ## - {DATA_DIR} Global.daemon.dataDir
  43. ## - {JAR_DIR} Daemon JAR directory
  44. ## - {SERVERS_DIR} Directory containing all servers
  45. ## - {SERVER_ID} Current server ID
  46. ## - {SERVER_DIR} Current server base directory
  47. ## - {WORLD} Name of the current world
  48. ## - {JAVA} Java executable to run
  49. ## - {START_MEMORY} Startup memory amount
  50. ## - {MAX_MEMORY} Maximum memory amount
  51. ## - {JAR_FILE} Current JAR file name
  52. ## - {JAR} Full path to current JAR file
  53. ## - {IP} Server IP
  54. ## - {PORT} Server port
  55. ## - {MAX_PLAYERS} Maximum player slots
  56. ## - {DAEMON_ID} Daemon ID
  57. ## - {PID} Process ID of the server process
  58. ## - {PID_FILE} File containing the PID of the server process
  59. ## - {USER} User the server will run as
  60. ## - {GROUP} Group the server will run as
  61. ## - {UID} User system ID
  62. ## - {GID} Group system ID
  63. [start]
  64. command = "{JAVA}" -server -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+AggressiveOpts -Xmn256M -Xmx{MAX_MEMORY}M -Xms{START_MEMORY}M -XX:MaxPermSize=128M -Djline.terminal=jline.UnsupportedTerminal -jar "{JAR}" nogui
  65.  
  66.  
  67. [settings]
  68. ## Restart the server when it doesn't respond to pings anymore
  69. #restartOnTimeout = True
  70. ## The server log file
  71. logFile = logs/latest.log
  72. ## Ignore console output and parse log file instead
  73. followLog = True
  74. ## Only used if followLog is true, the interval in milliseconds at
  75. ## which to check the log file for new content
  76. logCheckInterval = 500
  77. ## Rotate the log every X bytes
  78. #logRotateSize =
  79. ## Use special method to rotate log, use this if normal rename rotation doesn't work
  80. #logPersistent = False
  81. ## Maximum number of logs to keep
  82. #logBackupCount = 5
  83. ## Advanced: Read at most X bytes from the file at a time
  84. #logMaxRead = 4096
  85. ## Check every X milliseconds if the log needs to be rotated
  86. #logRotateCheckInterval = 20000
  87. ## Print every line received from the server
  88. #debugRawLine = False
  89. ## Print every line after cleanup
  90. #debugCleanLine = False
  91. ## Print every line after the first parse pass
  92. #debugParseLine = False
  93. ## Use the Multicraft launcher to wrap the gameserver (simulates a real command line)
  94. #useLauncher = False
  95. ## Assume Minecraft is still running override (0: Known console output, 1: "List" command output, 2: Any console output)
  96. pongMode = 2
  97. ## Minecraft response timeout override (milliseconds)
  98. pingTimeout = 200000
  99. ## Minecraft pint interval override (milliseconds)
  100. pingInterval = 300000
  101. ## Minecraft crash restart delay overrice (milliseconds)
  102. #crashRestartDelay = 2000
  103. ## Console output rate limit override
  104. #rateLimit = 30
  105. ## Autosave interval overrice (milliseconds)
  106. #saveInterval = 600000
  107. ## Player info save method override (0: Never Save, 1: Update Existing, 2: Always Save)
  108. #savePlayerInfo = 1
  109. ## Print server setting information
  110. #debugSettings = False
  111. ## Restart the server after a crash or unexpected exit
  112. #restartOnCrash = False
  113. ## Print line parser information
  114. #debugParse = False
  115.  
  116.  
  117. ## Plugin configuration
  118. [plugins]
  119. pluginDir = plugins
  120. pluginMatch = \.(jar|zip)$
  121.  
  122.  
  123. ## Command remapping
  124. [commands]
  125. say = say
  126. list = list
  127. save-on = save-on
  128. save-off = save-off
  129. save-all = save-all
  130. stop = stop
  131. tell = tell
  132. give = give
  133. tp = tp
  134. deop = deop
  135. op = op
  136. pardon-ip = pardon-ip
  137. ban-ip = ban-ip
  138. pardon = pardon
  139. ban = ban
  140. kick = kick
  141. help = help
  142.  
  143.  
  144. ## Console output parsing can be completely customized to support
  145. ## any format (and theoretically any game). Please contact us if you require this.
  146.  
  147. [parse_startup]
  148. start1=^\s*Listening on
  149.  
  150. [parse_log]
  151. start=^(?P<time>(:?[-\d]+ )?\[?[:\d]+\]?)\s+\[?(?P<type>[^]]+)\]\:?\s+(:?\[[^]]+\]\s+)?(?P<line>.*)$
  152.  
  153. [parse_connect]
  154. shortStart=logged in with entity id \d+ at
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement