Limits.yml


This is the configuration file for setting group limits. Take care when making edits. Be sure to check for YAML errors by using this tool before you commit your edits.
Also note that Group Inheritance does not work. If a player is in multiple groups, he will have the lowest limit set for the groups he is in.

There are 3 main nodes in this file

global:
worlds:
groups:



The global node defines the TOTAL number (combined rent, buy, bid, let) ANY group may have in ALL worlds.

global:
  global: -1



The worlds node sets world specific limits. No Group may go over the max values set for each world.

worlds:
  world1: -1
  world2: -1
  world3: 0



Each group can have a total limit. This would set each groups max regions, regardless of sign type, accross all worlds.

groups:
  group1: 5
  group2: 5
  group3: 5



You can further specify world limits per group. This would set a max limit per world for each group regardless of the sign type.

groups:
  group1:
    worlds:
      world1: 3
      world2: 3
      world3: 3



You can even further specfiy sign type limits in each world for each group. This would set specific limits per sign type per world for each group.

groups:
  group1:
    worlds:
      world1:
        signs:
          sell: 1
          rent: 1
          let: 1
          bid: 1
      world2: 5



Now lets put it all together in a real world example.

global:
  global: -1
worlds:
  world1: -1
  world2: -1
  world3: 0
  world4: 0
groups:
  group1:
    worlds:
      world1:
        signs:
          rent: 1
      world2: 0
  group2:
    worlds:
      world1: 0
      world2: 0
  group3:
    worlds:
      world1:
        signs:
          let: 2
      world2:
        signs:
          sell: 3
          rent: 3
          let: 5
          bid: 1