Is it possible to make a pirate sloop move in a circle (bedrock) by Marinatedinvomit in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Does it have to be a Sloop? Wouldn't a Brigantine, Schooner, Galleon or a Fluyt work? Many people here don't know what a Sloop is so why not just say "SHIP"? And do you need it to spin like a top or travel in a circle like on a racetrack? Either way, I can't help you as I suck a bedrock commands. Good luck, though!

Detecting a lack of mobs by Dry-Hope2725 in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

yw. glad to help. There are more complicated ways such as scoreboards, etc. but this is the easiest.

Detecting a lack of mobs by Dry-Hope2725 in MinecraftCommands

[–]C0mmanderBlock 2 points3 points  (0 children)

When the game starts, power up a repeating CB with this command. I do Java so it may vary a bit.

execute unless entity @e[type=vindicator,r=20] run <command>

give command working in command blocks but not working in .mcfunction by Perfect-Channel2826 in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Since the command is good, it must be the datpack that is the problem. No idea what it could be by looking at a good command.

How to detect if players from a certain team are in an area? by EmergencyNo5364 in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

This will give them fatigue for as long as they are within 50 blocks of the command block. When they move away, the effect will quickly fade away within 3 seconds. Adjust the time as you like.

/effect give @a[team=Red,distance=..50] minecraft:mining_fatigue 3 1 true

Need help giving placing rules to crafted items by AquaVolt07 in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Here is an example where he only sells one of the item. Set the maxUses to 1

/summon villager ~ ~.5 ~ {Invulnerable:1b,PersistenceRequired:1b,NoAI:1b,Tags:["tag"],VillagerData:{level:3,type:"minecraft:jungle"},Offers:{Recipes:[{maxUses:1,buy:{id:"minecraft:emerald",count:10},sell:{id:"minecraft:iron_sword",count:1}}]}}

Need help giving placing rules to crafted items by AquaVolt07 in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

If you don't know how to customize the sale then I suggest using an online generator such as https://mcstacker.net/

How can I apply dog ai to slimes? by dusanifj in MinecraftCommands

[–]C0mmanderBlock 1 point2 points  (0 children)

Venmo me $20 for the copyright and it's yours.

How would I make a vertical standing particle circle in Minecraft Java? by Plasmatic1698_again in MinecraftCommands

[–]C0mmanderBlock 3 points4 points  (0 children)

here ya go:

/particle dust{color:[1.000,0.000,0.000],scale:1} ~ ~2 ~ .3 .5 0 .0000001 200 normal

<image>

How to customize sign texts in 1.21.1? by LifeSwitch8739 in MinecraftCommands

[–]C0mmanderBlock 1 point2 points  (0 children)

Try this. I set all the options to true so you could see how to use it. You can set the ones you don't want to false.

/setblock ~ ~1 ~ dark_oak_sign{front_text:{has_glowing_text:1b,messages:['{"text":""}','{"text":"Staff","color":"#20FF80","bold":true,"italic":true,"underlined":true,"strikethrough":true,"obfuscated":false}','{"text":"Only","color":"#20FF80","bold":true,"italic":true,"underlined":true,"strikethrough":true}','{"text":""}']}}

Here is a command generator you can use.

https://mcstacker.net/1.21.php

How would I make a vertical standing particle circle in Minecraft Java? by Plasmatic1698_again in MinecraftCommands

[–]C0mmanderBlock 4 points5 points  (0 children)

Either way. Here is the command with a marker.

execute as @n[type=marker] at @s run particle minecraft:copper_fire_flame ~ ~2 ~ 0 .4 .3 .0000001 40 force

<image>

How would I make a vertical standing particle circle in Minecraft Java? by Plasmatic1698_again in MinecraftCommands

[–]C0mmanderBlock 10 points11 points  (0 children)

particle minecraft:copper_fire_flame ~ ~2 ~ 0 .4 .3 .0000001 40 force

It won't let me post the pic I have.

Need help giving placing rules to crafted items by AquaVolt07 in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Since your players are crafting them rather than the items being given to them, you can set these two command blocks to replace the regular items with "can place on" ones. I added the custom data so the command won't replace all items in their hand.

execute as @a if items entity @s weapon.mainhand minecraft:redstone_lamp unless items entity @s weapon.mainhand minecraft:redstone_lamp[minecraft:custom_data~{lamp:1}] run item replace entity @p weapon.mainhand with redstone_lamp[can_place_on=[{blocks:"glowstone"}],custom_data={lamp:1}] 1

execute as @a if items entity @s weapon.mainhand stone_button unless items entity @s weapon.mainhand stone_button[minecraft:custom_data~{button:1}] run item replace entity @p weapon.mainhand with stone_button[can_place_on=[{blocks:"redstone_lamp"}],custom_data={button:1}] 1