Advertisement
Guest User

Untitled

a guest
May 30th, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. # ability to raise or lower the limit of homes you allow
  2. # players to have. Can be defined on a per-world or
  3. # per-permission basis. (-1 = unlimited)
  4. homeLimits:
  5. # If singleGlobalHome is set, all other sections are ignored
  6. # and a single global home is enforced. This means typing
  7. # /sethome on any world will always work and it will always
  8. # overwrite whatever other home you had set. This can be
  9. # overridden by the permission "hsp.singleGlobalHomeExempt",
  10. # in which case the limits defined below still apply.
  11. singleGlobalHome: false
  12.  
  13. # If true, a link is automatically established between a
  14. # base world such as "world" and it's child worlds such as
  15. # "world_nether" and "world_the_end". In this scenario, if
  16. # the default perWorld limit is 1, then that limit of 1
  17. # applies equally to all 3 worlds (only 1 home for all 3).
  18. # A new world "foo" and it's children would also have
  19. # their own combined perWorld limit of 1.
  20. inheritAssociatedWorlds: true
  21.  
  22. default:
  23. perWorld: 1
  24. global: 1
  25.  
  26. # world:
  27. # myworld1:
  28. # perWorld: 5
  29. # # myworld2 will inherit limits from world
  30. # myworld2:
  31. # inherit: world
  32. # permission:
  33. # limit1:
  34. # permissions:
  35. # - my.custom.perm
  36. # - group.mygroup
  37. # perWorld: 3
  38. # global: 10
  39. permission:
  40. limit1:
  41. permissions:
  42. limit2:
  43. permissions:
  44. - homelimit.SIB
  45. perWorld: 2
  46. global: 2
  47. limit3:
  48. permissions:
  49. - homelimit.SIB+
  50. perWorld: 3
  51. global: 3
  52. limit4:
  53. permissions:
  54. - homelimit.MIB
  55. perWorld: 4
  56. global: 4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement