Christian Thelen Posted May 14, 2021 Share Posted May 14, 2021 Hallo ich würde sehr gerne ein Command machen wenn man /.... eingibt das dann ein Item von einen anderen Spieler Inventar in einen GUI angezeigt wird Das ist mein Code der Command ist noch nicht vollständig komm aber sonst nicht weiter package de.testcommand.testcommand; import org.bukkit.Bukkit; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.entity.Player; import org.bukkit.inventory.Inventory; import org.bukkit.inventory.ItemStack; import org.bukkit.plugin.java.JavaPlugin; public final class TestCommand extends JavaPlugin { public static Inventory kill; @Override public void onEnable() { // Plugin startup logic } @Override public void onDisable() { // Plugin shutdown logic } private void createInventory() { Inventory inv = Bukkit.createInventory(null, 9*3, "KillPlayerItems"); Player p = (Player) Bukkit.getOnlinePlayers(); ItemStack item = new ItemStack(); } public boolean onCommand(CommandExecutor sender, Command cmd, String label, String[] args) { if (label.equalsIgnoreCase("Items")) { if(!(sender instanceof Player)) { ((Player) sender).sendMessage("[Kill] This Plugin cannot open this GUI"); return true; } Player p = (Player) sender; p.openInventory(kill); return true; } return false; } } Ich bedanke mich jetzt schon für eure Hilfe LG Benjamin Link to comment Share on other sites More sharing options...
TileEntity Posted May 14, 2021 Share Posted May 14, 2021 Schau da bei anderen ähnlichen Plugins: https://github.com/Play1live/Invsee https://github.com/Blaumeise03/InvSee Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now