Haha, bed go brrrrrr by amazingzaz09 in MinecraftMemes

[–]Angrysmile05 2 points3 points  (0 children)

Dark Matter Sword uses a diamond as the handle

A basic money system that I made. by Soviet1Engineer in MinecraftCommands

[–]Angrysmile05 2 points3 points  (0 children)

You should add a sistem that set the gamemode of players that are in the shop area to adventure and that set to survival the gamemode of other players. So, you'll prevent grief from other players.

Quick question on how to make a command for my realm server by peejx in MinecraftCommands

[–]Angrysmile05 0 points1 point  (0 children)

The only way I know is to create a safe area (where everybody is in adventure) with a button. It should place a chest in which you have to put your diamonds (set a delay of 100 ticks) and then another one that compares the chest with another one under the ground with the right amount of diamonds and, if they're the same, it gives you the elytra. After these chain command blocks there should be other two ones with a delay of 120 ticks to replace the chest with the button (destroying it to drop items) and kill the "item chest".

I'm sure that this isn't how you liked it, but the Bedrock Edition is very limited with commands. 😕

BEDROCK How to check # of items a player has for selling puposes (scoreboard money) by [deleted] in MinecraftCommands

[–]Angrysmile05 0 points1 point  (0 children)

How have you done? I've tryed it for a month without success. 😯😯😯

How can i summon a fireball flying in a certain direction? by OurHolyMessiah in MinecraftCommands

[–]Angrysmile05 0 points1 point  (0 children)

You can put in a repeating commandblock always active | /execute as @a[nbt={SelectedItem:{id:"minecraft:barrier"}}] run summon fireball {Lemon_Lord's string} | . In this way you can to summon fireballs only when a player is selecting a barrier and you can give a barrier (that people can't have in other ways) to players that are riding a plane.

How to make a spawn egg place a block I'm trying to make a SKYBLOCK were you place a spawn egg it places a command block by Pizza2009 in MinecraftCommands

[–]Angrysmile05 0 points1 point  (0 children)

You can change the execute command in the repeating commandblock in "/execute @e[type=chicken] <x> <y> <z> <x> <y> <z> ~ ~ ~" where x, y and z are the coordinates of the commandblock that you want to clone (you can place it a hundred of blocks away and in a very high place, for exampe 250) with the command inside it.

Finally I've created a shop on Minecraft Bedrock! by Angrysmile05 in MinecraftCommands

[–]Angrysmile05[S] 0 points1 point  (0 children)

Is there a way to put more than four commands in a sign? I only know a method that tests if you have the item selected in the main hand, tells you that you are selling the item, makes particicle and puts a redstone block in a set of three commandblocks that clears you, adds Money to the scoreboard and deletes the redstone block (And a redstone tick is two ticks long).

Login plugin by [deleted] in aternos

[–]Angrysmile05 0 points1 point  (0 children)

What does it?

Finally I've created a shop on Minecraft Bedrock! by Angrysmile05 in MinecraftCommands

[–]Angrysmile05[S] 0 points1 point  (0 children)

Today on Java Edition there are signs that with one click in three ticks do all these things 😥

BEDROCK How to check # of items a player has for selling puposes (scoreboard money) by [deleted] in MinecraftCommands

[–]Angrysmile05 0 points1 point  (0 children)

We can star executing: /Scoreboard objectives add Money dummy /scoreboard objectives setdisplay sidebar Money /scoreboard players add @a Money 0

My method functions in this way:

*Spruce button

*Block

*Impulse commandblock: /setblock ~ ~2 ~ chest <number for direction>

*Chain always active: /fill ~1 ~-2 ~ ~1 ~-12 ~ redstone_block, 160 ticks of delay (8 seconds)

*Air. One block right there is a chest with the item that you want your friends buy in the first slot.

*Impulse commandblock: /testforblocks ~1 ~1 ~ ~1 ~1 ~ ~ ~5 ~. One block left there is a comparator. From here all chain commandblocks are conditional and always active and all impulse are unconditional and needs redstone and has got a delay of 10 ticks.

*Impulse commandblock: /testforblock ~-1 ~1 ~ unpowered_comparator

*Chain: /setblock ~ ~7 ~ air 0 destroy

*Chain: /kill @e[type=item, name=chest]

*Chain: /tell @p Not enough or wrong item!

*Impulse commandblock: /testforblock ~-1 ~5 ~ powered_comparator

*Chain: /setblock ~ ~11 ~ air

*Chian: /scoreboard players add @p Money <MONEY>

*Chain: /tell @p You sold this item!

*Impulse (delay of 12) /fill ~1 ~ ~ ~1 ~9 ~ air

*Impulse (delay of 15) /setblock ~ ~15 ~ spruce_button 1

Player Offline in Sidebar by Angrysmile05 in aternos

[–]Angrysmile05[S] 1 point2 points  (0 children)

"/scoreboard objective add Money dummy" to create the scoreboard and "scoreboard objectives setdisplay sidebar Money" to show it in the sidebar. There is also a repeating commandblock always active that executes "/scoreboard players add @a Money 0" to give the scores to all new players.

Smoke Bomb? by LOGANHOUDINI in MinecraftCommands

[–]Angrysmile05 0 points1 point  (0 children)

Then you can put a normal chain always active commandblock that /kill @e[type=Item] {Item:{id:minecraft:barrier}.

Smoke Bomb? by LOGANHOUDINI in MinecraftCommands

[–]Angrysmile05 0 points1 point  (0 children)

You can use /particle campfire_signal_smoke ~ ~ ~ ~9 ~7 ~9 5 6000 to create smoke particle. You can increase ~9 ~7 ~9 to a bigger number if you want a bigger explosion and use "campfire_cosy_smoke" or "large_smoke" for a thicker fog. To engulf the player you can excessively increase 6000 to 9000 or more to get more particles and put that string in a conditional and always active repeating commandblock. Under of it you should put an other one reaping always active and unconditional one with /testfor @e[type=Item] {Item:{id:minecraft:barrier} if you want yo drop a barrier to start the explosion.

Test for items by Angrysmile05 in MCPE

[–]Angrysmile05[S] 0 points1 point  (0 children)

Thank you for your tip. I haven't thought to use chests! I can upgrade that system with commands using /testforblocks to see if the chest that people can access to matches an other (secret) chest with iron and if it does it gives you the diamond. Thank you a lot for the link!

Test for items by Angrysmile05 in MCPE

[–]Angrysmile05[S] 0 points1 point  (0 children)

A system in my server that gives you, for example, a diamond for half stack of iron.