Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.26 KB | None | 0 0
  1. # JTS3ServerMod Instance Manager config file
  2. #
  3. # Each bot instance need:
  4. # X.instance_enable
  5. # X.instance_name
  6. # X.instance_config_path
  7. #
  8. # Optional:
  9. # X.instance_logfile_path
  10. # X.instance_csvloginlog_path
  11. # X.instance_debug = 1
  12. #
  13. # For X use a number starting from 1. Make sure that you have not more than 10 missing numbers between the instances.
  14. # At least one enabled instance is needed or the bot process will stop after starting.
  15. #
  16. # This file must be saved with the encoding ISO-8859-1!
  17.  
  18. # A comma seperated list (without spaces) of unique user ids,
  19. # which should be able to use bot full admin commands on all bot instances.
  20. # Bot full admin can also see the TS3 server password and is able to use the !exec command.
  21. # The unique user ids looks like this: mBbHRXwDAG7R19Rv3PorhMwbZW4=
  22. bot_fulladmin_list = OleFvKPpfJKMOxeYi6C/5lnTUCQ=
  23. # Allow !exec and !execwait commands for bot full admins? 1 = Yes, 0 = No
  24. # This allow you to execute system commands.
  25. # Only use !execwait for commands which quits within some seconds,
  26. # because the bot waits for the end of this command to send you the text output of the program.
  27. # Use !exec for commands with a longer runtime instead,
  28. # this command don't send you any text output, because the bot don't wait for it.
  29. bot_command_exec = 0
  30. # Every time a bot full admin connects to the TS3 server it will be checked if an update for the JTS3ServerMod is available.
  31. # If an update is available, a chat message will be sent to the bot full admin.
  32. # 0 = disable, 1 = final versions, 2 = final and test versions
  33. bot_update_check = 0
  34. # The own personal licence key.
  35. # Read the instructions, to know how to get one, at the download page of the JTS3ServerMod Hosting Edition.
  36. bot_licence_key = JTS3SMHE-2BMHE-1e5c63420f1d6be17e0adbf41c37ee390e412a05f8a330fd57063bc269c3a528
  37. # Add a small delay in milliseconds to the bot starting process.
  38. # Only change this value if you have problems starting all bots at once, like hanging bot threads.
  39. delay_bot_start = 100
  40.  
  41. # Enable the multi IP mode. 1 = Enable, 0 = Disable
  42. # If slow mode is activated, this feature split bot connections to the Teamspeak 3 servers.
  43. # Events (Chat and some functions) and the Client Database Cache gets an own connection which should solve the IP ban problem.
  44. multiipmode_enable = 0
  45. # Local IP Address of the main connection, make sure that this is not the same as for chat and cache!
  46. multiipmode_ip_main = 123.123.123.123
  47. # Local IP Address of the chat connection, make sure that this is not the same as for main and cache!
  48. multiipmode_ip_chat = 124.124.124.124
  49. # Local IP Address of the cache connection, make sure that this is not the same as for chat and main!
  50. multiipmode_ip_cache = 125.125.125.125
  51. # First local port
  52. multiipmode_portrange_min = 50000
  53. # Last local port
  54. # Make sure, that you have at least 3 ports for every bot, which use the slow mode!
  55. multiipmode_portrange_max = 51999
  56.  
  57. # Enable the Query Interface of the JTS3ServerMod. 1 = Enable, 0 = Disable
  58. # You are able to start, stop or reload a virtual bot instance using this Query Interface.
  59. telnet_enable = 1
  60. # Choose a port for the Query Interface, default port is 5873.
  61. telnet_port = 5873
  62. # Choose a password for the Query Interface.
  63. # If this password is shorter than 6 characters, the Query Interface will be disabled!
  64. telnet_password = Ug/gxq0y?]q[2g9e5![k
  65. # Choose a network interface for the Query Interface. Only set a single ip address of a local network interface here.
  66. # Set nothing here to bound the Query Interface to all network interfaces (default).
  67. # Example: Set to 127.0.0.1 (IPv4) or ::1 (IPv6) to allow connections only from localhost.
  68. telnet_bindTo = 127.0.0.
  69. # A comma seperated list (without spaces) of IP addresses, which are allowed to connect to the Query Interface.
  70. # Leave empty, if every IP address is allowed to connect.
  71. telnet_whitelist = 127.0.0.1
  72. # Log query connection attempts to logfile? 1 = Enable, 0 = Disable
  73. telnet_connection_log = 1
  74. # Enable this to prevent that the JTS3ServerMod process quits if no bot instances are running. 1 = Enable, 0 = Disable
  75. # You can still quit the process with !botquit in TS3 client chat or with botquit on the Query Interface.
  76. telnet_run_forever = 1
  77.  
  78. # Use a MySQL database to save bot instances and configurations. 1 = Enable, 0 = Disable
  79. # There should be a structure sql file in the documents directory.
  80. # Import this into your MySQL database to create the tables (the included web interface do this already for you).
  81. # But you must fill this tables by yourself, the bot just reads the information out there.
  82. mysql_enable = 1
  83. mysql_host = 127.0.0.1
  84. mysql_port = 3306
  85. mysql_user = JTS3
  86. mysql_password = Xaucz0z76vv813o4dusv
  87. mysql_database = JTS3
  88.  
  89. # Optional MySQL settings, more information on https://dev.mysql.com/doc/connector-j/en/connector-j-reference-configuration-properties.html
  90. # Possible values: -1 = default, 0 = disable, 1 = enable
  91. mysql_verifyServerCertificate = -1
  92. mysql_useSSL = -1
  93. mysql_requireSSL = -1
  94. mysql_useCompression = -1
  95.  
  96. # Normal log entries older than X days will be deleted from MySQL jts3servermod_log table. 0 = disable auto delete!
  97. mysql_log_delete = 0
  98. # Connection log entries older than X days will be deleted from MySQL jts3servermod_log table. 0 = disable auto delete!
  99. mysql_connection_log_delete = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement