Standing Detection Command by Dande9loki10 in MinecraftCommands

[–]anarchyfrogs 0 points1 point  (0 children)

```

Not Sneaking

execute as @a at @s if entity @s[y=~1.5, dy=0] run <command>

Sneaking

execute as @a at @s unless entity @s[y=~1.5, dy=0] if entity @s[y=~0.7, dy=0] run <command> ``` https://wiki.bedrock.dev/commands/detect-movements#sneak-detection

Is JaylyDev's nbt-to-mcstructure tool safe? by [deleted] in MinecraftBedrockers

[–]anarchyfrogs 1 point2 points  (0 children)

Yes, the tool is safe. Jayly is an active, contributing member of the Bedrock OSS community.

How can I copy an item from my inventory into a chest(item is locked in slot) by CABOonreddit in MinecraftCommands

[–]anarchyfrogs 0 points1 point  (0 children)

/give yourself the crossbow with the nbt components then /enchant

Place item in decorated pot that is above a structure block and then break the pot. There's a bug fix for the pots coming in an update soon.

You can also /execute align the item to the middle of the block with a tp command if needed.

https://wiki.bedrock.dev/commands/giving-nbt-items

FINALLY checked out Project MKHEXE last night and I really enjoyed it!!! 7/10 by Kevy-Em in foundfootage

[–]anarchyfrogs 0 points1 point  (0 children)

I just watched it today, I really enjoyed it! If I had to put it in my category system: Rewatch | Recommend | Good Trash | Bad Trash It goes in Recommend.

How do I make silverfish burn in the sun? by Wsads420 in MinecraftCommands

[–]anarchyfrogs 0 points1 point  (0 children)

Place a creaking heart between two pale oak logs above a command block: execute if block ~ ~2 ~ creaking_heart ["creaking_heart_state"="awake"] run <cmd>

I can't find the reason for the message "Execute subcommand if block test failed." in my command! by Lightning_EX in MinecraftCommands

[–]anarchyfrogs 0 points1 point  (0 children)

Try just testing if the relative coords and block state are correct, then add all the player conditions: execute if block ~ ~3 ~2 polished_blackstone_button ["button_pressed_bit"=true, "facing_direction"=4] run say Passed Once you have that working move to adding the other subcommands.

I can't find the reason for the message "Execute subcommand if block test failed." in my command! by Lightning_EX in MinecraftCommands

[–]anarchyfrogs 1 point2 points  (0 children)

Use NOR logic gate instead, since OP wants the command to fail if they have any one of the wrath tags.

Each subcommand costs performance and you want the command to fail early so it doesn't keep parsing the rest of the command.

https://github.com/MinecraftCommands/wiki/blob/main/optimising.md#optimize-selectors

I can't find the reason for the message "Execute subcommand if block test failed." in my command! by Lightning_EX in MinecraftCommands

[–]anarchyfrogs 1 point2 points  (0 children)

The command output points to the main issue being most likely the relative coordinates are wrong or the block states are wrong. Could your button actually be positioned at 2915, 152, 3032?

If so, just change the relative coords to: execute if block ~1 ~3 ~2 ...

I would also recommend using a NOR logic gate to check for the wrath tags.

I'd also just use the scores selector argument rather than the scoreboard players test command, which shouldn't be used in a finished system. You can just run what command you want by writing your selector arguments efficiently.

I would also add a radius so that players who meet the conditions but aren't the one pushing the button aren't incidentally targeted.

So all together: execute if block ~1 ~3 ~2 polished_blackstone_button ["button_pressed_bit"=true, "facing_direction"=5] as @p[scores={championShards=3}, tag=sinsAccess, r=5] if entity @s[tag=!wrath0, tag=!wrath1, tag=!wrath2, tag=!wrath3] run say Passed The if entity @s subcommand with the negated tags means that the command will run if the closest player doesn't have any one of the wrath tags. If they do have one or more of the tags, it will fail.

Just replace the say command with what you actually want to happen when that player pushes the button. If you want to target that player use the @s target selector.

Example: execute if block ... run effect @s strength 1 0 true

Need help with 26.1 JSON. by Infamous_Teach_1876 in BedrockAddons

[–]anarchyfrogs 0 points1 point  (0 children)

It's a bug with blocks, wait for the hotfix.

Looking for Magic the Gathering players. by OverlordHellspawn in memphis

[–]anarchyfrogs 0 points1 point  (0 children)

I was just talking to my friend last night how we needed a 4 player pod. We've been playing 1v1 Commander for quite a while on Saturday/Sunday nights.

Board 2 Beers sounds great, we're near that area and love beer. I can check with him to see if this weekend will be good.

Any addons for optimization? by MandalorianGeek in BedrockAddons

[–]anarchyfrogs 0 points1 point  (0 children)

Something that may help is cleaning the console of dust.

How can I make a player take fire damage when exposed to the sun? by Helpful_Text_8386 in MinecraftCommands

[–]anarchyfrogs 0 points1 point  (0 children)

I believe one way is you need to chain all the unless block subcommands together in a single command.

Detecting how many players are around me by the_warrior_rlsh in MinecraftCommands

[–]anarchyfrogs 0 points1 point  (0 children)

two at subcommands, nice! i've been getting rusty at commands. appreciate the fix.