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.
static: 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:
# Two valid options:
# - 'static': Static limits; No permission plugins required.
# - 'groups': Group limits; Permissions and groups plugin required (LuckPerms...)
method: 'static'
To change the limits, edit the following settings:
Caution: If a group is not found, any limit from that group will be 0 by default. Please make sure that all groups exist in the config.yml file.
# Limits for all players, depending on their ranks (groups).
# Works when the limits method is set to 'groups'.
limits:
# Two valid options:
# - 'static': Static limits; No permission plugins required.
# - 'groups': Group limits; Permissions and groups plugin required (LuckPerms...)
method: 'static'
# The limits for player groups.
groups:
# Group: default
default:
regions: 2
chunks-per-region: 10
members-per-region: 4
subareas-per-region: 2
max-subarea-volume: 400
commands-cooldown: 2
# Group: vip
vip:
regions: 4
chunks-per-region: 20
members-per-region: 8
subareas-per-region: 5
max-subarea-volume: 800
commands-cooldown: 2
# Group: admin
admin:
regions: 10
chunks-per-region: 100
members-per-region: 16
subareas-per-region: 10
max-subarea-volume: 1200
commands-cooldown: 0
# The limits for operators and non-op players.
static:
# Limits for normal players (non operators):
non-op:
regions: 2
chunks-per-region: 10
members-per-region: 4
subareas-per-region: 2
max-subarea-volume: 400
commands-cooldown: 2
# Limits for server operators:
op:
regions: 10
chunks-per-region: 100
members-per-region: 16
subareas-per-region: 10
max-subarea-volume: 1200
commands-cooldown: 0
Last updated