[Minecraft Java] How to make a Minigame Clock

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ม.ค. 2025

ความคิดเห็น • 238

  • @dimani128
    @dimani128 ปีที่แล้ว +9

    This is the best command block tutorial I have seen in a very long time, even if it's slightly outdated.

  • @fireworks1997
    @fireworks1997 2 ปีที่แล้ว +18

    I have never seen such a well explained commandblock video as this. Well done

  • @dpaaron1
    @dpaaron1 3 ปีที่แล้ว +10

    Great tutorial! Adding the acutal commands in the description is very helpful and solved my problem thanks for sharing :)

  • @ultimategames78
    @ultimategames78 3 ปีที่แล้ว +5

    This is a very very useful tutorial, I've used this at least 20 times now..

  • @julianwood5262
    @julianwood5262 4 ปีที่แล้ว +14

    Very nice job, i'll be using this very often in my minigames

  • @maartenvb5912
    @maartenvb5912 3 ปีที่แล้ว +6

    Thanks so much! Been working on a minigame that includes defusing a bomb with a countdown and such and couldnt do it with out this vid

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +5

      Shoot a link once it's done! Would love to play

  • @ChibiRansu
    @ChibiRansu 2 ปีที่แล้ว +1

    This is a very helpful video, grateful for the commands in the description as well!

  • @David09595
    @David09595 3 ปีที่แล้ว +8

    The best tutorial I've ever seen

  • @PurpleFire71
    @PurpleFire71 2 วันที่ผ่านมา +1

    Hi, good tutorial, but i have a problem.
    At minutes 3:15,in my gameplay the block does not disappear, can u help me?

  • @omar_walid7424
    @omar_walid7424 10 หลายเดือนก่อน +1

    thank you! the tutorial was perfect 👌 but i wanted to ask can i use multiple timers in the same world?

    • @faultinyoutube
      @faultinyoutube  10 หลายเดือนก่อน +2

      Yep! Just use a new #TimerEntity (Can name it like #TimerEntityTwo or #ShotClockEntity or something) in place of, well, #TimerEntity, and a second bossbar (/bossbar add 2 {"text":"0:0"}) and use that in place of minecraft:1 (you can also give the bossbars better names than '1' and '2' iirc

  • @tademo546
    @tademo546 ปีที่แล้ว

    Thanks, I've been searching for something like this for hours

  • @fata_set
    @fata_set 2 ปีที่แล้ว +2

    Thanks, I used it for the 24 hours clock in my server :)

  • @gabek.2952
    @gabek.2952 ปีที่แล้ว

    Worked flawlessly and perfectly explained. Sub for u sir!

  • @faultinyoutube
    @faultinyoutube  4 ปีที่แล้ว +17

    Small error in the setup: [ /bossbar set players Minecraft:1 @a ] should be [ /bossbar set Minecraft:1 players @a. ] It is fixed in the description.

  • @faultinyoutube
    @faultinyoutube  4 ปีที่แล้ว +18

    To create the inverse, such as a stopwatch that continually counts up, we need to make some small changes so the system counts up and the bar itself resets every minute. Make these changes:
    A6. /bossbar set minecraft:1 max 60
    B1. /scoreboard players set #TimerEntity TimerScore 0
    B2. /scoreboard players set #TimerEntity TimerMinutes 0
    B5. /execute store result bossbar minecraft:1 value run scoreboard players remove #TimerEntity TimerScore 0
    C1. / scoreboard players add #TimerEntity TimerScore 1
    C2. /execute store result bossbar minecraft:1 value run scoreboard players add #TimerEntity TimerSeconds 1
    C3. /execute if score #TimerEntity TimerSeconds matches 60.. run scoreboard players add #TimerEntity TimerMinutes 1
    C4. /execute if score #TimerEntity TimerSeconds matches 60.. run scoreboard players set #TimerEntity TimerSeconds 0

    • @sonnyh_
      @sonnyh_ 2 ปีที่แล้ว

      how do i make the timer longer then a minute?

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      @@sonnyh_ Set different numbers in setup and reset; n = number of minutes you want. Timerscore = 60*n; Timerminutes = n; bossbar max = 60*n. I use 300 in the desciption for 5 minutes

    • @sonnyh_
      @sonnyh_ 2 ปีที่แล้ว

      @@faultinyoutube this is for the timer counting up right?

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      @@sonnyh_ No, counting down, I see what your asking now! For the counting up timer you just need to set the max to the Max number of seconds you want and have a (C3/C4) command to stop the timer when it hits that max value.

  • @MCGamming_server
    @MCGamming_server 9 หลายเดือนก่อน +1

    thanks, this helped me a lot, very good "lesson"

  • @ALexpLK
    @ALexpLK 2 ปีที่แล้ว +1

    Nice tutorial, very clearly structured with those timestamps and good visuals! Thank you

  • @user-zs9mk1xb7q
    @user-zs9mk1xb7q ปีที่แล้ว +1

    Hey I got a few questions,
    1. Is there any way to make it so it doesnt show up like double digits it looks weird, " 9:9 9:8 9:7 9;6 " instead of "9:09 9:08 9:07 9:06)
    2. Also how do we change the colour of the bar and text

    • @faultinyoutube
      @faultinyoutube  ปีที่แล้ว

      1. Similar to how we STOP the clock or set the minutes (C4.), you need to have a check (/exectue if) for those 9 seconds and replace the bossbar name command with one that adds the 0 after the :
      2a. the bossbar has a command 'set id color' that can be used to set its color minecraft.fandom.com/wiki/Commands/bossbar
      If this doesnt change the text as well, you need to add color syntax to your name commands codakid.com/minecraft-color-codes/#:~:text=You%20can%20change%20the%20color,result%20in%20the%20color%20gold.

  • @anikimed
    @anikimed 4 ปีที่แล้ว +14

    Hey! One question... Can the timer work even without the bossbar? I'm working on a map in Bedrock.

    • @gearhorse
      @gearhorse 4 ปีที่แล้ว

      I believe so. Bedrock supports the dummy command for scoreboards, so you should only need a single variable that tracks the amount of seconds in total. Have it go up every second till it hits the timer value you are trying to reach.

    • @anikimed
      @anikimed 4 ปีที่แล้ว +1

      @@gearhorse Thanks! I want to make the timer to at least 10-20 minutes.

    • @ThatShadowBall
      @ThatShadowBall 2 ปีที่แล้ว

      If u dont want bossbar
      Dont type /bossbar
      Type /actionbar add 1 {"text":"Timer"}

  • @Wolfer_illya
    @Wolfer_illya 5 หลายเดือนก่อน

    Hey! Could you please make a guide (when you can) on how to make the shooting gallery mini game that you showed in that video with the game clock. I didn't find any guides on TH-cam for this mini game, I really liked it and I was planning to add it to my big adventure map, which I can then share with everyone and let them play. I would be very grateful to you!

  • @ShuAbLe
    @ShuAbLe ปีที่แล้ว +2

    can someone explain the use of `#TimerEntity` in:
    scoreboard players #TimerEntity
    as I understand only players can have a scoreboard and I don't know what the game does with the # and how to use it in other cases.

    • @faultinyoutube
      @faultinyoutube  ปีที่แล้ว

      # turns the following text into basically a 'fake player.' So its a container that can hold scoreboard values as if it was a player, without having to have another player to hold that variable

    • @ShuAbLe
      @ShuAbLe ปีที่แล้ว +1

      @@faultinyoutube Hey, I never tought I would get a response from the creator itself years later, thanks.

  • @HerrSaint
    @HerrSaint ปีที่แล้ว

    I did everything right, but when the counter reaches zero, it starts reading -1:52 -1:51 -1:50 and so on, and I don't know how to solve it, and I placed the redstone block in the right location

  • @dobby3lf733
    @dobby3lf733 3 ปีที่แล้ว +2

    hello i am a bit confused i am in bedrock edition and the command in 2:17 isn’t working and is giving me an error message

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +4

      This does not work in Bedrock as Bedrock lacks many of the commands needed

    • @dobby3lf733
      @dobby3lf733 3 ปีที่แล้ว +1

      @@faultinyoutube oh ok thank you

  • @tenjensen
    @tenjensen 3 ปีที่แล้ว +2

    Hey Fault, awesome tutorial! I also had another question though. Basically, I'm creating a team game where one team hunts the other team down, and I also need a way to end the game if the hunters eliminate all of the other team, in the same way that the game would end if the timer ran down. I also need the timer to reset because of this and for the game to go back to its original state. Thanks!

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      There are a few different ways to go about team elimination detection. You can use a big detection command block that looks for players in the 'arena' on specific teams or keep track of the number of kills each team gets and compare that to the number of players on said team.
      However you handle detection, stopping the clock is pretty easy. Just have a command block in your system that places the choke redstone-block back into position and places one to reset the timer. (You could also hide the timer at this point.) Then do whatever else you need to reset the game. On the opposite side, when the clock reaches zero, you could have another set of command blocks that does your 'stop and reset' stuff.

  • @luckyknight4818
    @luckyknight4818 2 ปีที่แล้ว +1

    thanks a lot for the tutorial!

  • @GabGab_Games
    @GabGab_Games 2 ปีที่แล้ว +1

    Great video! can you make a video of how to make the 4-4-2 thing?

  • @raeannechong2776
    @raeannechong2776 2 ปีที่แล้ว +2

    nice tutorial, very clear, but i have a question.. maybe im dumb or smth but how do u start the countdown? i'm making a hide and seek minigame and i'm using the countdown for the hiders to hide before the seekers are released

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      At 5:15, the redstone block and 2 repeaters in the BLUE zone act as a 'choke' preventing the clock from activating the command blocks. So to start the clock, you just need to remove that redstone block with a /setblock 'air' command, and the clock will start running

  • @shuachaval5716
    @shuachaval5716 ปีที่แล้ว

    Yo que soy español y entiendo el ingles, bro que buen video, esto me ayudo bastante

  • @ObsidianIsOk
    @ObsidianIsOk 3 ปีที่แล้ว +1

    Where do I put in B0? I am not sure if I put it in the impulse command block because the video shows it as being repeated
    Edit: I was being a peabrain and didnt realize it deletes whenever the redstone block is placed there! my bad

  • @fartmcpoo27
    @fartmcpoo27 3 ปีที่แล้ว +1

    i dowloaded the map and found a sign that said "theres a secret code in the video. Did you find it?"
    and im pretty sure its the code at 1:09 at the wall that says "065 071 260". but i have no idea what to do with it.

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      It's hard to spot, but that's only (1) 8th of the full code 🙃

    • @fartmcpoo27
      @fartmcpoo27 3 ปีที่แล้ว +1

      💀

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      Didn't turn out as clear as I had originally intended 🥶

  • @Bovain_
    @Bovain_ ปีที่แล้ว +2

    If I put all of that into a datapack with no redstone at all will it still work?

    • @faultinyoutube
      @faultinyoutube  ปีที่แล้ว +2

      Probably not 🤔
      I do want to make a data pack version of this, maybe that's something I can jump on soon here! Keep an eye for it!

    • @Bovain_
      @Bovain_ ปีที่แล้ว +1

      @@faultinyoutube Alright thanks, I am making a mini game and I need something that will display how much time is left

    • @faultinyoutube
      @faultinyoutube  2 หลายเดือนก่อน

      @@Bovain_ 1 year after your comment and 4 years after the video was released, I have managed to compile it all into a datapack with a ton of good extra features! Expect a video and download links to come out in the next few weeks or so!

    • @Bovain_
      @Bovain_ 2 หลายเดือนก่อน

      @faultinyoutube Thanks! However I learned how to do it myself 😃

  • @ryancuriel2827
    @ryancuriel2827 3 ปีที่แล้ว +3

    In the video it talks about 10mins, but what input do I use for 60secs that all I need ?

    • @gearhorse
      @gearhorse 3 ปีที่แล้ว +1

      The entire system runs on seconds so just replace the 600 (600seconds or 10 minutes) with 60 (60seconds, 1 minute)

    • @ryancuriel2827
      @ryancuriel2827 3 ปีที่แล้ว

      @@gearhorse ah ok thanks 😊

  • @joshuas.4969
    @joshuas.4969 3 ปีที่แล้ว +3

    Great tutorial. Just wondering how you can hide the bossbar when it runs out and show up when you start it.

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      This one is fairly easy! Just run command A5 again when you want to enable/disable it! ( /bossbar set minecraft:1 players @a )

  • @voltywolty
    @voltywolty 3 ปีที่แล้ว

    thought this would be for bukkit and i got super happy. just to realize that its command blocks :( good video overall tho

  • @Ethan_Barnes
    @Ethan_Barnes 3 ปีที่แล้ว

    At 4:44 the bossbar doesn't change and when I do it it wont turn to full bossbar and no 10:00 timer appear? Please help ASAP

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      Are you copy pasting the commands from the description? Maybe you have a typo?

  • @Andrew.170
    @Andrew.170 ปีที่แล้ว +1

    I downloaded the demo world, and it didn't work there

  • @teamlb2213
    @teamlb2213 2 ปีที่แล้ว +1

    Is there a way to fix the 0 like this number 0:09/0:08/0:07 or more?

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      There is, but its a bit complex, and i didnt want to makw the video even more confusing for a little bug. Basically, for the last 9 seconds, youll need individual command blocks with an execute command that checks TimerScore (similar to C6 (description)) but instead of matches..-1 you read that second (matches..6 for example) and then you do the 'name the bossbar' but instead of saying 'minutes' ':' 'seconds' you have it say 'minutes' ':0' seconds, or literally just the direct time for the second (0:06 for the matches..6 example).
      I think you'd need to 'branch' the command blocks as well so... all in all solving this bug would double the amount of command blocks, but its definitely possible!

    • @teamlb2213
      @teamlb2213 2 ปีที่แล้ว

      I see but thank you for saying about it. I just dont mean about the bug. I mean like i just had to know how i need to use the 0 that are missing after passing by number 10 as a countdown. I can give it a try and will make sure everything is correct. Thank u for tutorial👍

    • @teamlb2213
      @teamlb2213 2 ปีที่แล้ว +1

      Oh and one thing! I am making a minigame that called "Shrieker Hunters". Just got idea for my own minigame ;)

    • @teamlb2213
      @teamlb2213 ปีที่แล้ว

      @@faultinyoutube hey uhhmmm can u say which command block i need to check? (i forgot)

    • @faultinyoutube
      @faultinyoutube  ปีที่แล้ว

      @@teamlb2213 You aren't checking a specific command block, you're running a command block that is checking the TimerScore value, and when it is equal to any of those numbers you have it replace the normal 'set bossbar name' command with one that sets the bossbar name with the additional 0 added on in the ':' part of the string creation.

  • @anytypeoftypical596
    @anytypeoftypical596 6 หลายเดือนก่อน

    If I wanted to cut the command off by finishing the timer early, what command would I use?

  • @Faontastique_
    @Faontastique_ 3 ปีที่แล้ว +1

    hello i don't understand 4:11 can you help me please

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      Yea that's definitely the hardest command to grasp, but it's necessary for it to work visually. Basically, we are renaming the bossbar to a "Variable : Variable" and because of how Minecraft works, we have to write a lot of stuff for each variable. We have to parse the score {"score:", find the name of the entity {"name : ", and get the value of the variable we want that's on that entity, ,"objective:" Thats how we get our number. Then we want the string to print a colon, so we do {"text":":"}. Finally, we want the second variable, so we do the same check but with the TimerSeconds objective/score instead of TimerMinutes.
      Hopefully that helps clear it up?

  • @Azuriiee
    @Azuriiee 3 ปีที่แล้ว

    Whenever I start a timer for example 5 minutes, it starts at 5:59 instead of 4:59. How can I fix this?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      Does it finish at 0:59? Sound like you just need to set Timer:Minutes 1 less when resetting the clock

    • @Azuriiee
      @Azuriiee 3 ปีที่แล้ว

      @@faultinyoutube No, whenever it hits the 5:00 mark it resets back to 5:59, it's really weird but I'll set it up again and see if the problem persists

  • @mc.klerdos5434
    @mc.klerdos5434 3 ปีที่แล้ว

    Great video but I have one problem in my world its that when the timer starts it says 5:0 BUT after the problem is that when it says 4:59 it stops counting down after a min it goes from 4:59 to 3:59 and after that 2:59, 1:59 , 0:59 and the bar does not change. So how can I make it count down and make the bar go down?
    Edit: Oh I made a error that made the bar not go down but when I double checked everything it still didn't count down

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      Glad to hear you are making progress. Sounds like maybe a typo in the B4 & B5 commands, maybe try recopying them? If that still doesnt work I got a quick walkthrough up here: th-cam.com/video/h5gwpgC7X38/w-d-xo.html

    • @mc.klerdos5434
      @mc.klerdos5434 3 ปีที่แล้ว

      @@faultinyoutube Thank you so much for taking time out of your day to help me. I solved the problem it was all good exept the command blocks were at conditional. Thank you for helping me. There is no problem in the video, if anyone is having difficulty they should double check the steps.

  • @lucasmoeckel9678
    @lucasmoeckel9678 ปีที่แล้ว

    For the scoreboard setup idk how to do it ik the commands but I don't know the command blocks to use

  • @thebeautifullimon
    @thebeautifullimon 6 หลายเดือนก่อน

    Is there a way to make it say 01 instead of 1? Like 4;01 seconds instead of 4:1 seconds?

  • @Ohmman
    @Ohmman 3 ปีที่แล้ว

    i wonder if theres a way to connect custom advancements to command block events...

  • @rudiwitheye1805
    @rudiwitheye1805 2 ปีที่แล้ว +1

    Hi, just a bit confused on the breaking of the redstone block, mine doesnt seem to do that

    • @rudiwitheye1805
      @rudiwitheye1805 2 ปีที่แล้ว +1

      Nevermind lol, i have fixed the issue

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      Glad to hear it! Thats a pretty easy thing to mess up, but its just as easy to fix!

  • @re3-q2j
    @re3-q2j 3 ปีที่แล้ว +2

    hey, could you please link the world files in the description, so i can paste it in my world with worldedit? cant wrap my head around this

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      That's a great idea! I'll get on that ASAP.

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      Added!

    • @re3-q2j
      @re3-q2j 3 ปีที่แล้ว

      @@faultinyoutube thanks mate

  • @Ceof
    @Ceof ปีที่แล้ว

    hey I have a question on it! When the timer is finish, it goes to negative numbers. Is there any mistake and how can I fix it?

  • @drderp04
    @drderp04 2 หลายเดือนก่อน

    can I run this for multiple players individually at the same time?

  • @nilleriver9827
    @nilleriver9827 3 ปีที่แล้ว +2

    Hey, just a question. I'm trying to make it so that once the players have defeated all mobs within the timer, it will stop and reset the timer, but im not sure how to do that. Do you have an idea on how?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      Oh goodness. Well basically you need to have some way to detect when all those mobs are dead. There's a lot of approaches, you could check in an area, check for a type, or name them all and check for a name. When the check succeeds (all mobs are dead) you then run the last command in the tick function (activate the choke) to stop the clock and the reset function to set it back to its start state.

    • @nilleriver9827
      @nilleriver9827 3 ปีที่แล้ว +1

      @@faultinyoutube Thanks for the reply! Do I copy and paste the last command (in the tick function) and connect it to the command block that checks if all mobs are dead?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      @@nilleriver9827 Basically! You'll want that command and one that sets a redstone block in front of the reset timer so it goes back to full

    • @nilleriver9827
      @nilleriver9827 3 ปีที่แล้ว

      @@faultinyoutube Thank you very much for clarifying! Great video by the way

  • @PokeWarrior0001
    @PokeWarrior0001 หลายเดือนก่อน

    What can I do if to make the commands execture? As soon as I place the redstone block it vanishes and the signal isn't shot forward. I tested it and if I put a lever on top of the command block or a button, and turn it on, the commands happen correctly

    • @PokeWarrior0001
      @PokeWarrior0001 หลายเดือนก่อน

      don't know why I wrote the first question so weirdly but please ignore it

    • @PokeWarrior0001
      @PokeWarrior0001 หลายเดือนก่อน

      nevermind I found the issue, the chain command blocks I had set to require redstone instead of always active

  • @JuanFelix-c2x
    @JuanFelix-c2x 6 หลายเดือนก่อน

    bro if i want to put more time what i have to do

  • @mittelkorn3464
    @mittelkorn3464 3 ปีที่แล้ว +1

    Hi, i did it how you said but every time i place the Block (reset) It just replaces the Block.

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      It replaces which block? The command block? The Redstone block?
      If it's the command block, you need to offset the position by 1 in the direction of the Redstone block. So example; ~1 ~ ~ instead of ~ ~ ~. You can also do absolute position (the exact number coordinates of the Redstone block instead of using the tilde (~)).
      If the Redstone block is replacing 'itself' you need to make sure the setback command is placing a block other than RedstoneBlock. I prefer air but solid blocks like stone can work too.

    • @mittelkorn3464
      @mittelkorn3464 3 ปีที่แล้ว

      @@faultinyoutube i meant the Rest isn`t working

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      @@mittelkorn3464Make sure your following command blocks are Unconditional Chain blocks that don't need Redstone

    • @mittelkorn3464
      @mittelkorn3464 2 ปีที่แล้ว

      Thx!

  • @jakypetrik1950
    @jakypetrik1950 ปีที่แล้ว

    is there way to meke it deaspear when the player leave that area where i put it?

  • @Norvemes
    @Norvemes 3 ปีที่แล้ว

    My brain not responding

  • @Zombiemain1
    @Zombiemain1 2 ปีที่แล้ว +1

    Does this work for Bedrock edition?

  • @coolerbast1
    @coolerbast1 ปีที่แล้ว

    Very cool

  • @RAYNYT
    @RAYNYT 2 ปีที่แล้ว +1

    Very good tutorial. But I have a problem, when I created this mechanism on my map, this mechanism does not work when I fly further ... I realized that this is due to chunks, when I put more, then the range is also larger, but I I don’t know how to fix it, so as not to do a lot of drawing in the settings, because my PC is bad) On the demo map that you posted, I flew as much as I wanted, the command blocks worked, I didn’t even set the draw distance. Please, who knows how to fix this, tell me! Thanks in advance! P.S. The tutorial is very useful and cool!

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว +1

      Tough one! Chances are the demo world has it built in the spawn chunks? I believe there is a command you can do to 'force load' chunks, maybe look into that? Google 'how to keep a chunk loaded in minecraft' maybe? Good luck! Glad you enjoyed the video

    • @RAYNYT
      @RAYNYT 2 ปีที่แล้ว

      @@faultinyoutube Thanks for the answer! Yes, I googled and found the answer. Where the mechanism is located, you need to be near it and register the command in the chat: /forceload add ~ ~ ~ ~ After that, the mechanism works for long distances. P.S. Once again, thank you for this guide! Good luck growing your channel!

  • @RICE_FLOUR
    @RICE_FLOUR 2 ปีที่แล้ว +1

    can use it in 1.8.9 to 1.19?

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      I believe I was in 1.18 when I built this? Definitely should work for 1.19, as for older versions might have to try and see. 🤔 Great question!

    • @RICE_FLOUR
      @RICE_FLOUR 2 ปีที่แล้ว

      thank you

  • @GrayknightYT
    @GrayknightYT 3 ปีที่แล้ว

    I’m stuck at 4:11, which command block uses which text?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      I can see how that can be a touch confusing! The command at 4:11 goes into the first one, and the execute command at 4:53 goes into the second one.

    • @GrayknightYT
      @GrayknightYT 3 ปีที่แล้ว

      @@faultinyoutube thank you, I’ll try to see if it works, what I’m trying to do is make a nighttime timer to see how long I have left, I have one command block hooked up to a daylight sensor to get rid of the redstone block and one hooked up to a night sensor to place the redstone.

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      ​@@GrayknightYT Yea, just have the timer set for 10 minutes (length of a night) and start ticking when the daylight sensor senses the start of a night. When it detects the start of day, simply stop the timer ticking and run the reset!

  • @ZodiacPlayzGames
    @ZodiacPlayzGames 2 ปีที่แล้ว +1

    It is a very helpful video but is there a way for it to automatically reset when it runs out of time?

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      Totally! Since the reset command is run by placing a redstone block at its start, you simply need to have a command in the clock that places that block. Basically you can take command C6 (see video description) and duplicate that onto another command block, but have the XYZ be where you place the redstone block that activates the reset function.

    • @ZodiacPlayzGames
      @ZodiacPlayzGames 2 ปีที่แล้ว

      @@faultinyoutube Thank You!

  • @noamigo
    @noamigo 8 หลายเดือนก่อน

    Hey, if you´re still answearing comments I have a question. Is it possible to change the timer color? I only managed to change the timer color for the first second and then it goes back to white. I would really apreciate your help

    • @faultinyoutube
      @faultinyoutube  8 หลายเดือนก่อน +1

      Trying my best! Color is super simple, just do "/bossbar set minecraft:X color Y" where X is your bossbar id (probably 1) and Y is your color of choice

    • @noamigo
      @noamigo 8 หลายเดือนก่อน

      @@faultinyoutube tnx much apreciated!

  • @McDucketh
    @McDucketh 3 ปีที่แล้ว

    Help. The minutes don’t appear but the boss bar goes down, once a minute has passed, is still doesn’t appear, not even as 0

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      Hmm. Do the seconds count down correctly?

  • @phinesandfeeb7260
    @phinesandfeeb7260 3 ปีที่แล้ว

    hello bro!!! one question! how can i do a count of all block i break??? pls teach me D:

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      Did just a little research into this, cant seem to find a way to capture ALL blocks mined in a single scoreboard, however, if the player is only breaking one block type (stone) you can do something like this:
      /scoreboard objectives add BlocksMined minecraft.mined:minecraft.stone
      If you need multiple blocks, check out this StackExchange Thread: gaming.stackexchange.com/questions/250175/minecraft-scoreboard-count-multiple-block-ids

  • @primohippo4014
    @primohippo4014 3 ปีที่แล้ว +1

    Is there a way to only show the timer to certain players?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      A5. /bossbar set minecraft:1 players [@a] this command, switch the [ ] area to the player(s) you want

  • @naturalnico6097
    @naturalnico6097 2 ปีที่แล้ว

    The value of my boss bar decreases, but the number above the boss bar does not change. Can someone help me?

  • @official-official-chat-mod9383
    @official-official-chat-mod9383 2 ปีที่แล้ว

    Hey i dont know if you still reply but is there a way to make it so when it runs out it sets a block/signal to a area i need it for a payment system

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      Command C6 (see Description); which stops the clock from running negative; copy this command onto another command block and have the setblock X Y Z to place a redstone block where you need it for your payment system.

  • @jakypetrik1950
    @jakypetrik1950 ปีที่แล้ว

    How can i remove it. I got it stuck in my screan and i can't stop it.

  • @fogy4690
    @fogy4690 2 ปีที่แล้ว +3

    Edited:
    I solve it. I had copied part C1 wrong forgetting "TimerScore 1"
    Excellent video

  • @flexerbg3001
    @flexerbg3001 3 ปีที่แล้ว

    Hey dude u make very cool video
    But idk why you're subs is low

  • @bananatheo3796
    @bananatheo3796 3 ปีที่แล้ว

    why aren't my chain command blocks doing anything?
    Edit: it's because they were set to needs redstone instead of always active :|

  • @Seriousbird
    @Seriousbird 2 ปีที่แล้ว

    "unexpected>>bossbar

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      Bedrock Edition lacks the commands to make this work. Sorry 😞

    • @Seriousbird
      @Seriousbird 2 ปีที่แล้ว

      @@faultinyoutube darn, im after trying alot of different methods and the closest i came is a wither taking /dmg 1 for 10 mins but the bar doesn't reach far enough. Then i tried ender Dragon and it goes far enough but you cant dmg with commands only player inflicted and end crystals.. but he literally cant die from the crystals

  • @Hi-sk3ou
    @Hi-sk3ou 3 ปีที่แล้ว

    So what do you pit in the first three chain command blocks

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      In which function? Here is it in setup: th-cam.com/video/JIUcjPN5jzU/w-d-xo.html

  • @bastianmc-minecraft-roblox3433
    @bastianmc-minecraft-roblox3433 2 ปีที่แล้ว

    Can you help me this command comes out in red /bossbar set minecraft:1 name ["",{"score":{"name":"#TimerEntity","objective":"TimerMinutes"}},{"text":":"},{"score":{"name":"#TimerEntity","objective":"TimerSeconds"}]]

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      You end the command with "}]] but you need to end it with "}}]
      Note the center bracket being squiggly, not square

    • @bastianmc-minecraft-roblox3433
      @bastianmc-minecraft-roblox3433 2 ปีที่แล้ว

      @@faultinyoutube Thanks!

    • @bastianmc-minecraft-roblox3433
      @bastianmc-minecraft-roblox3433 2 ปีที่แล้ว

      @@faultinyoutube hey how to fix that when the timer reaches 2:10 the numberops are put like this 2:0 and then it comes out -5:17 and then -10:18

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      @@bastianmc-minecraft-roblox3433 That's a real funky one; tbh I haven't the slightest idea. Make sure to check your commands against the ones I provided in the description; there is also a downloadable world there as well as a step by step video. Hopefully looking through all those resources can help you solve the bug!

  • @dravosiostheonedravosiosth3543
    @dravosiostheonedravosiosth3543 3 ปีที่แล้ว

    Why can't I add a bossbar in Minecraft Bedrock? Can you add bossbar in Bedrock Edition?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      Bedrock editions commands are built differently, and lack a lot of the good stuff Java had as a result of being 'console/mobile' available. No bossbar command there. Sorry!

  • @lostreed4421
    @lostreed4421 2 ปีที่แล้ว

    I have a question, how did you removed the bossbar like it just showed on the intro

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      Command A5 (see description) is used to make the bar appear. If you do the same command but remove the @p (players target) it should wipe it from view

  • @Sendz565
    @Sendz565 2 ปีที่แล้ว +1

    how can i make lucky block apppear every 30 seconds?????

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      You'll have to have a bit more detail; what is a 'lucky block' and how does it appear? Randomly? Somewhere always around the player?

    • @Sendz565
      @Sendz565 2 ปีที่แล้ว

      Iwant it to appear in my Inventory

    • @Sendz565
      @Sendz565 2 ปีที่แล้ว

      And lucky block is mod

  • @tristanreyes6601
    @tristanreyes6601 3 ปีที่แล้ว

    Hi how does the world work? i download the world and it doesn't appear in my Minecraft

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      Are you in java edition? Did you drag the downloaded folder into your worlds folder?

  • @donaldarents9561
    @donaldarents9561 3 ปีที่แล้ว

    the bossbar is completely working, my only problem is that it only shows up for me and not my friends, how do i change that?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      Ooh, thats a pretty easy one actually! You'll just want to run this command (A5. /bossbar set minecraft:1 players @a) while your players are _in_ the server!

    • @donaldarents9561
      @donaldarents9561 3 ปีที่แล้ว

      @@faultinyoutube thank you so much

  • @samsr2887
    @samsr2887 3 ปีที่แล้ว

    when I set this up with the same commands, the timer turns into: ":" just the colon, it isn't able to grab the default minutes and seconds :/

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      Sounds like you didn't setup the variables correctly? Did you run all the setup commands?

  • @peterswrath
    @peterswrath 3 ปีที่แล้ว

    i copied the layout of the command blocks and redstone and pasted the correct commands into them. the bossbar doesn't change, and nothing happens... idk what i did or did wrong

    • @joshuas.4969
      @joshuas.4969 3 ปีที่แล้ว +1

      I figured it out and the chain command blocks have to be always active. It worked for me.

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      @@joshuas.4969 Glad you solved your problem!

  • @Kemalettin644
    @Kemalettin644 3 ปีที่แล้ว

    How do I make this score incremental

  • @ultramegabicara
    @ultramegabicara 3 ปีที่แล้ว

    im soo confused i dont know whare wich commands go, can you record yourself placing and putting the command in each place?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      Check out the world link down in the description, hopefully that will help you get your bearings!

    • @ultramegabicara
      @ultramegabicara 3 ปีที่แล้ว +1

      @@faultinyoutube ok, but before i open the world does it work in 1.17?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      @@ultramegabicara World built in 1.17

    • @ultramegabicara
      @ultramegabicara 3 ปีที่แล้ว

      @@faultinyoutube it still dont work for me :/

  • @ezenloke8170
    @ezenloke8170 3 ปีที่แล้ว

    How do we make it so that it counts down a few days, hours, minutes and seconds?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      Add additional variables for days and hours and increase the existing variable values to componsate

  • @fdemon8703
    @fdemon8703 ปีที่แล้ว +1

    thanks a lot, but i have a little problem here:
    /execute if score #TimerEntity TimerScore matches ..-1 run setblock X Y Z minecraft:redstone_block
    this command wont do anything :( (the xyz values are correct in my command block)
    very nice video btw :)

    • @faultinyoutube
      @faultinyoutube  ปีที่แล้ว

      Hmm that's a tough one, it looks okay according to the description. I recommend splitting the command up and experimenting with each part individually? Start with just the setblock; run the command as if you were trying to just place the block with commands yourself. If the block doesn't show maybe that's your problem? Otherwise try the execute command with something simple like /kill or /say or something. If it doesn't do that then the issues in the first half of the command 🤔🤔🤔

  • @jakethed-evilworshipperlol9644
    @jakethed-evilworshipperlol9644 2 ปีที่แล้ว +1

    is this possible on bedrock?

  • @reddishiscool3351
    @reddishiscool3351 2 ปีที่แล้ว

    is the real command /scoreboard objectives add TimerScore dummy ???

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      A1. /scoreboard objectives add TimerScore dummy
      Yes?

    • @reddishiscool3351
      @reddishiscool3351 2 ปีที่แล้ว

      @@faultinyoutube is it with the command??

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      @@reddishiscool3351 I'm sorry I don't know what your asking. With the command blocks?? You do not need command blocks for those Setup commands, you can just use the text console to write them.

  • @6ojl207
    @6ojl207 3 ปีที่แล้ว +1

    Will this work on Minecraft PE?

  • @bwduels
    @bwduels 3 ปีที่แล้ว

    i copied the commands out of desc but as im done with the last two reset command blocks, my bossbar only says : (colon). how to fix that?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      Sounds like your command isn't finding the variables. Did you run all the setup commands to create all the scoreboard variables?

    • @bwduels
      @bwduels 3 ปีที่แล้ว

      @@faultinyoutube yes, I build it like in the tutorial. (i guess)

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      @@bwduels Did you copy all the commands directly from the description or type them out on your own?

    • @bwduels
      @bwduels 3 ปีที่แล้ว

      @@faultinyoutube I wrote the first couple ones and copied after one point, there may be a mistake somewhere. I'm gonna check

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      @@bwduels Yea you must have an error somewhere, I tested the system the other night on a new world, only copying commands from the description, so you might have had a typo during your setup?

  • @elusivesquid2192
    @elusivesquid2192 3 ปีที่แล้ว

    for some reason the bossbar isn't moving for me even though the first command block in the tick chain says that it is updating for #TimerEntity, it isn't updating for me. any fix?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      Interesting. Thats definitely the block to look at. The only thing that comes to mind is maybe your max value is set wrong? Are you able to change the bar manually using this command? (Replace XX with numbers between 0 and your max) /bossbar set minecraft:1 value XX If that doesnt change anything, then the issue is how you setup the bossbar. Otherwise I have no idea why its not working. :J(

    • @elusivesquid2192
      @elusivesquid2192 3 ปีที่แล้ว

      @@faultinyoutube i got it to work thanks, one more question, how could i detect if the timer hits 0? ive been playing around with it and im not sure how

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      @@elusivesquid2192 6:41 in the video. A final command block reads if the timer is less than or equal to 0, then places a redstone block on the 'choke.'

    • @elusivesquid2192
      @elusivesquid2192 3 ปีที่แล้ว

      @@faultinyoutube ok I got it all figured out thanks so much for the help!

  • @discordtutorial3572
    @discordtutorial3572 3 ปีที่แล้ว

    I'm on pe it dont have boss bar command

  • @xFlash996
    @xFlash996 3 ปีที่แล้ว +1

    Does this work in 1.16.4?

  • @robincollins7722
    @robincollins7722 3 ปีที่แล้ว

    Is anyone else lost af cuz ngl idk where to put 90 percent of these commands

  • @jakypetrik1950
    @jakypetrik1950 ปีที่แล้ว

    Wery good video. But I´m stupid or some thing becouse it goes in negative. And I put my own coordinates.

  • @Plagueanim
    @Plagueanim 24 วันที่ผ่านมา

    Im confused

  • @jaynielabanilla6768
    @jaynielabanilla6768 3 ปีที่แล้ว

    Thanks 😊

  • @downfall6288
    @downfall6288 3 ปีที่แล้ว

    I set it all up but I'm the only one that can see the timer

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      /bossbar set minecraft:1 players @a This needs to be run while all the players are on the server. Minecrafts fault for this one I'm afraid.

  • @peacockplayz451
    @peacockplayz451 3 ปีที่แล้ว

    How did u do the timer

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      Thats...thats literally the entire video?

    • @peacockplayz451
      @peacockplayz451 3 ปีที่แล้ว

      @@faultinyoutubethanks , why did u stop posting videos?

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว +1

      @@peacockplayz451 These take a lot of time and effort to put together, time and effort I havent had lately. But I do have another video in the pipeline, so keep an eye out!

    • @peacockplayz451
      @peacockplayz451 3 ปีที่แล้ว

      @@faultinyoutube oohh

  • @noobMC-v3v
    @noobMC-v3v 2 ปีที่แล้ว

    Bro it's a good tutorial I see alot of effort put into this but I'm confused i play on ps5 so I have to copy every bit and the part where u showed . . N

    • @faultinyoutube
      @faultinyoutube  2 ปีที่แล้ว

      Does not work on Bedrock Edition

  • @mrbutterpopcorn1363
    @mrbutterpopcorn1363 3 ปีที่แล้ว

    I did not understand a thing
    Can u pls make a video in normal creative

    • @faultinyoutube
      @faultinyoutube  3 ปีที่แล้ว

      Check this out: th-cam.com/video/h5gwpgC7X38/w-d-xo.html

  • @dbvggbbb1744
    @dbvggbbb1744 ปีที่แล้ว

    Couldnt it be cool if someone made a tutorial on how to make pizza tower in minecraft with an extrs tutorial on how to make lap 3