Facebook
From BOTAyturk, 2 Months ago, written in YAML.
Embed
Download Paste or View Raw
Hits: 156
  1. #
  2. #Note that this is the Bungeecord configuration and therefore some spigot function are missing
  3. #Wiki: https://github.com/Nononitas/Plugin-Hide-Pro/wiki
  4. #
  5.  
  6. #Config version. Don't change!
  7. version: 12
  8.  
  9. debug: false
  10.  
  11. #Stay on the newest version to get better features!
  12. #Enable or disable automatic ingame update notification on join
  13. update-notify: true
  14.  
  15. #Message shown if you type /pl | Enter none to disable | Players with the permission plhide.bypass.pl-message.pl will see the real plugins when executing /plugins
  16. /pl-message: 'Burada görülecek bişi  yok.'
  17.  
  18. #Changes the server brand in the upper left of the f3 debug screen
  19. #Use %server% to display the server name of the mc server.
  20. f3-server-brand: '&4EdMinecraft;'
  21. replace-f3-server-brand: true
  22.  
  23. #Automatically makes the base commands in lower case for version 1.18+
  24. #For example: "/WarP Resources" will be changed to "/warp Resources"
  25. auto_lowercase_base_commands: true
  26.  
  27. #Fixes an exploit that crashes a Minecraft server through tab-completion, by producing a stackoverflow in Mojang's Brigadier API
  28. #This is not a 100% fix, as it doesn't change the NBT-reading, but merely tries to predict the exploit by interpreting the tab-completion.
  29. #Only relevant for versions from 1.13-1.20.4. In newer 1.20.4 builds the exploit is already fixed (Paper 1.20.4 Build 427 and higher)
  30. completion_exploit_fixer:
  31.   enabled: true
  32.   should_kick:
  33.     enabled: true
  34.     message: "Invalid Completion"
  35.  
  36.  
  37. groups:
  38.  #If no group is set via the permission plhide.group.<group> this will be used
  39.   #Do not rename the default group!
  40.   default:
  41.     servers:
  42.       fallback:
  43.        #The list of commands whose execution will be allowed only
  44.         commands:
  45.          - spawn
  46.           - tpa
  47.           - tpaccept
  48.           - tpdeny
  49.           - pay
  50.           - money
  51.           - balance
  52.           - warp
  53.           - msg
  54.           - gamemode * #For testing
  55.         #The list of commands that will be made visible only in tabcomplete
  56.         tabcomplete:
  57.          - spawn
  58.           - tpa
  59.           - tpaccept
  60.           - tpdeny
  61.           - pay
  62.           - money
  63.           - balance
  64.           - warp
  65.           - msg
  66.           - gamemode *  #For testing
  67.     #If a player is in two groups, the group with the higher priority number is used
  68.     #The minimum value is 0
  69.     priority: 0
  70.     #The message if you type a blocked command | Enter none to disable | %player% will be replaced with the playername
  71.     blocked-command-message: "Unknown command. Type \"/help\" for help."
  72.     #Minecraft's servers on which the group will be enabled | all means on every server.
  73.     #type /servers in Bungeecord to find out which servernames are available
  74.     #Regex is supported
  75.     enabled_servers:
  76.      - all
  77.     #Here you can add other groups: The commands and tab completion from the "inherited groups" will be added to this group
  78.     #Read more here https://github.com/Nononitas/Plugin-Hide-Pro/wiki/Group#inheritance
  79.     #The group modes are taken from the parent group, in this case the parent group is "default"
  80.     #The group is only inherited if a server in the "servers" list of the subordinate group matches the player's server
  81.     inherited-groups:
  82.      - example
  83.  
  84.   Bypass:
  85.     servers:
  86.       all:
  87.         commands: []
  88.         tabcomplete: []
  89.     enabled_servers:
  90.      - all
  91.     priority: 20
  92.     blocked-command-message: "Unknown command. Type \"/help\" for help."
  93.     inherited-groups: []
  94.  
  95.   #Give the player the plhide.group.example permission to use the group
  96.   example:
  97.     servers:
  98.      #If no matching server could be found (for example creative) this key will be used.
  99.       fallback:
  100.         commands: [ ]
  101.         tabcomplete: [ ]
  102.       #Commands listed here will be added to servers where the name starts with "Lobby-" (for example "Lobby-1", "Lobby-230")
  103.       "Lobby-.*":
  104.         commands: [ ]
  105.         tabcomplete: [ ]
  106.       #Commands listed here will only be added to the server with the name "Survival"
  107.       Survival:
  108.         commands: [ ]
  109.         tabcomplete: [ ]
  110.       #Commands listed here will be added to every other server automatically. This key (all) is optionally
  111.       all:
  112.         commands: [ ]
  113.         tabcomplete: [ ]
  114.       #Option for which servers the group should be enabled
  115.     enabled_servers:
  116.      - all
  117.     priority: 1
  118.     blocked-command-message: "Unknown command. Type \"/help\" for help."
  119.     inherited-groups: [ ]
  120.    
  121.  
  122.   #This group will be added AUTOMATICALLY if you have * permissions
  123.   #Leave it commented out to keep it disabled
  124. #  "*":
  125. #    servers:
  126. #      fallback:
  127. #        commands: []
  128. #        tabcomplete: []
  129. #    enabled_servers:
  130. #      - all
  131. #    priority: 10
  132. #    blocked-command-message: "Unknown command. Type \"/help\" for help."
  133. #    inherited-groups: []
  134.