Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. {
  2. - "default_ranks": {
  3. - "player": "player", // everyone who isn't OP is assigned the player group
  4. - "op": "admin" // OPs's get the admin group
  5. - },
  6. - "ranks": {
  7. - "player": { // Here the first group "player" starts
  8. - "parent": "builtin_player", // parent means it will inherit from this group, in this case the builtin_player group (see Default Groups)
  9. - "syntax": "<&b$name&r> ", // How their username will be displayed in chat
  10. "permissions": [ // Permission Block
  11. - "+ftbu.claims.block.edit.gravestone.gravestone", // plus symbol adds a permission
  12. - "-ftbu.claims.upgrade.no_explosions", // minus symbol removes a permission
  13. - "-ftbu.claims.upgrade.no_pvp"
  14. - ],
  15. - "config": { // Config Block
  16. - "ftbu.chunkloader.max_chunks": 1,
  17. - "ftbu.chunkloader.offline_timer": 2.0,
  18. - "ftbu.claims.max_chunks": 300
  19. - }
  20. - },
  21. - "admin": { // Here the second group "admin" starts
  22. - "parent": "builtin_op", // Inherits from the builtin_op group
  23. - "syntax": "<&2$name&r> ", // How their username will be displayed in chat
  24. - "permissions": [
  25. - "+*" // adds (plus) all perms, star is a wildcard
  26. - ],
  27. - "config": {
  28. - "ftbu.chunkloader.max_chunks": 1000,
  29. - "ftbu.chunkloader.offline_timer": 96.0,
  30. - "ftbu.claims.max_chunks": 3000
  31. - }
  32. - },
  33. - "vip": { // group VIP starts here
  34. - "parent": "player", // Inherits from the player group
  35. - "syntax": "<&b$name&r> ", // How their username will be displayed in chat
  36. - "config": {
  37. - "ftbu.chunkloader.max_chunks": 400,
  38. - "ftbu.chunkloader.offline_timer": 48.0,
  39. - "ftbu.claims.max_chunks": 800
  40. - }
  41. - }
  42. - }
  43. - }
  44. -
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement