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.

There are two options for limits:

  • groups: This will make Homestead use LuckPerms (or any other permissions plugin) to fetch a player's group and then get the group's limit.

  • fixed: This will make Homestead not use LuckPerms or any other permissions plugin, but all players will have the same limits (not depending on groups). Note that operators will have different limits.

limits-method: 'groups'

To change the limits, edit the following settings:

# Limits for all players, depending on their ranks (groups).
# Works when the limits method is set to 'groups'.
limits-groups:
  # 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.
    subareas-per-region: 2 # Player's regions' maximum subareas count.
    max-subarea-volume: 400 # Player's regions' maximum subarea volume.
  # Group: vip
  vip:
    regions: 4
    chunks-per-region: 20
    members-per-region: 8
    subareas-per-region: 5
    max-subarea-volume: 800
  # Group: admin
  admin:
    regions: 10
    chunks-per-region: 100
    members-per-region: 16
    subareas-per-region: 10
    max-subarea-volume: 1200
    
# Limits for all players, depending on their OP level (if they are a server operator or not).
# Works when the limits method is set to 'fixed'.
limits-fixed:
  # Limits for normal players (not operators):
  non-op:
    regions: 2
    chunks-per-region: 10
    members-per-region: 4
    subareas-per-region: 2
    max-subarea-volume: 400
  # Limits for server operators:
  op:
    regions: 10
    chunks-per-region: 100
    members-per-region: 16
    subareas-per-region: 10
    max-subarea-volume: 1200

Last updated