Advertisement
Guest User

Untitled

a guest
May 21st, 2011
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 10.74 KB | None | 0 0
  1. #These are Global Settings for Residence.
  2. Global:
  3.     SelectionToolId: 271
  4.     InfoToolId: 287
  5.     MoveCheckInterval: 500
  6.     SaveInterval: 10
  7.     DefaultGroup: default
  8.     UseLeaseSystem: true
  9.     LeaseCheckInterval: 10
  10.     EnablePermissions: true
  11.     EnableEconomy: true
  12.     EconomySystem: iConomy
  13.     AdminOnlyCommands: false
  14.     AdminOPs: true
  15.     Flags:
  16.         Global: #these are default for all worlds unless specified below, they can be overridden per group
  17.             use: true
  18.             build: true
  19.             ignite: true
  20.             firespread: true
  21.             damage: true
  22.             creeper: true
  23.             tnt: true
  24.             pvp: true
  25.  
  26. Groups:
  27.     Default:
  28.       # Information about the Residence zone that the player can define.
  29.        Residence:
  30.           # Determins if this group can create residences or not.
  31.            CanCreate: true
  32.            # The maximum number of Residences a player can have.
  33.            MaxResidences: 3
  34.            # The maximum number of physical areas a residence can have.
  35.            MaxAreasPerResidence: 2
  36.            # The maximum number of blocks a Residence can be, East to West (X).
  37.            MaxEastWest: 16
  38.            # The maximum number of blocks a Residence can be, North to South (Z).
  39.            MaxNorthSouth: 16
  40.            # The maximum number of blocks a Residence can be, High to Low (Y).
  41.            MaxUpDown: 256
  42.             # The maximum recursive depth that subzones can go.
  43.             # A subzone within a subzone within the Residence zone would be a depth of 2.
  44.             # Set to 0 to disable subzones.
  45.            SubzoneDepth: 3
  46.            # Whether or not to allow teleporting to Residences.
  47.            CanTeleport: true
  48.            # Allow or Disallow the use of /res unstuck, to get yourself out of a residence if stuck in one somehow
  49.            Unstuck: true
  50.        # Options relating to enter and leave messages on the residence.
  51.        Messaging:
  52.           # Whether or not the player can change the Residence enter and/or leave message.
  53.            CanChange: true
  54.            # The default enter message to apply to new Residences created by players in this group.
  55.            # Leaving the message blank will disable it.
  56.            DefaultEnter: Welcome %player to %residence, owned by %owner.
  57.            # The default leave message to apply to new Residences created by players in this group.
  58.            # Leaving the message blank will disable it.
  59.            DefaultLeave: Now leaving %residence.
  60.        # Options relating to the leasing of zones.
  61.        Lease:
  62.          # The maximum number of days to allow leases.
  63.           MaxDays: 16
  64.           # The number of days to add to the lease following a '/res lease renew' command.
  65.           RenewIncrement: 14
  66.        # Options relating to the Residence Economy.
  67.        Economy:
  68.          # Whether or not players in this group can buy other Residences that are for sale.
  69.           CanBuy: true
  70.           # Whether or not players in this group can sell their Residences.
  71.           CanSell: false
  72.           # Whether or not to ignore the Residence size/count limits when buying a residence.
  73.           IgnoreLimits: false
  74.           # The cost, per block, of buying a Residence or adding a area to it.
  75.           BuyCost: 0.05
  76.           # The cost, per block, of renewing a Residence lease.
  77.           RenewCost: 0.02
  78.        # Flags are checked in the order:
  79.        # 1: Player (in-game only)
  80.        # 2: Group
  81.        # 3: Owner
  82.        # 4: Default
  83.        # 5: Otherwise, if all others are undefined, defaults to 'true'.
  84.        # Flag permissions default to false.
  85.        Flags:
  86.          # Specifys the flags that players of this group are allowed to change.
  87.           Permission:
  88.                move: true
  89.                build: true
  90.                use: true
  91.                ignite: true
  92.                pvp: true
  93.                tp: true
  94.                flow: true
  95.                firespread: true
  96.                creeper: true
  97.                tnt: true
  98.                container: true
  99.           # Specifys the flags that are applied at residence creation for players of this group.
  100.           Default:
  101.                build: false
  102.                use: false
  103.                tnt: false
  104.                pvp: false
  105.                creeper: false
  106.                firespread: false
  107.                container: false
  108.           # Specifys the flags that are applied at to the creator at residence creation.
  109.           CreatorDefault:
  110.                move: true
  111.                build: true
  112.                use: true
  113.                container: true
  114.           # Specifys the flags that are applied to other groups for this residence, at creation.
  115.           GroupDefault:
  116.                Coolguys:
  117.                  build : true
  118.           #these flags are applied to this group whenever they are outside a residence
  119.           #these flags will override the flags at the top, under the Global section.
  120.           World:
  121.                 Global: #these flags will apply to all worlds
  122.                      #build: false
  123.                 WorldNameHere: #or you can apply them by each individual world
  124.                      #build: false
  125.  
  126.    Coolguys:
  127.       # Information about the Residence zone that the player can define.
  128.        Residence:
  129.           # Determins if this group can create residences or not.
  130.            CanCreate: true
  131.            # The maximum number of Residences a player can have.
  132.            MaxResidences: 3
  133.            # The maximum number of physical areas a residence can have.
  134.            MaxAreasPerResidence: 2
  135.            # The maximum number of blocks a Residence can be, East to West (X).
  136.            MaxEastWest: 16
  137.            # The maximum number of blocks a Residence can be, North to South (Z).
  138.            MaxNorthSouth: 16
  139.            # The maximum number of blocks a Residence can be, High to Low (Y).
  140.            MaxUpDown: 256
  141.             # The maximum recursive depth that subzones can go.
  142.             # A subzone within a subzone within the Residence zone would be a depth of 2.
  143.             # Set to 0 to disable subzones.
  144.            SubzoneDepth: 3
  145.            # Whether or not to allow teleporting to Residences.
  146.            CanTeleport: true
  147.            # Allow or Disallow the use of /res unstuck, to get yourself out of a residence if stuck in one somehow
  148.            Unstuck: true
  149.        # Options relating to enter and leave messages on the residence.
  150.        Messaging:
  151.           # Whether or not the player can change the Residence enter and/or leave message.
  152.            CanChange: true
  153.            # The default enter message to apply to new Residences created by players in this group.
  154.            # Leaving the message blank will disable it.
  155.            DefaultEnter: Welcome %player to %residence, owned by %owner.
  156.            # The default leave message to apply to new Residences created by players in this group.
  157.            # Leaving the message blank will disable it.
  158.            DefaultLeave: Now leaving %residence.
  159.        # Options relating to the leasing of zones.
  160.        Lease:
  161.          # The maximum number of days to allow leases.
  162.           MaxDays: 16
  163.           # The number of days to add to the lease following a '/res lease renew' command.
  164.           RenewIncrement: 14
  165.        # Options relating to the Residence Economy.
  166.        Economy:
  167.          # Whether or not players in this group can buy other Residences that are for sale.
  168.           CanBuy: true
  169.           # Whether or not players in this group can sell their Residences.
  170.           CanSell: false
  171.           # Whether or not to ignore the Residence size/count limits when buying a residence.
  172.           IgnoreLimits: false
  173.           # The cost, per block, of buying a Residence or adding a area to it.
  174.           BuyCost: 0.05
  175.           # The cost, per block, of renewing a Residence lease.
  176.           RenewCost: 0.02
  177.        # Flags are checked in the order:
  178.        # 1: Player (in-game only)
  179.        # 2: Group
  180.        # 3: Owner
  181.        # 4: Default
  182.        # 5: Otherwise, if all others are undefined, defaults to 'true'.
  183.        # Flag permissions default to false.
  184.        Flags:
  185.          # Specifys the flags that players of this group are allowed to change.
  186.           Permission:
  187.                move: true
  188.                build: true
  189.                use: true
  190.                ignite: true
  191.                pvp: true
  192.                tp: true
  193.                flow: true
  194.                firespread: true
  195.                creeper: true
  196.                tnt: true
  197.                container: true
  198.           # Specifys the flags that are applied at residence creation for players of this group.
  199.           Default:
  200.                build: false
  201.                use: false
  202.                tnt: false
  203.                pvp: false
  204.                creeper: false
  205.                firespread: false
  206.                container: false
  207.           # Specifys the flags that are applied at to the creator at residence creation.
  208.           CreatorDefault:
  209.                move: true
  210.                build: true
  211.                use: true
  212.                container: true
  213.           # Specifys the flags that are applied to other groups for this residence, at creation.
  214.           GroupDefault:
  215.               #default: #group name
  216.                    #build: false
  217.           #these flags are applied to this group whenever they are outside a residence
  218.           #these flags will override the flags at the top, under the Global section.
  219.           World:
  220.                 Global: #these flags will apply to all worlds
  221.                      #build: false
  222.                 WorldNameHere: #or you can apply them by each individual world
  223.                      #build: false
  224.  
  225. # You can manually specify the group a player is in below, this overrides their permissions group.
  226. GroupAssigments:
  227.      bekvon: default
  228.      player: default
  229.  
  230. ItemList: #this is where you can create blacklists / whitelists
  231.      ListName: #list name is not important, as long as it is unique. Its good to use a descripive name.
  232.         #type of the list, can be blacklist or whitelist
  233.         Type: blacklist
  234.         #If you want, you can have this list only apply to one world, otherwise it applys to all worlds
  235.         World: world
  236.         #You can also have the list apply only to one group, otherwise it applys for all groups
  237.         Group: default
  238.         #this is the actual list of material names that this list allows or dissallows
  239.         #You can look up the material name by item ID in game by typing /res material <id>
  240.         #Alternativly, you can simply use the item ID in the list, but its less descriptive and harder to see what the list allows or dissallows at a glance
  241.         Items:
  242.            - 'TNT'
  243.  
  244. # Used to determine which major revision of Residence this config is from, dont change this.
  245. ResidenceVersion: 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement