Advertisement
Guest User

Untitled

a guest
Nov 15th, 2017
2,218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. # Minecraft Console Client
  2. # ScriptScheduler Tasks
  3. # Example config file
  4.  
  5. # Structure of a task: [Task] Followed by triggers and other settings.
  6. # The example below contains all the possible fields for a task
  7. # Time is HH:mm format, several different hours can be provided
  8.  
  9. [Task]
  10. triggerOnFirstLogin=true
  11. triggerOnLogin=true
  12. triggerOnTime=false
  13. triggerOnInterval=true
  14. timeValue=19:30
  15. timeValue=08:10
  16. timeInterval=600
  17. script=reconnect.txt
  18.  
  19. # Another minimal example: some properties may be omitted
  20. # This is highly recommended for improving task readability
  21.  
  22. [Task]
  23. triggerOnFirstLogin=false
  24. script=script.txt
  25.  
  26. # Of course, the tasks file can contain as much tasks as you want.
  27. # Another example tiggered on logging in and every night at midnight:
  28.  
  29. [Task]
  30. triggerOnLogin=true
  31. triggerOnTime=false
  32. timeValue=00:00
  33. script=script.txt
  34.  
  35. # Example of task occuring every 30 seconds
  36. # Could be used for making a custom antiAFK procedure
  37.  
  38. [Task]
  39. triggerOnInterval=true
  40. timeInterval=600
  41. script=reconnect.txt
  42.  
  43. # Enjoy!
  44. # - ORelio
  45.  
  46. #Minecraft Console Client v1.8.2
  47. #Startup Config File
  48.  
  49. [Main]
  50.  
  51. #General settings
  52. #leave blank to prompt user on startup
  53. #Use "-" as password for offline mode
  54.  
  55. login=redmike.rice@gmail.com
  56. password=coopaccount64!
  57. serverip=cosmicprisons.com
  58. #Advanced settings
  59.  
  60. language=en_GB
  61. botowners=Player1,Player2,Player3
  62. consoletitle=%username% - Minecraft Console Client
  63. internalcmdchar=slash #use 'none', 'slash' or 'backslash'
  64. mcversion=1.8.0 #use 'auto' or '1.X.X' values
  65. chatbotlogfile= #leave empty for no logfile
  66. accountlist=accounts.txt
  67. serverlist=servers.txt
  68. playerheadicon=true
  69. exitonfailure=false
  70. timestamps=false
  71.  
  72. [AppVars]
  73. #yourvar=yourvalue
  74. #can be used in some other fields as %yourvar%
  75. #%username% and %serverip% are reserved variables.
  76.  
  77. [Proxy]
  78. enabled=false
  79. type=HTTP #Supported types: HTTP, SOCKS4, SOCKS4a, SOCKS5
  80. server=0.0.0.0:0000
  81. username=
  82. password=
  83.  
  84. #Bot Settings
  85.  
  86. [Alerts]
  87. enabled=false
  88. alertsfile=alerts.txt
  89. excludesfile=alerts-exclude.txt
  90. beeponalert=true
  91.  
  92. [AntiAFK]
  93. enabled=false
  94. delay=300 #10 = 1s
  95. command=reconnect.txt
  96.  
  97. [AutoRelog]
  98. enabled=true
  99. delay=10
  100. retries=-1 #-1 = unlimited
  101. kickmessagesfile=kickmessages.txt
  102.  
  103. [ChatLog]
  104. enabled=false
  105. timestamps=true
  106. filter=messages
  107. logfile=chatlog-%username%-%serverip%.txt
  108.  
  109. [Hangman]
  110. enabled=false
  111. english=true
  112. wordsfile=hangman-en.txt
  113. fichiermots=hangman-fr.txt
  114.  
  115. [ScriptScheduler]
  116. enabled=true
  117. tasksfile=tasks.ini
  118.  
  119. [RemoteControl]
  120. enabled=false
  121. autotpaccept=false
  122. tpaccepteveryone=false
  123.  
  124. # This is a sample script for Minecraft Console Client
  125. # Any line beginning with "#" is ignored and treated as a comment.
  126. # Allowed instructions: see README file for an updated list of instructions.
  127.  
  128. send /l
  129. wait 20
  130. send /join 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement