Advertisement
PiggiesGoSqueal

Untitled

Feb 15th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 13.06 KB | None | 0 0
  1. # These groups correspond to the Permissions groups defined in your '<worldname>.yml'
  2. Groups:
  3.     Default: #group name, DONT remove this group
  4.        # Information about the Residence zone that the player can define.
  5.        #Uncomment the lines below to mirror this config to other groups.
  6.        #Mirror:
  7.          #- 'group1'
  8.          #- 'group2'
  9.        Residence:
  10.           # Determines if this group can create residences or not.  This option can be overriden with the permissions node 'residence.create'
  11.            CanCreate: true
  12.            # The maximum number of Residences a player can have.
  13.            MaxResidences: 5
  14.            # The maximum number of physical areas a residence can have.
  15.            MaxAreasPerResidence: 5
  16.            # The maximum number of blocks a Residence can be, East to West (X).
  17.            MaxEastWest: 100
  18.            # (Optional) The minimum number of blocks a Residence can be, East to West (X).
  19.            MinEastWest: 3
  20.            # The maximum number of blocks a Residence can be, North to South (Z).
  21.            MaxNorthSouth: 100
  22.            # (Optional) The minimum number of blocks a Residence can be, North to South (Z).
  23.            MinNorthSouth: 3
  24.            # The maximum number of blocks a Residence can be, High to Low (Y).
  25.            MaxUpDown: 256
  26.            # (Optional) The minimum number of blocks a Residence can be, High to Low (Y).
  27.            MinUpDown: 0
  28.            # The lowest altitude this group is allowed to protect.
  29.            MinHeight: 0
  30.            # The highest altitude this group is allowed to protect.
  31.            MaxHeight: 256
  32.             # The maximum amount of subzones can current area have.
  33.            MaxSubzonesInArea: 10
  34.             # The maximum recursive depth that subzones can go.
  35.             # A subzone within a subzone within the Residence zone would be a depth of 2.
  36.             # Set to 0 to disable subzones.
  37.            SubzoneDepth: 3
  38.            # (Optional) The maximum number of blocks a Residence Subzone can be, East to West (X).
  39.            SubzoneMaxEastWest: 100
  40.            # (Optional) The minimum number of blocks a Residence Subzone can be, East to West (X).
  41.            SubzoneMinEastWest: 3
  42.            # (Optional) The maximum number of blocks a Residence Subzone can be, North to South (Z).
  43.            SubzoneMaxNorthSouth: 100
  44.            # (Optional) The minimum number of blocks a Residence Subzone can be, North to South (Z).
  45.            SubzoneMinNorthSouth: 3
  46.            # (Optional) The maximum number of blocks a Residence Subzone can be, High to Low (Y).
  47.            SubzoneMaxUpDown: 256
  48.            # (Optional) The minimum number of blocks a Residence Subzone can be, High to Low (Y).
  49.            SubzoneMinUpDown: 3
  50.            # Whether or not to allow teleporting to Residences.
  51.            CanTeleport: false
  52.            # Allow or Disallow the use of /res unstuck, to get yourself out of a residence if stuck in one somehow
  53.            Unstuck: true
  54.            # Allow or Disallow the use of /res kick, to kick player from residence.
  55.            Kick: true
  56.            # Allow or Disallow the use of the /res select command, if disabled they can only use the selection tool.
  57.            SelectCommandAccess: true
  58.            # Allow or Disallow the group to access the Blacklist/Ignorelist for residences they own.
  59.            ItemListAccess: true
  60.        # Options relating to enter and leave messages on the residence.
  61.        Messaging:
  62.           # Whether or not the player can change the Residence enter and leave messages.
  63.            CanChange: true
  64.            # The default enter message to apply to new Residences created by players in this group.
  65.            # Leaving the message blank will disable it.
  66.            DefaultEnter: Welcome %player to %residence, owned by %owner.
  67.            # The default leave message to apply to new Residences created by players in this group.
  68.            # Leaving the message blank will disable it.
  69.            DefaultLeave: Now leaving %residence.
  70.        # Options relating to the Lease system.
  71.        Lease: # Does NOT automatically renew itself. Otherwise, same as renting I think.
  72.           # The maximum number of days to allow leases.
  73.           MaxDays: 0
  74.           # The number of days to add to the lease following a '/res lease renew' command.
  75.           RenewIncrement: 0
  76.        #Options related to the rent system
  77.        Rent: # Automatically renews itself. Otherwise, same as leasing I think.
  78.            #determines how many residences can be rented by players of this group at once
  79.            MaxRents: 0
  80.            #determines how many residences can be set for rent by players of this group at once
  81.            MaxRentables: 0
  82.            # determines max days player can rent residence at once
  83.            MaxRentDays: 0
  84.        # Options relating to the Residence Economy.
  85.        Economy:
  86.          # Whether or not players in this group can buy other Residences that are for sale.
  87.           CanBuy: true
  88.           # Whether or not players in this group can sell their Residences.
  89.           CanSell: false
  90.           # Whether or not to ignore the Residence size/count limits when buying a residence.
  91.           IgnoreLimits: false
  92.           # The cost, per block, of making a new Residence or adding a area to it.
  93.           BuyCost: 2.0
  94.           # The cost, per block, player will be getting back when removing residence.
  95.           SellCost: 2.0
  96.           # The cost, per block, of renewing a Residence lease (if the lease system is enabled).
  97.           RenewCost: 1.30
  98.        # Flags are checked in the order:
  99.        # 1: Player
  100.        # 2: Group
  101.        # 3: Owner
  102.        # 4: If all others are undefined, reverts to default value (usually true).
  103.        # Flag permissions default to false.
  104.        # These flags settings override the global flags.
  105.        Flags:
  106.          # Specifically allow or deny this group from changing certain flags.
  107.           Permission:
  108.               #build: true
  109.           # Specifies the flags that are applied at residence creation for players of this group.
  110.           Default:
  111.              #build: true
  112.           # Specifies the flags that are applied at to the creator at residence creation.
  113.           CreatorDefault:
  114.              #build: true
  115.           # Specifies the flags that are applied to other groups for this residence, at creation.
  116.           GroupDefault:
  117.               #default: #group name
  118.                    #build: false
  119.           #these flags are applied specifically to this group whenever they are outside a residence
  120.           #these flags will override the flags at the top, under the Global section.
  121.           World:
  122.                 Global: #these flags will apply to all worlds
  123.                      #build: false
  124.                 WorldNameHere: #or you can apply them by each individual world
  125.                      #build: false
  126. # ---------------------------------------------------------------------------------------------------------------------------------------------------
  127.     Craftsman: #group name, player should have residence.group.Craftsman permission node to have access to this residence group
  128.        Residence:
  129.            CanCreate: true
  130.            MaxResidences: 10
  131.            MaxAreasPerResidence: 10
  132.            MaxEastWest: 100
  133.            MaxNorthSouth: 100
  134.            MaxUpDown: 256
  135.            MinHeight: 0
  136.            MaxHeight: 256
  137.            SubzoneDepth: 3
  138.            CanTeleport: false
  139.            Unstuck: true
  140.            Kick: true
  141.            SelectCommandAccess: true
  142.            ItemListAccess: true
  143.        Messaging:
  144.            CanChange: true
  145.            DefaultEnter: Welcome %player to %residence, owned by %owner.
  146.            DefaultLeave: Now leaving %residence.
  147.        Lease:
  148.           MaxDays: 0
  149.           RenewIncrement: 0
  150.        Rent:
  151.            MaxRents: 5
  152.            MaxRentables: 5
  153.            MaxRentDays: 31
  154.        Economy:
  155.           CanBuy: true
  156.           CanSell: true
  157.           IgnoreLimits: false
  158.           BuyCost: 2.0
  159.           SellCost: 2.00
  160.           RenewCost: 1.30
  161. # -------------------------------------------------------------------------------------------------------------------------------------------------------
  162.     Sage: #group name, player should have residence.group.sage permission node to have access to this residence group
  163.        Residence:
  164.            CanCreate: true
  165.            MaxResidences: 15
  166.            MaxAreasPerResidence: 15
  167.            MaxEastWest: 100
  168.            MaxNorthSouth: 100
  169.            MaxUpDown: 256
  170.            MinHeight: 0
  171.            MaxHeight: 256
  172.            SubzoneDepth: 3
  173.            CanTeleport: false
  174.            Unstuck: true
  175.            Kick: true
  176.            SelectCommandAccess: true
  177.            ItemListAccess: true
  178.        Messaging:
  179.            CanChange: true
  180.            DefaultEnter: Welcome %player to %residence, owned by %owner.
  181.            DefaultLeave: Now leaving %residence.
  182.        Lease:
  183.           MaxDays: 0
  184.           RenewIncrement: 0
  185.        Rent:
  186.            MaxRents: 15
  187.            MaxRentables: 15
  188.            MaxRentDays: 31
  189.        Economy:
  190.           CanBuy: true
  191.           CanSell: true
  192.           IgnoreLimits: false
  193.           BuyCost: 2.0
  194.           SellCost: 2.00
  195.           RenewCost: 1.30
  196. # -------------------------------------------------------------------------------------------------------------------------------------------------------
  197.     Sergeant: #group name, player should have residence.group.sergeant permission node to have access to this residence group
  198.        Residence:
  199.            CanCreate: true
  200.            MaxResidences: 20
  201.            MaxAreasPerResidence: 20
  202.            MaxEastWest: 100
  203.            MaxNorthSouth: 100
  204.            MaxUpDown: 256
  205.            MinHeight: 0
  206.            MaxHeight: 256
  207.            SubzoneDepth: 3
  208.            CanTeleport: false
  209.            Unstuck: true
  210.            Kick: true
  211.            SelectCommandAccess: true
  212.            ItemListAccess: true
  213.        Messaging:
  214.            CanChange: true
  215.            DefaultEnter: Welcome %player to %residence, owned by %owner.
  216.            DefaultLeave: Now leaving %residence.
  217.        Lease:
  218.           MaxDays: 0
  219.           RenewIncrement: 0
  220.        Rent:
  221.            MaxRents: 20
  222.            MaxRentables: 20
  223.            MaxRentDays: 31
  224.        Economy:
  225.           CanBuy: true
  226.           CanSell: true
  227.           IgnoreLimits: false
  228.           BuyCost: 2.0
  229.           SellCost: 2.00
  230.           RenewCost: 1.30
  231. # -------------------------------------------------------------------------------------------------------------------------------------------------------
  232.     Baron: #group name, player should have residence.group.baron permission node to have access to this residence group
  233.        Residence:
  234.            CanCreate: true
  235.            MaxResidences: 25
  236.            MaxAreasPerResidence: 25
  237.            MaxEastWest: 100
  238.            MaxNorthSouth: 100
  239.            MaxUpDown: 256
  240.            MinHeight: 0
  241.            MaxHeight: 256
  242.            SubzoneDepth: 3
  243.            CanTeleport: false
  244.            Unstuck: true
  245.            Kick: true
  246.            SelectCommandAccess: true
  247.            ItemListAccess: true
  248.        Messaging:
  249.            CanChange: true
  250.            DefaultEnter: Welcome %player to %residence, owned by %owner.
  251.            DefaultLeave: Now leaving %residence.
  252.        Lease:
  253.           MaxDays: 0
  254.           RenewIncrement: 0
  255.        Rent:
  256.            MaxRents: 25
  257.            MaxRentables: 25
  258.            MaxRentDays: 31
  259.        Economy:
  260.           CanBuy: true
  261.           CanSell: true
  262.           IgnoreLimits: false
  263.           BuyCost: 2.0
  264.           SellCost: 2.00
  265.           RenewCost: 1.30
  266. # -------------------------------------------------------------------------------------------------------------------------------------------------------
  267.     Grandmaster: #group name, player should have residence.group.grandmaster permission node to have access to this residence group
  268.        Residence:
  269.            CanCreate: true
  270.            MaxResidences: 30
  271.            MaxAreasPerResidence: 30
  272.            MaxEastWest: 100
  273.            MaxNorthSouth: 100
  274.            MaxUpDown: 256
  275.            MinHeight: 0
  276.            MaxHeight: 256
  277.            SubzoneDepth: 3
  278.            CanTeleport: false
  279.            Unstuck: true
  280.            Kick: true
  281.            SelectCommandAccess: true
  282.            ItemListAccess: true
  283.        Messaging:
  284.            CanChange: true
  285.            DefaultEnter: Welcome %player to %residence, owned by %owner.
  286.            DefaultLeave: Now leaving %residence.
  287.        Lease:
  288.           MaxDays: 0
  289.           RenewIncrement: 0
  290.        Rent:
  291.            MaxRents: 30
  292.            MaxRentables: 30
  293.            MaxRentDays: 31
  294.        Economy:
  295.           CanBuy: true
  296.           CanSell: true
  297.           IgnoreLimits: false
  298.           BuyCost: 2.0
  299.           SellCost: 2.00
  300.           RenewCost: 1.30
  301. # -------------------------------------------------------------------------------------------------------------------------------------------------------
  302. # You can manually specify the group a player is in below, this overrides their permissions group.
  303. GroupAssignments:
  304.      bekvon: default
  305.      player: default
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement