Suche minecraft plugin das mod items verkaufen kann?

Hallo, ich bin auf der Suche nach einem Minecraft-Plugin, das Gegenstände über eine Kiste verkaufen kann. Ich habe auch eine gefunden, aber dies kann mod items nicht verkaufen.

Wildchest

Hier die Config von wildchest:

#########################################################
##                                                     ##
##              WildChests Configuration               ##
##                 Developed by Ome_R                  ##
##                                                     ##
#########################################################


# How much time should be passed between sell and crafting notifies? (in ticks)
# Set 0 to disable this feature.
notifier-interval: 1200


# When enabled there will be a list of items that has been sold and crafted.
detailed-notifier: false


# When enabled, a gui will be popped to confirm chest expand purchase. Otherwise, it will be done in chat.
confirm-gui: false


# Specify a command to be executed when a sell is running.
# {player-name} - use as the player's name
# {price} - use as the price of item
# Set to '' in order to disable the feature.
sell-command: ''


# When enabled, the values will be formatted (e.g 10B, 1T)
sell-format: false


# Should the chest item be dropped on explosions?
# Set a chance of it to get dropped between 0 and 100.
explode-drop-chance: 100


# Choose which prices plugin to check for prices:
# Auto, CMI, EconomyShopGUI, Essentials, ExcellentShop, GUIShop, newtShop, NextGens, QuantumShop, ShopGUIPlus, zShop
prices-provider: Essentials


# What stacker provider should the plugin use? (WildStacker, RoseStacker, Auto)
stacker-provider: Auto


# Built-in prices list.
# Use the "ID:PRICE" or "ID:DATA:PRICE" formats.
prices-list:
- STONE:5
- LOG:0:5


# All settings related to database.
database:
  # Automatically delete data from invalid worlds.
  invalid-world-delete: false


# All settings related to hooks
hooks:
  # Should items dropped by the plugin get directly stacked by WildStacker?
  wildstacker: true


# The maximum pickup delay items can have for the suction chests to pick them up.
maximum-pickup-delay: 32767


# The plugin brings tons of new custom and unique chests to your server. All the chests are configurable, and
# you can create and mix between them. You can create chests that stores infinite amount of items, chests that
# are connected to player vaults or factions, linked chests and many more!
#

Minecraft Plugin, Minecraft Java Edition
Schneebälle Despawnen Blöcke?

Hey, kennt sich hier jemand aus mit Java 8? Ich code derzeit an einem Minigame für Minecraft und weiß nicht weiter :/ Kann mir da jemand helfen? Das hier ist bisher der Quelltext und irgendwie möchte dieser nicht Funktionieren, folgendes sollte eigentlich passieren: Man Schließt mit einem Schneeball auf ein Block, die Block Location und das Material wird in einem String Gespeichert. Sobald der Schneeball einen Block trifft wird der Block zu Luft. 1.5 Sekunden Später sollte der selbe Block wieder an der selben Stelle erscheinen. Bei Glas, Wolle & Tonblöcken etc. sollte die Farbe mit übernommen werden.

@EventHandler
  public void onHit(ProjectileHitEvent e) {
    Projectile p = e.getEntity();
    if (e == null) {
    	return;
    }
    if (p instanceof Snowball) {
    	if (((HumanEntity) e.getEntity().getShooter()).getItemInHand().getItemMeta().getDisplayName().equals("§8» §aBlockspleefer")) {
    		Material block1 = p.getLocation().getBlock().getType();
    		Block block = p.getLocation().getBlock();
    		p.getLocation().getBlock().setType(Material.AIR);
    		p.remove();
    		new BukkitRunnable() {
  		  @Override
  		  public void run() {
  		  	block.setType(block1);
  		  }
    		}.runTaskLater(FirstJumpingMain.getInstance(), 30);
    	}
    }
  }
PC, Server, Microsoft, Java, Minecraft, Eclipse, Minecraft Server, Mojang, Spigot, Java 8, Minecraft Java Edition, eclipse java

Meistgelesene Fragen zum Thema Minecraft Java Edition