- 1 Post
- 4 Comments
Joined 2 years ago
Cake day: November 14th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
PositionAcrobatic769Bto
Minecraft@level-up.zone•How do I set up a command block that teleports someone to a specific coordinate when they use an item with a specific name?English
1·2 years agoyou can do if player drop the item here a tutoria:
/execute if entity u/e[type=item,nbt={Item:{id:“minecraft:^(Item)”}}] run tp u/a ^(~ ~ ~)
set this to a repeating command
PositionAcrobatic769Bto
Minecraft@level-up.zone•Is there a command to make it snow in my world where it doesn't snow? Bedrock editionEnglish
1·2 years agoGo to any snowy biomes and type /weather rain
Yes you can
/execute as u/a[distance=…2] if entity u/e[type=item,nbt={Item:{id:“minecraft:(item)***“,tag:{display:{Name:'{“text”:”***(Your Item Name)”}'}}}}] run tp u/s ~ ~ ~
u can also if player drop the item. The item destroy and get back
Detect when a player drops an item:
/execute as u/a[nbt={SelectedItem:{id:“minecraft:(item)***“,tag:{display:{Name:'{“text”:”***(Your Item Name)”}'}}}}] at u/s run tp u/e[type=item,sort=nearest,limit=1] ~ ~ ~
Destroy the item:
/kill u/e[type=item,sort=nearest,limit=1]
I don’t know if it’s work in multiplayer, please verification the command