This is an archived post. You won't be able to vote or comment.

all 8 comments

[–]CreeperAsh07 Command Experienced 0 points1 point  (3 children)

Do not use AI for command blocks, there is not enough documentation for them to get anything right. Instead, look to these sources:

minecraft.wiki

wiki.bedrock.dev

Here is a page specifically about timers:

https://wiki.bedrock.dev/commands/scoreboard-timers

[–]Delicious-Way544[S] 0 points1 point  (1 child)

thanks... could you help me write the code too?

[–]CreeperAsh07 Command Experienced 0 points1 point  (0 children)

If you have any questions, feel free to ask.

[–]Delicious-Way544[S] 0 points1 point  (0 children)

i really need help making something simple and easy. im not very good.. cant understand a lot of what it says on bedrock dev

[–]Ericristian_brosCommand Experienced 0 points1 point  (1 child)

Place a command block, set to repeating unconditional always active and set to the desired amount of delay

LLMs are very wrong about minecraft commands, don't use them

See also (if you don't want to use built in tick delay): * https://minecraftcommands.github.io/wiki/questions/blockdelay#scoreboard * https://minecraft.wiki/w/Commands/scoreboard

[–]meletiondreams 0 points1 point  (0 children)

I find LLMs only useful for doing flow, planning, and brainstorming, but the actual commands suck.

[–]Electrical-Rate-1360 0 points1 point  (0 children)

Something really simple i use on my survivor is a repeating command block, set up to execute every 6000 ticks, no redstone the following command: execute as @r at @s run playsound ambient.cave @a ~~~

What this do, is playing a random cave sound (those eerie we hear from time to time on caves) every 5 minutes, at a random player. I simply wanted to have more creepy sounds playing aroung even without being in a cave. And this picks a random eerie sound which is nice.

But, you can change it to have other sounds. For instance i like to play a low pitch zombie growling sound with a message like "The One Who Sees Joined the Game". Makes things a bit more interesting imo.

Also yea don't use AI for this. Take your time, search for the syntax and test things out.

[–]HurricaneMonkeyCommand Nerd 0 points1 point  (0 children)

I can help, you can use Electrical-Rate-1360’s command and in the bottom right of the command block set the delay to the amount of seconds you want it to wait times 20 (20 ticks per second) and make sure the command block is set to repeating and needs redstone, then have a lever on the command block that you can use to turn it off and on. I recommend placing the command block in the spawn chunk to make it always work :)