Ranks and Limits

Each player has a group, by default it's default. They may upgrade to another rank, for example, vip group, so they need special upgrades for their regions, like 6+ more claims, 4+ members... etc.

To change the limits, edit the following settings:

limits:
  # Group: default
  default:
    regions: 2 # Player's maximum regions count.
    chunks-per-region: 10 # Player's regions' maximum chunks count.
    members-per-region: 4 # Player's regions' maximum members count.
  # Group: vip
  vip:
    regions: 4
    chunks-per-region: 20
    members-per-region: 8
  # Group: admin
  admin:
    regions: 10
    chunks-per-region: 100
    members-per-region: 16

You can add as many groups as you want! Just make sure that all groups exist in the config.yml file.

If a group is not found, any limit from that group will be 0 by default.

Last updated