Giter Club home page Giter Club logo

chestrefill's Introduction

ChestRefill

A serverside mod that refills loot containers.

How-to

  1. Put the mod in your mods/ folder.
  2. Restart the game / server.
    1. Tweak the config if you need, then use /chestrefill reload
  3. Generate / create new loot chests.
  4. Loot them, wait for given time (default: 4 hours) and reloot them again with another account!

Features

  • configurable (time, max fills, reset loot seed ...)
  • permission support (chestrefill.allowReloot)
  • works on any container extending RandomizableContainerBlockEntity

Permissions

  • chestrefill.allowReloot - allows relooting chest
  • chestrefill.config
    • chestrefill.config.edit - allows in-game config editing
    • chestrefill.config.reload - allows reloading config

Config

You can use an in-game /chestrefill command to edit the config in game. Available options:

# Whether to randomize loot table seed."
# This ensures that regenerated loot is different each time.
# (default = true)
randomize_loot_seed = true

# Whether to allow players to reloot containers
# even if they don't have `chestrefill.allowReloot` permission.
# (default = false)
allow_reloot_without_permission = false

# Max refills per container, inclusive. -1 for unlimited.
# (default = 5)
max_refills = 5

# Whether to add loot even if container has some items already.
# (default = false)
refill_non_empty = false

# Minimum wait time to refill the loot, in seconds.
# (default = 14400 (=4 hours))
min_wait_time = 14400

Per-loot-table customization

You can also set custom values for specified loot tables. Do you want the end city loot table refilled more times than default? Set the following options.

{
  "...": "",
  "// Map to override above config for certain loot tables only.": "",
  "lootModifierMap": {
    "minecraft:chests/end_city_treasure": {
      "randomize_loot_seed": true,
      "allow_reloot_without_permission": true,
      "max_refills": 100,
      "refill_non_empty": false,
      "min_wait_time": 60
    },
    "sample_mod:chests/custom_loot_table": {
      "randomize_loot_seed": true,
      "allow_reloot_without_permission": false,
      "max_refills": 5,
      "refill_non_empty": false,
      "min_wait_time": 14400
    }
  }
}

This will cause the minecraft:chests/end_city_treasure to be

  • relootable by same players
  • refillable 100 times
  • refilled each 60 seconds

Per-container customization

You can customize a chest using the NBT tags. These will override the both config defaults and loot table overrides.


    ChestRefill: {
            RefillCounter: 0,
            SavedLootTable: "minecraft:chests/igloo_chest",
            CustomValues: {
                AllowReloot: 1b,
                MaxRefills: -1,
                MinWaitTime: 60
            }
    }

(RandomizeLootSeed and RefillNonEmpty custom values are also available.)

The command would look like the following:

/setblock ~ ~ ~ minecraft:chest{ChestRefill: {RefillCounter: 0, SavedLootTable: "minecraft:chests/igloo_chest", CustomValues: {AllowReloot: 1b, MaxRefills: -1, MinWaitTime: 60}}}

This will create a lootable container that can be

  • relooted by same players
  • refilled infinitely
  • refilled every 60 seconds

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.