config.yml

# Whether or not to check for permissions, if this is true, players are required to have either digfordollars.payfor.* or the ore-specific permission digfordollars.payfor.<oreName>  in order to receive money from breaking an ore.

require-permissions: true

# The delay in server ticks before displaying a message and depositing funds.  this counts from the last ore block broken of a given type.
payout-delay: 20

messages:
  # {0} = total funds earned, {1} = quantity of the ore type, {2} = the ore display name
  paid: "&6You have recieved {0} &6for mining {1} {2}&6."

ores:
  # this name is used for ore-specific permissions of the format digfordollars.payfor.diamond
  diamond:
    # if 'display' is a list, the 2nd entry is used for plural representations otherwise the provided value is used for both singular and plural.
    display: ["&bDiamond ore block", "&bDiamond ore blocks"]

    # one or more Material names or id's
    material: DIAMOND_ORE

    # the monetary value of each block broken.
    value: 100

    # if true (the default), money will only be paid if the block is mined with the correct tool.  otherwise money is paid when the block is broken regardless if anything drops from it.  This can be used to allow payout for custom ore-types like glass and mob spawners, which do not drop items at all.
    checkDrops: true

  emerald:
    display: ["&aEmerald ore block", "&aEmerald ore blocks"]
    material: EMERALD_ORE
    value: 125
  lapis:
    display: ["&9Lapis ore block", "&9Lapis ore blocks"]
    material: LAPIS_ORE
    value: 75
  redstone:
    display: ["&cRedstone ore block", "&cRedstone ore blocks"]
    material: [REDSTONE_ORE, GLOWING_REDSTONE_ORE]
    value: 35
  quartz:
    display: ["&fQuartz ore block", "&fQuartz ore blocks"]
    material: QUARTZ_ORE
    value: 50
  coal:
    display: ["&7Coal ore block", "&7Coal ore block"]
    material: COAL_ORE
    value: 10

Comments

Posts Quoted:
Reply
Clear All Quotes