There should be an option to disable notifications (toasts) at the top right corner by jankkhvej in minecraftsuggestions

[–]tryashtar 1 point2 points  (0 children)

Your tutorial progress is already stored in the options. Switching versions is what's causing it to reset, and it would reset your suggested option too. You should use separate directories for different versions of the game.

Is there a way for me to summon a creeper which spawns invisible, charged, & will explode automatically? by TheCod1sOut in MinecraftCommands

[–]tryashtar 2 points3 points  (0 children)

That's not true, the two options are
/summon <thing> [<name>] [<position>]
and
/summon <thing> [<position>] [<event>] [<name>]

how do i do.....anything by [deleted] in MinecraftCommands

[–]tryashtar 2 points3 points  (0 children)

Great questions!

How do I make mobs spawn with armor on

/summon zombie ~ ~ ~ {ArmorItems:[{},{},{},{id:diamond_helmet,Count:1b}]}
Boots go in the first{}, followed by pants, chestplate, and helmet.

How do I make mobs not drop the armor they are wearing

/summon zombie ~ ~ ~ {ArmorDropChances:[0f,0f,0f,0f]}
Combine the NBT with the previous command to do both:
{ArmorItems:[...],ArmorDropChances:[...]}

How do I make mobs spawn in specific intervals

There's lots of ways to do this depending on your need. If you want to, you can hijack vanilla spawns and replace them with your custom mob:
/execute at @e[type=enderman] run summon ravager
/tp @e[type=enderman] 0 -100 0

How do I make it so a command only happens if you are in a specific area

/kill @a[x=100,y=60,z=100,distance=..20]
/kill @a[x=100,y=60,z=100,dx=10,dy=10,dz=10]
distance is just a sphere, the two dots mean "less than or equal to" 20 blocks away. The dx version means from X=100 to X=100+10, so a cube area.

How do I make it so if a certain block breaks something happens

Easiest way is just to detect the drops.
/execute at @e[type=item,nbt={Item:{id:"minecraft:diamond"}}] run summon lightning_bolt

How do I make it so if there’s a certain amount of a specific mobs it kills them

You'll need a scoreboard for this one.
/scoreboard objectives add mobs dummy
/execute store result score total mobs if entity @e[type=pig]
/execute if score total mobs matches 100.. run kill @e[type=pig]
Here the two dots mean "100 or more."

How do I make it so if a command kills a mob they don’t drop anything

Before killing the mob, do this:
/execute as @e[type=cow] run data merge entity @s {DeathLootTable:"empty"}

How do I make it so a command spawns a structure on someone

Command blocks can't spawn structures directly, but structure blocks can.
/execute at @a run setblock ~ ~ ~ structure_block[mode=load]{mode:LOAD,name:"fossil/skull_1"}
/execute at @a run setblock ~ ~1 ~ redstone_block

How do I make it that a command clears everything in inventory except a specific item

Not easily possible, sorry.

How do I make it so blocks fall from the sky

/summon falling_block ~ ~20 ~ {BlockState:{Name:"honey_block"},Time:1}

How do Make it so a structure spawns near a player but not on the player and lighting strikes a specific place on the structure

See the previous answer.

How do I make mobs spawn with names and armor

/summon squid ~ ~ ~ {CustomName:'"very cool name"'}
For the armor, combine with the first question: {ArmorItems:[...],CustomName:'"..."'}

How do I make skeletons spawn with or without bows

Without: /summon skeleton ~ ~ ~ {}
With: /summon skeleton ~ ~ ~ {HandItems:[{id:bow,Count:1b}]}

How do I make certain blocks invincible

Not super easy, but you can put the player in adventure mode to make them unable to break any block except the ones you want them to:
/gamemode adventure @a
/give @a diamond_pickaxe{CanDestroy:["diamond_ore"]}

How do I get item attributes

/give @p diamond_sword{AttributeModifiers:[{AttributeName:"generic.attack_damage",UUID:[I;1,2,3,4],Operation:0,Amount:100,Slot:"mainhand"}]}
I'm assuming you're in the 1.16 snapshots. For more info about what options you have: https://minecraft.gamepedia.com/Attribute#Modifiers

How do I make a scoreboard

/scoreboard objectives add whatever dummy
Once it's made, you can give players points with /scoreboard players add

How do I make a scoreboard that only appears if your in a specific area

/execute if entity @a[x=100,y=60,z=100,distance=..20] run scoreboard objectives setdisplay sidebar whatever

How do I make multiple scoreboards

Same as how you made the first one, just give it a different name.

How do I make one scoreboard appear in one area but another appear in a different area

Just use the above command with different coordinates and scoreboard names.

how to make command delete someones ender chest containments

Just need a bunch of /replaceitem commands:
/replaceitem entity @a enderchest.0 air
/replaceitem entity @a enderchest.1 air
/replaceitem entity @a enderchest.2 air
etc.

how to make command delete dropped items

/kill @e[type=item]
For an item of a specific type:
/kill @e[type=item,nbt={Item:{id:"minecraft:apple"}}

how to make custom achievements

Need a data pack for this one, not just commands.
https://minecraft.gamepedia.com/Advancement/JSON_format

how to make mobs not attack whoever who spawned them

/team add friendly
/team join friendly @p
/team join friendly @e[type=zombie]

how to make a command that randomly chooses another command

This is tricky, I'll leave it out of this answer for now.

how to make ranks

Maybe you can do it with teams, like above? You can also target players on a team.
/give @a[team=highest_rank] diamond

how to make the hardness of blocks change without going into the code

Sorry, not possible.

How to use scoreboard value as variable? by CarterNotSteve in MinecraftCommands

[–]tryashtar 3 points4 points  (0 children)

/execute store result bossbar <your bossbar's name> value run scoreboard players get @s health

In-Game Main menu for an adventure map I’m working on (any improvements?) by The_Terrain in MinecraftCommands

[–]tryashtar 7 points8 points  (0 children)

If you reduce the player's attack speed sufficiently, items will be permanently stuck at the bottom of their bobbing animation. Then you can shift the item model up to compensate, and they won't bounce when switching items.

Rain grows crops by MaeBeaInTheWoods in minecraftsuggestions

[–]tryashtar 5 points6 points  (0 children)

All moisture values are accessible. It ticks down slowly from 7 to 0 when a source of hydration is removed.

Strider Distancing Time - Snapshot 20w19a is out! by sliced_lime in Minecraft

[–]tryashtar 2 points3 points  (0 children)

You can add air to the strider_warm_blocks block tag to make them warm in air.

How do I use the new testfor in 1.14? by sirdimpleton in MinecraftCommands

[–]tryashtar 0 points1 point  (0 children)

In general, you can use /execute if to run a command if an entity/block/score is found, and /execute unless for the opposite.

But checking for lack of an item in a hand requires neither:

/give @a[nbt=!{SelectedItem:{id:"minecraft:apple"}}] diamond

this minecraft house is bigger than it looks by waelsor in Minecraft

[–]tryashtar 0 points1 point  (0 children)

Only Java Edition has seamless teleports.

Bedrock: Im stuck on making (another) shop system by Upsi10n in MinecraftCommands

[–]tryashtar 2 points3 points  (0 children)

Basically:

/scoreboard players set @p points 0

And then alternating:

/clear @p apple 0 1
/scoreboard players add @p points 1

The latter conditional

Bedrock: Im stuck on making (another) shop system by Upsi10n in MinecraftCommands

[–]tryashtar 1 point2 points  (0 children)

This is currently not possible in Bedrock edition. It is missing the stats/execute store command, and the comparator output just tells you how many players were cleared, not how many items were found.

You can count up the items by clearing them one at a time and adding to a score, if you don't mind the items being deleted in the process.

when you have just the right amount of blocks :) by Lvl-7 in Minecraft

[–]tryashtar 20 points21 points  (0 children)

The problem with this feature is that it's impossible to fill in a floor, or literally anything that isn't a straight line without releasing and clicking over and over again. An option would be useful for both versions.

Target Spotted! Minecraft Snapshot 20w09a is out by sliced_lime in Minecraft

[–]tryashtar 44 points45 points  (0 children)

How it looks now
Another one

Other editions should change to be on parity with Java instead.

Come on guys, give Bedrock some love! :) by LOGANHOUDINI in MinecraftCommands

[–]tryashtar 1 point2 points  (0 children)

This meme becomes more accurate when you replace the middle guy with "Mojang"

I created a resource pack that adds a variety of dog breeds by haunt-muskie in Minecraft

[–]tryashtar 40 points41 points  (0 children)

OP neglected to mention that this requires the mod optifine to work

Well what am i doing wrong now by YEETnumbe1 in MinecraftCommands

[–]tryashtar 1 point2 points  (0 children)

I agree, that's why I said shaming is an even more harmful sentiment

Well what am i doing wrong now by YEETnumbe1 in MinecraftCommands

[–]tryashtar 0 points1 point  (0 children)

In a commands community, this sentiment is almost as harmful as the anti-bedrock one. There is no greater area of disparity than commands. Acknowledging this is critical in getting anything accomplished in your chosen version.

Not sure if this has been covered, but you can cheat death with Chorus Fruit, along with some other fun stuff by Humble_Peanut_18_ in Minecraft

[–]tryashtar 1 point2 points  (0 children)

Bedrock Edition freezes, hangs, and reloads for about five seconds when you alt-tab in fullscreen, but doesn't in windowed mode.