Coder Social home page Coder Social logo

anihacc / pickupnotifier Goto Github PK

View Code? Open in Web Editor NEW

This project forked from fuzss/pickupnotifier

0.0 0.0 0.0 424 KB

Be notified about all the things you've just collected.

Home Page: https://www.curseforge.com/minecraft/mc-mods/pick-up-notifier

License: Mozilla Public License 2.0

Java 100.00%

pickupnotifier's Introduction

Pick Up Notifier

A Minecraft mod. Downloads can be found on CurseForge.

Configuration

Apart from all the display settings found in the .minecraft/config/pickupnotifier/pickupnotifier-client.toml file, Pick Up Notifier also supports blacklisting or whitelisting individual items from showing up via separate .json based configuration files.

Just as with the client config, all those files need to be put in .minecraft/config/pickupnotifier/. File names do not matter, name your custom configs however you like as long as the extension remains as .json.

Those configs have three fields you can configure:

Key Type Description Mandatory Default
inverted boolean Turns this whole file into a whitelist instead of blacklist. false false
dimension ResourceLocation Id of the dimension for this config to apply in. If left blank or absent this will be the general config for all dimension that do not already have their own config. false ""
items ResourceLocation[] The items to be included in the blacklist/whitelist. Format for every entry is <namespace>:<path>. Path may use asterisk as wildcard parameter. Tags are not supported. false []

Examples

The config file below will show prevent stone, diorite, andesite and granite from showing in the pickup log in all dimensions that do not provide their own config. All other items are shown when picked up.

So considering the two additional examples below, this behavior would not apply to the nether and end dimensions since dimensions with their own config file do not inherit behavior from the general config.

{
    "items": [
        "minecraft:stone",
        "minecraft:diorite",
        "minecraft:andesite",
        "minecraft:granite"
    ]
}

The config file below will only show netherrack, soul sand, soul soil, crimson nylium and warped nylium in the pickup log when in the nether dimension.

{
    "inverted": true,
    "dimension": "minecraft:the_nether",
    "items": [
        "minecraft:netherrack",
        "minecraft:soul_*",
        "minecraft:*_nylium"
    ]
}

The config file below will prevent all pickups from being logged when in the end dimension.

{
    "inverted": true,
    "dimension": "minecraft:the_end"
}

pickupnotifier's People

Contributors

fuzss avatar

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.