Advertisement
Guest User

help

a guest
Dec 29th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. #Minecraft Console Client v1.9.0
  2. #Startup Config File
  3.  
  4. [Main]
  5.  
  6. #General settings
  7. #leave blank to prompt user on startup
  8. #Use "-" as password for offline mode
  9.  
  10. login=
  11. password=
  12. serverip=
  13.  
  14. #Advanced settings
  15.  
  16. language=en_GB
  17. botowners=Player1,Player2,Player3
  18. consoletitle=%username%@%serverip% - Minecraft Console Client
  19. internalcmdchar=slash #use 'none', 'slash' or 'backslash'
  20. splitmessagedelay=2 #seconds between each part of a long message
  21. botmessagedelay=2 #seconds to delay between message a bot makes to avoid accidental spam
  22. mcversion=1.8.0 #use 'auto' or '1.X.X' values
  23. brandinfo=mcc #use 'mcc','vanilla', or 'none'
  24. chatbotlogfile= #leave empty for no logfile
  25. privatemsgscmdname=tell #used by RemoteControl bot
  26. showsystemmessages=true #system messages for server ops
  27. showxpbarmessages=true #messages displayed above xp bar
  28. terrainandmovements=true #uses more ram, cpu, bandwidth
  29. sessioncache=memory #use 'none', 'memory' or 'disk'
  30. accountlist=accounts.txt
  31. serverlist=servers.txt
  32. playerheadicon=true
  33. exitonfailure=false
  34. debugmessages=false
  35. scriptcache=true
  36. timestamps=false
  37.  
  38. [AppVars]
  39. #yourvar=yourvalue
  40. #can be used in some other fields as %yourvar%
  41. #%username% and %serverip% are reserved variables.
  42.  
  43. [Proxy]
  44. enabled=false #use 'false', 'true', or 'login' for login only
  45. type=HTTP #Supported types: HTTP, SOCKS4, SOCKS4a, SOCKS5
  46. server=0.0.0.0:0000
  47. username=
  48. password=
  49.  
  50. [ChatFormat]
  51. builtins=true #support for handling vanilla and common message formats
  52. #public=^<([a-zA-Z0-9_]+)> (.+)$ #uncomment and adapt if necessary
  53. #private=^([a-zA-Z0-9_]+) whispers to you: (.+)$ #vanilla example
  54. #tprequest=^([a-zA-Z0-9_]+) has requested (?:to|that you) teleport to (?:you|them)\.$
  55.  
  56. #Bot Settings
  57.  
  58. [Alerts]
  59. enabled=false
  60. alertsfile=alerts.txt
  61. excludesfile=alerts-exclude.txt
  62. beeponalert=true
  63.  
  64. [AntiAFK]
  65. enabled=true
  66. delay=600 #10 = 1s
  67. command=move north
  68. command=/Server Skeleton
  69.  
  70. [AutoRelog]
  71. enabled=true
  72. delay=10
  73. retries=3 #-1 = unlimited
  74. kickmessagesfile=kickmessages.txt
  75.  
  76. [ChatLog]
  77. enabled=false
  78. timestamps=true
  79. filter=messages
  80. logfile=chatlog-%username%-%serverip%.txt
  81.  
  82. [Hangman]
  83. enabled=false
  84. english=true
  85. wordsfile=hangman-en.txt
  86. fichiermots=hangman-fr.txt
  87.  
  88. [ScriptScheduler]
  89. enabled=false
  90. tasksfile=tasks.ini
  91.  
  92. [RemoteControl]
  93. enabled=false
  94. autotpaccept=true
  95. tpaccepteveryone=false
  96.  
  97. [AutoRespond]
  98. enabled=false
  99. matchesfile=matches.ini
  100.  
  101. Task.ini
  102.  
  103. # Minecraft Console Client
  104. # ScriptScheduler Tasks
  105. # Example config file
  106.  
  107. # Structure of a task: [Task] Followed by triggers and other settings.
  108. # The example below contains all the possible fields for a task
  109. # Time is HH:mm format, several different hours can be provided
  110.  
  111. [Task]
  112. triggerOnFirstLogin=false
  113. triggerOnLogin=false
  114. triggerOnTime=true
  115. triggerOnInterval=false
  116. timeValue=19:30
  117. timeValue=08:10
  118. timeInterval=0
  119. script=event.txt
  120.  
  121. # Another minimal example: some properties may be omitted
  122. # This is highly recommended for improving task readability
  123.  
  124. [Task]
  125. triggerOnFirstLogin=true
  126. script=startup.txt
  127.  
  128. # Of course, the tasks file can contain as much tasks as you want.
  129. # Another example tiggered on logging in and every night at midnight:
  130.  
  131. [Task]
  132. triggerOnLogin=true
  133. triggerOnTime=true
  134. timeValue=00:00
  135. script=midnight.txt
  136.  
  137. # Example of task occuring every 30 seconds
  138. # Could be used for making a custom antiAFK procedure
  139.  
  140. [Task]
  141. triggerOnInterval=true
  142. timeInterval=30
  143. script=afk.txt
  144.  
  145. # Enjoy!
  146. # - ORelio
  147.  
  148. afk.txt
  149. /move south
  150. /move north
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement