Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.86 KB | None | 0 0
  1. # Thank you so much for purchasing my plugin,
  2. # it really means a lot to me!
  3. # _ _ __ __
  4. # | | | | \ \ / /
  5. # ___ __ _ _ __ | |_ ___ | |__ __ _ \ V /
  6. # / __| / _` || '_ \ | __| / __|| '_ \ / _` | / \
  7. # | (__ | (_| || |_) || |_ | (__ | | | || (_| |/ /^\ \
  8. # \___| \__,_|| .__/ \__| \___||_| |_| \__,_|\/ \/
  9. # | |
  10. # |_|
  11. #
  12. # This is a file to help you configure settings to your likings. It is recommended
  13. # to leave everything as it is, but, if you know what you're doing, feel free to change
  14. # it. If you do not understand what something does, please leave it as it is and ask for help
  15.  
  16. languageFile: "en_US" #The language file that should be used. Use the file name without .yml in /lang/ plugins folder
  17. prefix: "&7[&6Captcha&7]" #The prefix that is then replaced in the language file by %prefix%
  18.  
  19. updateChecker: true #Specifies whether or not the update checker should work. If set to false, your server will start up faster
  20. actionbar: false #Defines if actionbar should be used for captcha instructions instead of chat
  21. debug: false #If set to true, everything that is happening and is related to the plugin will be logged in the console
  22. notifyOnFailComplete: false #Should players with the permission captcha.notify be notified when a player fails or completes a captcha?
  23.  
  24. solveTime: 25 #The amount of time in seconds before a player gets kicked for not solving the captcha
  25. saveUsersEvery: 60 #Every how many minutes should users be saved on the files to prevent data loss on crashes?
  26. delay: 0 #Delay the captcha on join, you might want this in order to appear after other messages sent.
  27.  
  28. hooks: #A list of plugins that can hook on my this plugin. You can enable/disable each one depending on your needs.
  29. authme: false
  30.  
  31. kickMessages: #Messages for when players are kicked through this plugin
  32. restart: "&6Captcha &f>> &7The server has restarted"
  33. locked: "&6Captcha &f>> &7Too many players are joining at the same time"
  34. vpn: "&6Captcha &f>> &7VPNs or proxies are not allowed in this server"
  35. ip: "&6Captcha &f>> &7You can only have online up to &f3 &7accounts at the same time"
  36.  
  37. antibot: #A variety of features to prevent bot attacks on your server
  38. joinLimiter: #Limits the connection of players to the server per a specified amount of seconds
  39. enabled: true
  40. seconds: 2
  41. players: 1
  42. ipLimiter: #Limits the same ips that can be online at the same time
  43. enabled: true
  44. limit: 3
  45. antivpn: #Blocks any VPN or proxy connection, it is recommended that it's turned off but you decide
  46. enabled: false
  47.  
  48. captchaItem: #The item given in drop captcha and map captcha
  49. name: "&6Captcha" #The name of the item
  50. slot: 0 #The slot the item should be added
  51.  
  52. whileOnCaptcha: #Which events should be cancelled when someone has still not verified himself
  53. blockMovement: true
  54. blockInteraction: true
  55. blockItemDrop: true
  56. blockBlockPlacement: true
  57. blockBlockBreaking: true
  58. blockDamage: true
  59. blockInventoryMovement: true
  60. blockCommands: true #There is a list below where you can whitelist commands
  61. blockChatReceiving: true #Block the player from receiving chat messages
  62.  
  63. onCaptchaSuccess: #A list of actions you can do once a player passes the captcha test
  64. - "consolecmd give %player% diamond"
  65. #- "sendtobungee hub" #If that is un-commented, the user will be sent to the specified bungeecord server
  66.  
  67. onCaptchaFail: #A list of actions you can do if a player fails the test
  68. - "consolecmd kick %player% &6Captcha >> &7You failed the captcha test"
  69.  
  70. onCaptchaInactivity:
  71. - "consolecmd kick %player% &6Captcha >> &7You should have solved the captcha"
  72.  
  73. whitelistedCommands:
  74. - "/login"
  75. - "/help"
  76. - "/captcha"
  77.  
  78. captchas: #A list of all the captchas with options about them
  79. map:
  80. enabled: true
  81. blur: false
  82. lines: 50
  83. linesColor: BLACK
  84. textColor: RED
  85. gui:
  86. enabled: true
  87. title: "Click on the &6%item%"
  88. slots: 27
  89. different:
  90. enabled: true
  91. title: "Click on the different item"
  92. sameItem: REDSTONE_BLOCK
  93. differentItem: EMERALD_BLOCK
  94. slots: 9
  95. equation:
  96. enabled: true
  97. difficulty: EASY #This changes the number, so, higher difficulty is higher numbers. You can use [EASY, MEDIUM, HARD]
  98. order:
  99. enabled: true
  100. amount: 3 #The amount of numbers the player will have to order. Either from lower to higher or visa versa
  101. picture: #Head over to /pictures/ and add your images. The name of the image, without it's extension will be used as a code
  102. enabled: true
  103. code:
  104. enabled: true
  105. color:
  106. enabled: true
  107. sneak:
  108. enabled: true
  109. jump:
  110. enabled: true
  111. drop:
  112. enabled: true
  113. item: APPLE
  114. slot:
  115. enabled: true
  116. reverse:
  117. enabled: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement