Recent content by RimeOrReason

  • After careful consideration and due to limited usage, we’ve made the decision to discontinue the PaperMC forums. Moving forward, we recommend using Hangar for plugin uploads, and for all other community discussions and support, please join us on Discord.
  1. R

    Make Furnace Light When Certain Blocks are Around It

    Simplified it and fixed, works like you said you wanted it to. Here's the whole class: public class FurnaceListener implements Listener { private static final ArrayList<BlockFace> faces = new ArrayList<>(); private static final short burntime = Short.MAX_VALUE; static {...
  2. R

    Question How do i get nbt tags

    I don't know if there's a better way but you can use tr7zw's item nbt api, create a new NBTItem with the itemstack you have and then use hasTag and setString, setInt etc. methods according to what you need. An example in kotlin: val item = ItemStack(Material.HOPPER) val nbtitem = NBTItem(item)...