Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. # Before even hitting our block lists we'll have players
  2. # prove that they are indeed a player. They'll have to type
  3. # out a code that we send them after they attempt a command. Then
  4. # they'll be allowed to use commands for a while until they need
  5. # to revalidate themselves. (which is something you may change below)
  6. captcha:
  7. # Whether or not this is enabled
  8. # Set to `false` to disable
  9. use: true
  10.  
  11. # When we send you the code you have
  12. # this amount of time to type it out
  13. # Keep in mind that this is in seconds
  14. validation-grace: 20
  15.  
  16. # After succesfully completing a captcha
  17. # you'll need to revalidate yourself this
  18. # many minutes later. By default I set it
  19. # to an hour.
  20. renew-delay: 60
  21.  
  22. message:
  23. # When the player gets their specific captcha code
  24. # for the first time they're sent this mesage w/ the code
  25. #
  26. # Valid placeholders:
  27. # player: The player's username
  28. # code: The player's captcha code
  29. send: "&eHey, %player%. Please say `%code%` in chat to validate yourself."
  30.  
  31. # After your validation grace is up you'll
  32. # receieve this message
  33. #
  34. # Valid placeholders:
  35. # player: The player who didn't complete
  36. # it in time
  37. expired: "&cLooks like we were unable to validate you as a legitimate player."
  38.  
  39. # If the player didn't attempt to type their
  40. # code within the time they're given we'll
  41. # send them this.
  42. #
  43. # Valid placeholders:
  44. # player: The player who didn't complete
  45. # it in time
  46. timeout: "&cYour validation session has timed out. You'll need to start over."
  47.  
  48. # Once a player correctly types their code out
  49. # in chat we'll send them this message
  50. #
  51. # Valid placeholders:
  52. # player: The name of the player who finished
  53. success: "&aThanks for completing that, %player%! Now you should be able to use those commands."
  54.  
  55. # The player made an attempt, but they must
  56. # have typed something wrong. Mismatched codes.
  57. #
  58. # Valid placeholders:
  59. # player: The name of the player who goofed
  60. failed: "&cOops. That's not the right code.. you'll have to start over."
  61.  
  62. # If a command is disallowed on a server, and
  63. # the player executing the command isn't on the
  64. # bypass list we'll cancel the use of said command
  65. # then send them this message.
  66. #
  67. # Valid placeholders:
  68. # player: The username of the player who run the command
  69. # command: The command the player ran
  70. # server: The server it was blocked on
  71. message:
  72. blocked-command: "&cYou're not allowed to use %command% on %server%, %player%."
  73.  
  74. # Here is where we actually block the commands
  75. # Every sub-section of this main `block-list` section
  76. # is a server's name. With the exclusion of the first one.
  77. # The `GLOBAL` field is a list of commands that will be blocked
  78. # across this entire proxy regardless of the server they were
  79. # executed on. The other ones will only block commands on that
  80. # particular server. You include 'allow|' in front of any command
  81. # on a server to allow it on only that server if you blocked
  82. # it on your network via the global section.
  83. block-list:
  84. Login:
  85. - 'bungee'
  86. - 'send %player%'
  87. - 'send %player% %server%'
  88. - 'send all'
  89. - 'send Hamood_ SkyGiants1'
  90. - 'send Hamoood_ SkyGiant1'
  91. - 'send'
  92. - 'ban'
  93. - 'GLOBAL'
  94. - 'tempban'
  95. - 'send Hamoood_ Hub'
  96. - 'bungee'
  97. - 'pex'
  98. - 'send hamoood_ skypvp'
  99. - 'send Hamoood_ sg1'
  100. - 'send Hamoood_ Sg2'
  101. - 'send Hamoood_ Sg3'
  102. - 'send Hamoood_ Sg4'
  103. - 'TempBan'
  104. - 'Alert'
  105. - 'Bbroadcast'
  106. - 'send Hamoood_ Hub'
  107. - 'send Hamoood_ FFA3'
  108. - 'send all Hub'
  109. - 'send %player% *'
  110. - 'server'
  111. - 'send *'
  112. - 'Friend msg'
  113. - 'r'
  114. - 'send Hamoood_ PartyPVP1'
  115. - 'Deny|login'
  116. GLOBAL:
  117. - 'Pex'
  118. - 'Bungeecord'
  119. - 'Bungee'
  120.  
  121. # Throw in any player's UUID that you'd
  122. # like to be exempt from any & all checks.
  123. player-bypass:
  124. - '03c337cd-7be0-4694-b9b0-e2fd03f57258'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement