Advertisement
Guest User

s

a guest
Nov 11th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.27 KB | None | 0 0
  1. ####################################################################################################
  2. # +----------------------------------------------------------------------------------------------+ #
  3. # | __ __ ___ __ __ | #
  4. # | | | | / ` |__/ |__) |__ |__) |\/| /__` | #
  5. # | |___ \__/ \__, | \ | |___ | \ | | .__/ | #
  6. # | | #
  7. # | | #
  8. # | SOURCE CODE: https://github.com/lucko/LuckPerms | #
  9. # | WIKI: https://github.com/lucko/LuckPerms/wiki | #
  10. # | BUG REPORTS: https://github.com/lucko/LuckPerms/issues | #
  11. # | | #
  12. # | Each option in this file is documented and explained here: | #
  13. # | ==> https://github.com/lucko/LuckPerms/wiki/Configuration | #
  14. # | | #
  15. # | New options are not added to this file automatically. Default values are used if an | #
  16. # | option cannot be found. The latest config versions can be obtained at the link above. | #
  17. # +----------------------------------------------------------------------------------------------+ #
  18. ####################################################################################################
  19.  
  20. # +----------------------------------------------------------------------------------------------+ #
  21. # | | #
  22. # | ESSENTIAL SETTINGS | #
  23. # | | #
  24. # | Important settings that control how LuckPerms functions. | #
  25. # | | #
  26. # +----------------------------------------------------------------------------------------------+ #
  27.  
  28. # The name of the server, used for server specific permissions.
  29. #
  30. # - When set to "global" this setting is effectively ignored.
  31. # - In all other cases, the value here is added to all players in a "server" context.
  32. # - See: https://github.com/lucko/LuckPerms/wiki/Context
  33. server: skyblock
  34.  
  35. # If the servers own UUID cache/lookup facility should be used when there is no record for a player
  36. # already in LuckPerms.
  37. #
  38. # - When this is set to 'false', commands using a player's username will not work unless the player
  39. # has joined since LuckPerms was first installed.
  40. # - To get around this, you can use a player's uuid directly in the command, or enable this option.
  41. # - When this is set to 'true', the server facility is used. This may use a number of methods,
  42. # including checking the servers local cache, or making a request to the Mojang API.
  43. use-server-uuid-cache: false
  44.  
  45.  
  46.  
  47.  
  48. # +----------------------------------------------------------------------------------------------+ #
  49. # | | #
  50. # | STORAGE SETTINGS | #
  51. # | | #
  52. # | Controls which storage method LuckPerms will use to store data. | #
  53. # | | #
  54. # +----------------------------------------------------------------------------------------------+ #
  55.  
  56. # How the plugin should store data
  57. #
  58. # - The various options are explained in more detail on the wiki:
  59. # https://github.com/lucko/LuckPerms/wiki/Choosing-a-Storage-type
  60. #
  61. # - Possible options:
  62. #
  63. # | Remote databases - require connection information to be configured below
  64. # |=> MySQL
  65. # |=> MariaDB (preferred over MySQL)
  66. # |=> PostgreSQL
  67. # |=> MongoDB
  68. #
  69. # | Flatfile/local database - don't require any extra configuration
  70. # |=> H2 (preferred over SQLite)
  71. # |=> SQLite
  72. #
  73. # | Readable & editable text files - don't require any extra configuration
  74. # |=> YAML (.yml files)
  75. # |=> JSON (.json files)
  76. # |=> HOCON (.conf files)
  77. # |=> TOML (.toml files)
  78. # |
  79. # | By default, user, group and track data is separated into different files. Data can be combined
  80. # | and all stored in the same file by switching to a combined storage variant.
  81. # | Just add '-combined' to the end of the storage-method, e.g. 'yaml-combined'
  82. #
  83. # - A H2 database is the default option.
  84. # - If you want to edit data manually in "traditional" storage files, we suggest using YAML.
  85. storage-method: MySQL
  86.  
  87. # The following block defines the settings for remote database storage methods.
  88. #
  89. # - You don't need to touch any of the settings here if you're using a local storage method!
  90. # - The connection detail options are shared between all remote storage types.
  91. data:
  92.  
  93. # Define the address and port for the database.
  94. # - The standard DB engine port is used by default
  95. # (MySQL: 3306, PostgreSQL: 5432, MongoDB: 27017)
  96. # - Specify as "host:port" if differs
  97. address: localhost
  98.  
  99. # The name of the database to store LuckPerms data in.
  100. # - This must be created already. Don't worry about this setting if you're using MongoDB.
  101. database: LuckPerms
  102.  
  103. # Credentials for the database.
  104. username: root
  105. password:
  106. # These settings apply to the MySQL connection pool.
  107. # - The default values will be suitable for the majority of users.
  108. # - Do not change these settings unless you know what you're doing!
  109. pool-settings:
  110.  
  111. # This setting allows you to define extra properties for connections.
  112. properties:
  113. useUnicode: true
  114. characterEncoding: utf8
  115. useSSL: false
  116. verifyServerCertificate: false
  117. # Sets the maximum size of the MySQL connection pool.
  118. # - Basically this value will determine the maximum number of actual
  119. # connections to the database backend.
  120. # - More information about determining the size of connection pools can be found here:
  121. # https://github.com/brettwooldridge/HikariCP/wiki/About-Pool-Sizing
  122. maximum-pool-size: 10
  123.  
  124. # Sets the minimum number of idle connections that the pool will try to maintain.
  125. # - For maximum performance and responsiveness to spike demands, it is recommended to not set
  126. # this value and instead allow the pool to act as a fixed size connection pool.
  127. # (set this value to the same as 'maximum-pool-size')
  128. minimum-idle: 10
  129.  
  130. # This setting controls the maximum lifetime of a connection in the pool in milliseconds.
  131. # - The value should be at least 30 seconds less than any database or infrastructure imposed
  132. # connection time limit.
  133. maximum-lifetime: 1800000 # 30 minutes
  134.  
  135. # This setting controls the maximum number of milliseconds that the plugin will wait for a
  136. # connection from the pool, before timing out.
  137. connection-timeout: 5000 # 5 seconds
  138.  
  139. # This setting allows you to define extra properties for connections.
  140. properties:
  141. useUnicode: true
  142. characterEncoding: utf8
  143.  
  144. # The prefix for all LuckPerms SQL tables.
  145. # - Change this is you want to use different tables for different servers.
  146. table_prefix: 'luckperms_'
  147.  
  148. # The prefix to use for all LuckPerms collections. Change this if you want to use different
  149. # collections for different servers. The default is no prefix.
  150. mongodb_collection_prefix: ''
  151.  
  152. # MongoDB ClientConnectionURI for use with replica sets and custom connection options
  153. # - See https://docs.mongodb.com/manual/reference/connection-string/
  154. mongodb_connection_URI: ''
  155.  
  156. # Define settings for a "split" storage setup.
  157. #
  158. # - This allows you to define a storage method for each type of data.
  159. # - The connection options above still have to be correct for each type here.
  160. split-storage:
  161. # Don't touch this if you don't want to use split storage!
  162. enabled: false
  163. methods:
  164. # These options don't need to be modified if split storage isn't enabled.
  165. user: h2
  166. group: h2
  167. track: h2
  168. uuid: h2
  169. log: h2
  170.  
  171.  
  172.  
  173.  
  174. # +----------------------------------------------------------------------------------------------+ #
  175. # | | #
  176. # | UPDATE PROPAGATION & MESSAGING SERVICE | #
  177. # | | #
  178. # | Controls the ways in which LuckPerms will sync data & notify other servers of changes. | #
  179. # | These options are documented on greater detail on the wiki under "Instant Updates". | #
  180. # | | #
  181. # +----------------------------------------------------------------------------------------------+ #
  182.  
  183. # This option controls how frequently LuckPerms will perform a sync task.
  184. #
  185. # - A sync task will refresh all data from the storage, and ensure that the most up-to-date data is
  186. # being used by the plugin.
  187. # - This is disabled by default, as most users will not need it. However, if you're using a remote
  188. # storage type without a messaging service setup, you may wish to set this to something like 3.
  189. # - Set to -1 to disable the task completely.
  190. sync-minutes: -1
  191.  
  192. # If the file watcher should be enabled.
  193. #
  194. # - When using a file-based storage type, LuckPerms can monitor the data files for changes, and
  195. # automatically update when changes are detected.
  196. # - If you don't want this feature to be active, set this option to false.
  197. watch-files: true
  198.  
  199. # Define which messaging service should be used by the plugin.
  200. #
  201. # - If enabled and configured, LuckPerms will use the messaging service to inform other connected
  202. # servers of changes.
  203. # - Use the command "/lp networksync" to manually push changes.
  204. # - Data is NOT stored using this service. It is only used as a messaging platform.
  205. #
  206. # - If you decide to enable this feature, you should set "sync-minutes" to -1, as there is no need
  207. # for LuckPerms to poll the database for changes.
  208. #
  209. # - Possible options:
  210. # => sql Uses the SQL database to form a queue system for communication. Will only work when
  211. # 'storage-method' is set to MySQL or MariaDB. This is chosen by default if the
  212. # option is set to 'none' and SQL storage is in use. Set to 'notsql' to disable this.
  213. # => pluginmsg Uses the plugin messaging channels to communicate with the proxy.
  214. # LuckPerms must be installed on your proxy & all connected servers backend servers.
  215. # Won't work if you have more than one proxy.
  216. # => lilypad Uses LilyPad pub-sub to push changes. You need to have the LilyPad-Connect plugin
  217. # installed.
  218. # => redis Uses Redis pub-sub to push changes. Your server connection info must be configured
  219. # below.
  220. # => none Disables the service.
  221. messaging-service: none
  222.  
  223. # If LuckPerms should automatically push updates after a change has been made with a command.
  224. auto-push-updates: true
  225.  
  226. # If LuckPerms should push logging entries to connected servers via the messaging service.
  227. push-log-entries: true
  228.  
  229. # If LuckPerms should broadcast received logging entries to players on this platform.
  230. #
  231. # - If you have LuckPerms installed on your backend servers as well as a BungeeCord proxy, you
  232. # should set this option to false on either your backends or your proxies, to avoid players being
  233. # messaged twice about log entries.
  234. broadcast-received-log-entries: true
  235.  
  236. # Settings for Redis.
  237. # Port 6379 is used by default; set address to "host:port" if differs
  238. redis:
  239. enabled: false
  240. address: localhost
  241. password: ''
  242.  
  243.  
  244.  
  245.  
  246. # +----------------------------------------------------------------------------------------------+ #
  247. # | | #
  248. # | CUSTOMIZATION SETTINGS | #
  249. # | | #
  250. # | Settings that allow admins to customize the way LuckPerms operates. | #
  251. # | | #
  252. # +----------------------------------------------------------------------------------------------+ #
  253.  
  254. # Controls how temporary permissions/parents/meta should be accumulated.
  255. #
  256. # - The default behaviour is "deny".
  257. # - This behaviour can also be specified when the command is executed. See the command usage
  258. # documentation for more info.
  259. #
  260. # - Possible options:
  261. # => accumulate durations will be added to the existing expiry time
  262. # => replace durations will be replaced if the new duration is later than the current
  263. # expiration
  264. # => deny the command will just fail if you try to add another node with the same expiry
  265. temporary-add-behaviour: deny
  266.  
  267. # Controls how LuckPerms will determine a users "primary" group.
  268. #
  269. # - The meaning and influence of "primary groups" are explained in detail on the wiki.
  270. # - The preferred approach is to let LuckPerms automatically determine a users primary group
  271. # based on the relative weight of their parent groups.
  272. #
  273. # - Possible options:
  274. # => stored use the value stored against the users record in the file/database
  275. # => parents-by-weight just use the users most highly weighted parent
  276. # => all-parents-by-weight same as above, but calculates based upon all parents inherited from
  277. # both directly and indirectly
  278. primary-group-calculation: parents-by-weight
  279.  
  280. # If the plugin should check for "extra" permissions with users run LP commands.
  281. #
  282. # - These extra permissions allow finer control over what users can do with each command, and who
  283. # they have access to edit.
  284. # - The nature of the checks are documented on the wiki under "Argument based command permissions".
  285. # - Argument based permissions are *not* static, unlike the 'base' permissions, and will depend upon
  286. # the arguments given within the command.
  287. argument-based-command-permissions: false
  288.  
  289. # If the plugin should check whether senders are a member of a given group before they're able to
  290. # edit the groups data or add/remove other users to/from it.
  291. # Note: these limitations do not apply to the web editor!
  292. require-sender-group-membership-to-modify: false
  293.  
  294. # If the plugin should send log notifications to users whenever permissions are modified.
  295. #
  296. # - Notifications are only sent to those with the appropriate permission to receive them
  297. # - They can also be temporarily enabled/disabled on a per-user basis using
  298. # '/lp log notify <on|off>'
  299. log-notify: true
  300.  
  301. # Defines the options for prefix and suffix stacking.
  302. #
  303. # - The feature allows you to display multiple prefixes or suffixes alongside a players username in
  304. # chat.
  305. # - It is explained and documented in more detail on the wiki under "Prefix & Suffix Stacking".
  306. #
  307. # - The options are divided into separate sections for prefixes and suffixes.
  308. # - The value of 'start-spacer' is included at the start of the resultant prefix/suffix.
  309. # - The value of 'end-spacer' is included at the end of the resultant prefix/suffix.
  310. # - The value of 'middle-spacer' is included between each element in the resultant prefix/suffix.
  311. #
  312. # - Possible format options:
  313. # => highest Selects the value with the highest weight, from all values
  314. # held by or inherited by the player.
  315. #
  316. # => lowest Same as above, except takes the one with the lowest weight.
  317. #
  318. # => highest_own Selects the value with the highest weight, but will not
  319. # accept any inherited values.
  320. #
  321. # => lowest_own Same as above, except takes the value with the lowest weight.
  322. #
  323. # => highest_inherited Selects the value with the highest weight, but will only
  324. # accept inherited values.
  325. #
  326. # => lowest_inherited Same as above, except takes the value with the lowest weight.
  327. #
  328. # => highest_on_track_<track> Selects the value with the highest weight, but only if the
  329. # value was inherited from a group on the given track.
  330. #
  331. # => lowest_on_track_<track> Same as above, except takes the value with the lowest weight.
  332. #
  333. # => highest_not_on_track_<track> Selects the value with the highest weight, but only if the
  334. # value was inherited from a group not on the given track.
  335. #
  336. # => lowest_not_on_track_<track> Same as above, except takes the value with the lowest weight.
  337. meta-formatting:
  338. prefix:
  339. format:
  340. - "highest"
  341. start-spacer: ""
  342. middle-spacer: " "
  343. end-spacer: ""
  344. suffix:
  345. format:
  346. - "highest"
  347. start-spacer: ""
  348. middle-spacer: " "
  349. end-spacer: ""
  350.  
  351.  
  352.  
  353.  
  354. # +----------------------------------------------------------------------------------------------+ #
  355. # | | #
  356. # | PERMISSION CALCULATION AND INHERITANCE | #
  357. # | | #
  358. # | Modify the way permission checks, meta lookups and inheritance resolutions are handled. | #
  359. # | | #
  360. # +----------------------------------------------------------------------------------------------+ #
  361.  
  362. # The algorithm LuckPerms should use when traversing the "inheritance tree".
  363. #
  364. # - Possible options:
  365. # => breadth-first See: https://en.wikipedia.org/wiki/Breadth-first_search
  366. # => depth-first-pre-order See: https://en.wikipedia.org/wiki/Depth-first_search
  367. # => depth-first-post-order See: https://en.wikipedia.org/wiki/Depth-first_search
  368. inheritance-traversal-algorithm: depth-first-pre-order
  369.  
  370. # +----------------------------------------------------------------------------------------------+ #
  371. # | Permission resolution settings | #
  372. # +----------------------------------------------------------------------------------------------+ #
  373.  
  374. # If users on this server should have their global permissions applied.
  375. # When set to false, only server specific permissions will apply for users on this server
  376. include-global: true
  377.  
  378. # If users on this server should have their global world permissions applied.
  379. # When set to false, only world specific permissions will apply for users on this server
  380. include-global-world: true
  381.  
  382. # If users on this server should have global (non-server specific) groups applied
  383. apply-global-groups: true
  384.  
  385. # If users on this server should have global (non-world specific) groups applied
  386. apply-global-world-groups: true
  387.  
  388. # +----------------------------------------------------------------------------------------------+ #
  389. # | Inheritance settings | #
  390. # +----------------------------------------------------------------------------------------------+ #
  391.  
  392. # If the plugin should apply wildcard permissions.
  393. #
  394. # - If set to true, LuckPerms will detect wildcard permissions, and resolve & apply all registered
  395. # permissions matching the wildcard.
  396. apply-wildcards: true
  397.  
  398. # If the plugin should parse regex permissions.
  399. #
  400. # - If set to true, LuckPerms will detect regex permissions, marked with "r=" at the start of the
  401. # node, and resolve & apply all registered permissions matching the regex.
  402. apply-regex: true
  403.  
  404. # If the plugin should complete and apply shorthand permissions.
  405. #
  406. # - If set to true, LuckPerms will detect and expand shorthand node patterns.
  407. apply-shorthand: true
  408.  
  409. # If the plugin should apply Bukkit child permissions.
  410. #
  411. # - Plugin authors can define custom permissions structures for their plugin, which will be resolved
  412. # and used by LuckPerms if this setting is enabled.
  413. apply-bukkit-child-permissions: true
  414.  
  415. # If the plugin should apply Bukkit default permissions.
  416. #
  417. # - Plugin authors can define permissions which should be given to all users by default, or setup
  418. # permissions which should/shouldn't be given to opped players.
  419. # - If this option is set to false, LuckPerms will ignore these defaults.
  420. apply-bukkit-default-permissions: true
  421.  
  422. # If the plugin should apply attachment permissions.
  423. #
  424. # - Other plugins on the server are able to add their own "permission attachments" to players.
  425. # - This allows them to grant players additional permissions which last until the end of the
  426. # session, or until they're removed.
  427. # - If this option is set to false, LuckPerms will not include these attachment permissions when
  428. # considering if a player should have access to a certain permission.
  429. apply-bukkit-attachment-permissions: true
  430.  
  431. # +----------------------------------------------------------------------------------------------+ #
  432. # | Extra settings | #
  433. # +----------------------------------------------------------------------------------------------+ #
  434.  
  435. # Allows you to set "aliases" for the worlds sent forward for context calculation.
  436. #
  437. # - These aliases are provided in addition to the real world name. Applied recursively.
  438. # - Remove the comment characters for the default aliases to apply.
  439. world-rewrite:
  440. # world_nether: world
  441. # world_the_end: world
  442.  
  443. # Define special group weights for this server.
  444. #
  445. # - Group weights can also be applied directly to group data, using the setweight command.
  446. # - This section allows weights to be set on a per-server basis.
  447. group-weight:
  448. # admin: 10
  449.  
  450.  
  451.  
  452.  
  453. # +----------------------------------------------------------------------------------------------+ #
  454. # | | #
  455. # | FINE TUNING OPTIONS | #
  456. # | | #
  457. # | A number of more niche settings for tweaking and changing behaviour. The section also | #
  458. # | contains toggles for some more specialised features. It is only necessary to make changes to | #
  459. # | these options if you want to fine-tune LuckPerms behaviour. | #
  460. # | | #
  461. # +----------------------------------------------------------------------------------------------+ #
  462.  
  463. # +----------------------------------------------------------------------------------------------+ #
  464. # | Server Operator (OP) settings | #
  465. # +----------------------------------------------------------------------------------------------+ #
  466.  
  467. # Controls whether server operators should exist at all.
  468. #
  469. # - When set to 'false', all players will be de-opped, and the /op and /deop commands will be
  470. # disabled.
  471. enable-ops: true
  472.  
  473. # Enables or disables a special permission based system in LuckPerms for controlling OP status.
  474. #
  475. # - If set to true, any user with the permission "luckperms.autoop" will automatically be granted
  476. # server operator status. This permission can be inherited, or set on specific servers/worlds,
  477. # temporarily, etc.
  478. # - Additionally, setting this to true will force the "enable-ops" option above to false. All users
  479. # will be de-opped unless they have the permission node, and the op/deop commands will be
  480. # disabled.
  481. # - It is recommended that you use this option instead of assigning a single '*' permission.
  482. auto-op: false
  483.  
  484. # Defines if "opped" players should be able to use all LuckPerms commands by default.
  485. #
  486. # - Set to false to only allow users who have the permissions access to the commands
  487. commands-allow-op: false
  488.  
  489. # +----------------------------------------------------------------------------------------------+ #
  490. # | Vault integration settings | #
  491. # +----------------------------------------------------------------------------------------------+ #
  492.  
  493. # If Vault lookups for offline players on the main server thread should be enabled.
  494. #
  495. # LuckPerms has a "catch" for plugins attempting to perform unsafe offline player data lookups
  496. # from the main server thread. This catch raises an exception (causes an error to occur) when unsafe
  497. # lookups are made, instead of allowing the lookup to happen, which would likely cause the server
  498. # to lag.
  499. #
  500. # However, if you're willing to accept the consequences, the catch can be disabled by setting this
  501. # option to 'true.
  502. vault-unsafe-lookups: false
  503.  
  504. # If the vault-server option below should be used.
  505. #
  506. # - When this option is set to false, the server value defined above under "server" is used.
  507. use-vault-server: false
  508.  
  509. # The name of the server used within Vault operations.
  510. #
  511. # - If you don't want Vault operations to be server specific, set this to "global".
  512. # - Will only take effect if use-vault-server is set to true above.
  513. vault-server: global
  514.  
  515. # If global permissions should be considered when retrieving meta or player groups
  516. vault-include-global: true
  517.  
  518. # If Vault operations should ignore any world arguments if supplied.
  519. vault-ignore-world: false
  520.  
  521. # If LuckPerms should print debugging info to console when a plugin uses a Vault function
  522. vault-debug: false
  523.  
  524. # +----------------------------------------------------------------------------------------------+ #
  525. # | Miscellaneous (and rarely used) settings | #
  526. # +----------------------------------------------------------------------------------------------+ #
  527.  
  528. # If LuckPerms should produce extra logging output when it handles logins.
  529. #
  530. # - Useful if you're having issues with UUID forwarding or data not being loaded.
  531. debug-logins: false
  532.  
  533. # If LuckPerms should use the "server-name" property from the "server.properties" file as the
  534. # "server" option within LuckPerms.
  535. use-server-properties-name: false
  536.  
  537. # If LuckPerms should allow usernames with non alphanumeric characters.
  538. #
  539. # - Note that due to the design of the storage implementation, usernames must still be 16 characters
  540. # or less.
  541. allow-invalid-usernames: false
  542.  
  543. # If LuckPerms should allow a users primary group to be removed with the 'parent remove' command.
  544. #
  545. # - When this happens, the plugin will set their primary group back to default.
  546. prevent-primary-group-removal: false
  547.  
  548.  
  549.  
  550.  
  551. # +----------------------------------------------------------------------------------------------+ #
  552. # | | #
  553. # | DEFAULT ASSIGNMENTS | #
  554. # | | #
  555. # +----------------------------------------------------------------------------------------------+ #
  556.  
  557. # This section allows you to define defaults to give users whenever they connect to the server.
  558. # The default assignments are highly configurable and conditional.
  559. #
  560. # There is one default assignment built into LuckPerms, which will add all users to the "default"
  561. # group if they are not a member of any other group. This setting cannot be disabled. However, you
  562. # can use this section to add more of your own.
  563. #
  564. # IMPORTANT:
  565. # In order to save storage space, LuckPerms does not store users who have no permissions defined,
  566. # and are only a member of the default group. Adding default assignments to this section will negate
  567. # this effect. It is HIGHLY RECCOMENDED that instead of assigning defaults here, you add permissions
  568. # to the "default" group, or set the "default" group to inherit other groups, and then use the
  569. # group-name-rewrite rule above.
  570. #
  571. # It is also important to note that these rules are considered every time a player logs into the
  572. # server, and are applied directly to the user's data. Simply removing a rule here will not reverse
  573. # the effect of that rule on any users who have already had it applied to them.
  574. #
  575. # The "has" and "lacks" conditions below support standard boolean logic, using the 'and' & 'or'
  576. # characters used in Java.
  577. # e.g. "(some.other.permission | some.permission.other) & some.thing.else" == a user has
  578. # 'some.other.permission', or 'some.permission.other', and they also have 'some.thing.else'
  579. #
  580. # Groups are represented by the permission node: group.<group name>
  581. # Per server and per world nodes are represented by "server-world/permission" or "server/permission"
  582. #
  583. # Within conditions, permission nodes MUST be escaped using "<" and ">". See the example below.
  584. #
  585. # Explanation of the examples below: (they're just to demonstrate the features & use cases)
  586. #
  587. # rule1:
  588. # If a user is either in the vip or vip+ group, and they have the "titles.titlecollector" permission
  589. # set to true, and the "some.random.permission" set to false... if they're not in the group
  590. # "prison_titlepack" on the "prison" server, then give add them to the "prison_titlepack" group on
  591. # the "prison" server, and remove "some.random.permission".
  592. #
  593. # rule2:
  594. # If the user isn't in any of the following groups on the skyblock server: sb_level1, sb_level2,
  595. # sb_level3, then add them to sb_level1 on the skyblock server.
  596. #
  597. # rule3:
  598. # If the user is a member of the default group, remove them from default, add them to member, and
  599. # set their primary group to member.
  600. #
  601. # WARNING: Unlike internal commands, this system does not ensure that a group exists before adding
  602. # a user to it. It also does not unsure that a user is a member of a group before making that group
  603. # their primary group.
  604. #
  605. # Before you use "give: group.<name>" or "set-primary-group", make sure that the group exists, and
  606. # that the user is a member of the group.
  607. default-assignments:
  608. # rule1:
  609. # if:
  610. # has-true: (<group.vip> | <group.vip+>) & <titles.tilecollector>
  611. # has-false: <some.random.permission>
  612. # lacks: <prison/group.prison_titlepack>
  613. # give:
  614. # - prison/group.prison_titlepack
  615. # take:
  616. # - some.random.permission
  617. # rule2:
  618. # if:
  619. # lacks: <skyblock/group.sb_level1> & <skyblock/group.sb_level2> & <skyblock/group.sb_level3>
  620. # give:
  621. # - skyblock/group.sb_level1
  622. # rule3:
  623. # if:
  624. # has-true: <group.default>
  625. # take:
  626. # - group.default
  627. # give:
  628. # - group.member
  629. # set-primary-group: member
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement