Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
/ RandyOres Public archive

Some guy told me to make a plugin similar to MineEconomy but 1.16 updated.

License

Notifications You must be signed in to change notification settings

woongzeyi/RandyOres

Repository files navigation

RandyOres

A mining economy plugin made for Paper Spigot servers.

Version compatibility

Minecraft version Compatibility
1.15 or below Unsupported due to being compiled with Minecraft 1.16 API
1.16 Supported natively
1.17 Supported

Installation

  1. Make sure you have Vault plugin, and an economy system plugin installed.
  2. Copy the plugin jar file into /plugins directory
  3. Adjust the config file inside /plugins/RandyOres to your likings.
  4. Enjoy!

Config

Settings

  • allowSilkTouch
    • When true, players are able to get money when mining with silk touch enchanted pickaxe.
    • Defaults to true
  • allowedSilkTouchBlocks
    • A list of blocks that are immune to allowSilkTouch, that means these blocks will give money even if player is mining with silk touch enchanted pickaxe.
    • Must be in YAML list form for system to recognize.
      # Option 1
      allowedSilkTouchBlocks:
        - STONE
        - COAL_ORE
      
      # Option 2
      allowedSilkTouchBlocks: [STONE, COAL_ORE]
    • Defaults to null
  • allowCreativeMode
    • When true, players are able to get money when breaking blocks in creative mode.
    • Defaults to false.

Blocks

Under this key should be lines of String to Integer key-value pairs which its String is a block's enum name and Integer is the block's price.

For example:

Blocks:
  BEACON: 100
  BRICK: 5

Permissions

  • randyores.blockpermoney
    • Allow players to get money when mining specific block.
    • Defaults to everyone