Discofalafel Posted August 31, 2022 Share Posted August 31, 2022 Hallo Gibt es ein plugin welches einem ermöglicht das man ein Command nur mit einem bestimmten item in der Hand ausführen kann? Link to comment Share on other sites More sharing options...
TileEntity Posted September 1, 2022 Share Posted September 1, 2022 Sowas wird in der Regel mit Command-Blöcken umgesetzt. Leg ein Slot im Inventar fest und lass einen Commandblock prüfen, ob ein bestimmtes Item hereingelegt wurde. Damit führst du dann einen Command aus. Als Beispiel: Du nimmst den Slot Offhand (also die andere Hand/Schild-Slot) - der hat die ID 99 - bzw. {Slot:99b} https://minecraft.fandom.com/wiki/Slot Als Item nehmen wir Stein (minecraft:stone) Der Beispiel-Command ist /tp 100 64 100 In einen Commandblock, der auf Always Active und Repeat gesetzt ist, kommt dann: /execute if @a[nbt={Inventory:[{Slot:99b,id:"minecraft:stone"}]}] run tp 100 64 100 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