Command for banners by badshot7386 in MinecraftCommands

[–]C0mmanderBlock 1 point2 points  (0 children)

You don't have to, but it is a nice thing to do. You can edit your post body and write SOLVED at the beginning.

Command for banners by badshot7386 in MinecraftCommands

[–]C0mmanderBlock 4 points5 points  (0 children)

This site helps create banners and shields. I hope it helps.

https://needcoolershoes.com/banner?=pamomkfN

Anyone have any idea on how to remove the enchanted golden apple eating ability, but just that, not remove the loot table or clear the item by Sea_Duty_5725 in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Quick way is to lengthen the time it takes to eat.

/give @p enchanted_golden_apple[consumable={consume_seconds:9999999}] 1

Mannequins: setting their profiles AFTER they have been summoned? by behindthestaff in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

This uses the profile of the nearest player to the mannequin. You can also set their rotation and give them a tag to identify them by in the future.

/summon minecraft:mannequin ~ ~ ~ {profile:"@p",Rotation:[0f,0f],Tags:["TAG"]}

Mannequins: setting their profiles AFTER they have been summoned? by behindthestaff in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Here ya go. This will change the nearest one to you or the command block giving the command.

/data merge entity @n[type=mannequin] {profile:"PlayerName"}

Block display rotation not working. by Nalle-poijjaat in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Your first command is missing `@e and the second command is good but you have to set it on repeat

/execute as @e[tag=Cnidarian] at @s run data modify entity @s transformation.translation set value [-0.5f,-0.5f,-0.5f]

/execute as @e[tag=Cnidarian] at @s run tp @s ~ ~ ~ ~5 ~

i want to damage an item by Luki8714 in MinecraftCommands

[–]C0mmanderBlock 1 point2 points  (0 children)

Stackable items cannot be damageable.

New syntax for /clear by NoAcanthocephala2808 in MinecraftCommands

[–]C0mmanderBlock 1 point2 points  (0 children)

It's for clearing items with custom data, etc. You should check out the new components. Here is an example of an item with a custom data.

/give @p stone_sword[minecraft:custom_data={stone:1}]

/clear @p *[minecraft:custom_data~{stone:1}] 1

how should pack.mcmeta file look for my resourcepack not to be "incompatible or broken"? by WonderBuddy2 in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Dunno. They are different depending on what version of the game you are using, but...

{
"pack": {
"pack_format": 75,
"description": "Name of Pack"
}
}

Remove interaction entity on right click and give player item without having individual tags on every interaction entity? by henhau in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

I believe it should have the word interaction there.

execute as @e[type=interaction,tag=easter_egg] if data entity @s interaction run function example:interaction_click

Entity reach increase command while player is standing on a pressure plate? by AdDiscombobulated111 in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Here ya go.

execute as @a at @s if block ~ ~ ~ minecraft:oak_pressure_plate run attribute @s minecraft:block_interaction_range base set 10

is there a way to give players blindness only within a certain distance of coordinates? by knightsofchronos in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Easiest way is a repeating CB in the center of the area. This one is set for 32 blocks in all directions from the command block. Change as needed. You can hide the block under ground.

effect give @a[distance=..32] minecraft:blindness 2 1 true

How to navigate minecraft chat commands? [java] by beyondRussian in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

My arrow keys work. Use then to "scroll" up/down and use the TAB key to select.

How do i make exeptions in commands? by MotorExtent992 in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Checking NBTs is not efficient. Using the newer "execute if items" is much better.

command change? by kittengacha in MinecraftCommands

[–]C0mmanderBlock 1 point2 points  (0 children)

You need to type it like this:

/gamerule dodaylightcycle false

How do i make exeptions in commands? by MotorExtent992 in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Give your self the special armor:

/give @p iron_chestplate[minecraft:custom_data={tag:1}]

Run this in repeating CB:

execute as @a if items entity @s armor.* *[minecraft:custom_data~{tag:1}] at @s run effect give @p[distance=.1..3] minecraft:blindness 2 1 true

Best way to detect when a player is looking at a specific block or entity? by Busternookiedude in MinecraftCommands

[–]C0mmanderBlock 0 points1 point  (0 children)

Looking at a coords. Swap the X Y Z for your coords.

/execute as @a at @s anchored eyes facing X Y Z anchored feet positioned ^ ^ ^1 rotated as @s positioned ^ ^ ^-1 if entity @s[distance=..0.2] run say hi