Advertisement
Rickylachow

Untitled

Nov 7th, 2022
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  1. #
  2. #More information about how to setup the plugin can be found in the wiki
  3. # https://github.com/Nononitas/Plugin-Hide-Pro/wiki
  4. #
  5.  
  6. #Config version. Don't change!
  7. version: 11
  8.  
  9. debug: false
  10.  
  11. #OP-protection: Player can only be op'ed if they are in the "allowed-operators" list
  12. op-protection: false
  13. allowed-operators:
  14. - Player1
  15. - Player2
  16. #If you try to OP someone who isn't in the list
  17. op-message: "&cThe Player isn't a listed operator!"
  18. #Players who are operators and are not in the list can't connect and will be deop'ed.
  19. unauthorized-operator-kick-message: "&cYou are not allowed to be an operator"
  20.  
  21. #Message shown if you type /pl | Enter none to disable | Players with the permission plhide.bypass.pl-message will see the real plugins when executing /plugins
  22. /pl-message: "Plugins (0):"
  23.  
  24. #Changes the server brand in the upper left of the f3 debug screen
  25. f3-server-brand: "&3Plugin&7-&3Hide&7-&6Pro"
  26. replace-f3-server-brand: true
  27.  
  28. #Stay on the newest version to get better features!
  29. #Enable or disable automatic ingame update notification on join
  30. update-notify: true
  31.  
  32. #Set true if you are using the bungeecord version and want to block commands via plugin:<pluginname> on the bungee version
  33. #If true the groupsystem in this config will be disabled
  34. bungee-mode: false
  35.  
  36. #If the proxy has a different ip and enter the proxys ip
  37. ip: 127.0.0.1
  38. #Do NOT change the port unless you are 100% sure what you are doing. In most cases it is recommended to leave the default value
  39. port: 1550
  40.  
  41. groups:
  42. #If no group is set via the permission plhide.group.<group> this will be used
  43. #Do not rename the default group!
  44. default:
  45. #The list of commands whose execution will be allowed only
  46. commands:
  47. - spawn
  48. - tpa
  49. - tpaccept
  50. - tpdeny
  51. - pay
  52. - money
  53. - balance
  54. - warp
  55. - msg
  56. - r
  57. #The list of commands that will be made visible only in tabcomplete
  58. tabcomplete:
  59. - spawn
  60. - tpa
  61. - tpaccept
  62. - tpdeny
  63. - pay
  64. - money
  65. - balance
  66. - warp
  67. - msg
  68. - r
  69. #If a player is in two groups, the group with the higher priority number is used
  70. #The minimum value is 0
  71. priority: 0
  72. #The message if you type a blocked command | Enter none to disable | %player% will be replaced with the playername
  73. blocked-command-message: 'Unknown command. Type "/help" for help.'
  74. #Here you can add other groups: The commands and tab completion from the "inherited groups" will be added to this group
  75. #Read more here https://github.com/Nononitas/Plugin-Hide-Pro/wiki/Group#inheritance
  76. #The group modes are taken from the parent group, in this case the parent group is "default"
  77. inherited-groups:
  78. - exampleGroup
  79.  
  80. #This group will remove all commands from the tab complete and block them from being executed
  81. #Give the player the plhide.group.test permission to use the group
  82. Test:
  83. commands: []
  84. tabcomplete: []
  85. priority: 1
  86. blocked-command-message: 'Unknown command. Type "/help" for help.'
  87. inherited-groups: []
  88. #This group will be added AUTOMATICALLY if you are an operator
  89. #Leave it commented out to keep it disabled
  90. # op:
  91. # commands: []
  92. # tabcomplete: []
  93. # priority: 10
  94. # blocked-command-message: "Unknown command. Type \"/help\" for help."
  95. # inherited-groups: []
  96. #This group will be added AUTOMATICALLY if you have * permissions
  97. #Leave it commented out to keep it disabled
  98. # "*":
  99. # commands: []
  100. # tabcomplete: []
  101. # priority: 11
  102. # blocked-command-message: "Unknown command. Type \"/help\" for help."
  103. # inherited-groups: []
  104.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement