mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Add more comments in default MinecraftClient INI file
This commit is contained in:
parent
e347ed7eb4
commit
6c711055bd
1 changed files with 24 additions and 23 deletions
|
|
@ -539,15 +539,15 @@ namespace MinecraftClient
|
|||
+ "showxpbarmessages=true # Messages displayed above xp bar\r\n"
|
||||
+ "showchatlinks=true # Show links embedded in chat messages\r\n"
|
||||
+ "terrainandmovements=false # Uses more ram, cpu, bandwidth\r\n"
|
||||
+ "sessioncache=memory # Use 'none', 'memory' or 'disk' (disk is experimental)\r\n"
|
||||
+ "sessioncache=memory # Use 'none', 'memory' or 'disk' (disk session storing is experimental)\r\n"
|
||||
+ "resolvesrvrecords=fast # Use 'false', 'fast' (5s timeout), or 'true'. Required for joining some servers.\r\n"
|
||||
+ "accountlist=accounts.txt\r\n"
|
||||
+ "serverlist=servers.txt\r\n"
|
||||
+ "playerheadicon=true\r\n"
|
||||
+ "exitonfailure=false\r\n"
|
||||
+ "debugmessages=false\r\n"
|
||||
+ "scriptcache=true\r\n"
|
||||
+ "timestamps=false\r\n"
|
||||
+ "accountlist=accounts.txt # See README > 'Servers and Accounts file' for more info about this file\r\n"
|
||||
+ "serverlist=servers.txt # See README > 'Servers and Accounts file' for more info about this file\r\n"
|
||||
+ "playerheadicon=true # Only works on Windows XP-8 or Windows 10 with old console\r\n"
|
||||
+ "exitonfailure=false # Disable pauses on error, for using MCC in non-interactive scripts\r\n"
|
||||
+ "debugmessages=false # Please enable this before submitting bug reports. Thanks!\r\n"
|
||||
+ "scriptcache=true # Cache compiled scripts for faster load on low-end devices\r\n"
|
||||
+ "timestamps=false # Prepend timestamps to chat messages\r\n"
|
||||
+ "\r\n"
|
||||
+ "[AppVars]\r\n"
|
||||
+ "# yourvar=yourvalue\r\n"
|
||||
|
|
@ -557,22 +557,23 @@ namespace MinecraftClient
|
|||
+ "[Proxy]\r\n"
|
||||
+ "enabled=false # Use 'false', 'true', or 'login' for login only\r\n"
|
||||
+ "type=HTTP # Supported types: HTTP, SOCKS4, SOCKS4a, SOCKS5\r\n"
|
||||
+ "server=0.0.0.0:0000\r\n"
|
||||
+ "username=\r\n"
|
||||
+ "password=\r\n"
|
||||
+ "server=0.0.0.0:0000 # Proxy server must allow HTTPS for login, and non-443 ports for playing\r\n"
|
||||
+ "username= # Only required for password-protected proxies\r\n"
|
||||
+ "password= # Only required for password-protected proxies\r\n"
|
||||
+ "\r\n"
|
||||
+ "[ChatFormat]\r\n"
|
||||
+ "builtins=true # Support for common message formats\r\n"
|
||||
+ "# public=^<([a-zA-Z0-9_]+)> (.+)$ # Uncomment and adapt if necessary\r\n"
|
||||
+ "# private=^([a-zA-Z0-9_]+) whispers to you: (.+)$ # Vanilla private message example\r\n"
|
||||
+ "# Do not forget to uncomment (remove '#') these settings if modifying them\r\n"
|
||||
+ "builtins=true # MCC built-in support for common message formats\r\n"
|
||||
+ "# public=^<([a-zA-Z0-9_]+)> (.+)$\r\n"
|
||||
+ "# private=^([a-zA-Z0-9_]+) whispers to you: (.+)$\r\n"
|
||||
+ "# tprequest=^([a-zA-Z0-9_]+) has requested (?:to|that you) teleport to (?:you|them)\\.$\r\n"
|
||||
+ "\r\n"
|
||||
+ "[MCSettings]\r\n"
|
||||
+ "enabled=true # If disabled, client settings are not sent to the server\r\n"
|
||||
+ "enabled=true # If disabled, settings below are not sent to the server\r\n"
|
||||
+ "locale=en_US # Use any language implemented in Minecraft\r\n"
|
||||
+ "renderdistance=medium # tiny, short, medium, far, or chunk amount [0 - 255]\r\n"
|
||||
+ "renderdistance=medium # Use tiny, short, medium, far, or chunk amount [0 - 255]\r\n"
|
||||
+ "difficulty=normal # MC 1.7- difficulty. peaceful, easy, normal, difficult\r\n"
|
||||
+ "chatmode=enabled # enabled, commands, disabled. Allows to mute yourself...\r\n"
|
||||
+ "chatmode=enabled # Use 'enabled', 'commands', or 'disabled'. Allows to mute yourself...\r\n"
|
||||
+ "chatcolors=true # Allows disabling chat colors server-side\r\n"
|
||||
+ "main_hand=left # MC 1.9+ main hand. left or right\r\n"
|
||||
+ "skin_cape=true\r\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue