captcha.yml

settings:
  trigger:
    # Min cane required before the cane captcha will trigger.
    min-cane: 500
    # Min time player has been farming for. (Seconds)
    min-time: 60
    # Min time since last action, so players don't get captcha'd after warping etc. (Seconds)
    min-time-since-last-action: 5
    # Randomization Factor percentage (don't touch unless you understand)
    # Random number is selected between 0 - 10000. Number has to be less then
    # percentage below to trigger. Lower number, more likely to trigger closer to
    # meeting all other requirements.
    random: 40
    # Max watch time (seconds)
    # How long after last action should we clear them?
    clear: 240
  whitelist:
    # How long is a player safe for after completing a captcha (minutes)
    duration: 10
    remove-on-relog: true
  punishment:
    # Command that gets executed to remove player who failed captcha
    fail-action: 'kick {player} Failed Cane Captcha (3 Failed Attempts) -s'
    # How many times can you fail before getting kicked.
    fail-before-kick: 3
    # Command that gets executed to remove player who failed captcha threshold amount of times.
    blacklist-action: "ban {player} 20m Failed to complete Cane Captcha (5/5 Times) -s"
    # Amount of times you can fail a captcha before being banned.
    fail-before-blacklist: 5
  captcha:
    menu:
      title: '&cFind the Correct Item! [CAPTCHA]'
      # Item Settings for menu filler items.
      filler:
        Display-Name: ''
        Type: BlACK_STAINED_GLASS_PANE
        Enchanted: false
        Lore:
        - ' '
      # Item Settings for detector Items.
      item:
        Enchanted: false
        Display-Name: '&cFind The Item!'
        Lore:
        - ' '
        - ' &cPlease Click the {correct}'
        - ' '

Last updated