Blockvalues.yml

This page details the configuration file "blockvalues.yml", providing context as to how to edit it properly and providing the default configuration file for the plugin.

If you have any questions, check the FAQ, and if you're still not sure, feel free to ask in our discord server.

Note: Most of what is outlined here is for reference only - if you copy sections of text to use in your own configuration file, it may break it, so use it at your own risk.

Island Value

Island value is determined by the amount of valuable blocks on an island, multiplied by their respective values. This is different from Island experience, which you can read more about here.

Breakdown

The two sections listed here, while distinct, share a common layout, as described below.

  • values: The type of values listed.

    • BLOCK: The type of block being assigned a value.

    • value: The value of the block, per block.

    • name: The name of the block for the GUI found in /is blockvalues.

    • slot: The slot number for the GUI found in /is blockvalues.

Block Values

Block values determine obtainable block values, such as IRON_BLOCK. These are found under the Block Values page in /is blockvalues. Entries under this category must follow the Minecraft Block entry list, which can be found here.

Spawner Values

Spawner values determine spawner block values, such as PIG:. These are found under the Spawner Values page in /is blockvalues. Entries under this category must follow the Minecraft Entity entry list, which can be found here.

Note: Spawners are not obtainable without a spawner plugin. We recommend Rose Stacker.

Adding your own entries

You can add your own entries to the value index by simply copying sections of the default configuration. It should look like this:

---
blockValues:
  BLOCK:
    value:
    name:
    page:
    slot:
spawnerValues:
  ENTITY:
    value:
    name:
    page:
    slot:

Note: The top line is required in the configuration file.

Note: If you need information on how the GUI is formed, you can review it here.

Default Configuration

---
blockValues:
  IRON_BLOCK:
    value: 3.0
    name: "&b&lIron Block"
    page: 1
    slot: 10
  GOLD_BLOCK:
    value: 5.0
    name: "&b&lGold Block"
    page: 1
    slot: 11
  DIAMOND_BLOCK:
    value: 10.0
    name: "&b&lDiamond Block"
    page: 1
    slot: 12
  EMERALD_BLOCK:
    value: 20.0
    name: "&b&lEmerald Block"
    page: 1
    slot: 13
  NETHERITE_BLOCK:
    value: 150.0
    name: "&b&lNetherite Block"
    page: 1
    slot: 14
  HOPPER:
    value: 1.0
    name: "&b&lHopper"
    page: 1
    slot: 15
  BEACON:
    value: 150.0
    name: "&b&lBeacon"
    page: 1
    slot: 16
spawnerValues:
  PIG:
    value: 100.0
    name: "&b&lPig Spawner"
    page: 1
    slot: 10

Last updated