Activity 7 - Crashy Bird

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ก.ย. 2024
  • Learn how to create a variation of the popular game, Flappy Bird!
    This is an advanced coding challenge!
    Create your own project on Microbit and follow the instructions in the video.
    makecode.micro...
    Remember, you can pause the video at any time!

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

  • @ashs-xg3dp
    @ashs-xg3dp 3 หลายเดือนก่อน

    it is not moving the obstacles

  • @SirineDuri
    @SirineDuri 7 หลายเดือนก่อน +2

    do you know Shakira ??????

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

      shakira shakira!!!!!!!

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

    hey, thanks for the tutorial! it really helped me understand!

  • @shashwatide5213
    @shashwatide5213 4 ปีที่แล้ว +7

    Please help me to set the score.

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

      Hi! I literally just figured it out, to do it just put a change score by 0.25 block under the “delete obstacles get and remove value at 0”

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

      @@Theredstonezone can you PLEASE send an image of how you did it?? it would be greatly appreciated

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

      @@eao5733 I’m not sure how to send images

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

      @@Theredstonezone thanks!

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

      @IkeTheDog2009 same, but i dont know how to fix it.

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

    Thanks for the tutorial! Also how do I make the game to count my score?

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

      i have no idea thats kinda the reason why i watched this video

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

    how do i make the flappy bird go faster each time I pass an obstacle

    • @P5-3MOHANVISHWARYAN
      @P5-3MOHANVISHWARYAN 6 หลายเดือนก่อน

      Yea, I also wanna a challenging game of crashy-bird, its too slow and easy.

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

    very great,😁

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

    Thanks for the tutorial !

  • @ViolaNyström
    @ViolaNyström 8 หลายเดือนก่อน +3

    This tutorial does not work, i hope you cant fall asleep tonight 😝

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

      yesb totaly

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

    at 9:46 I dont have the array list remove value at 0 which will slip in the sprite thing. I have that but it's a block...

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

    6:59 my time

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

    my remainder of is( /)
    no (+)

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

    Thank you this was really helpful

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

    Thank u so much 😊

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

    Can someone help me figure out score i'm really stuck

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

    hello

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

    help i can´t make de obstacles

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

    can you just drop the zip here

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

    Flappy birb

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

    this was boring!!!!

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

    kurvaaaaa

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

    Ayyy i finaly found a electronic i can use that doesnt need a computer to use! Even better i can program which is good!!!

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

    can u write a flow chart of "Crashy Birds" for me???

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

      Did you do the flowchart? I want it too xd

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

      there it is for javascript
      ps:it even counts your score
      input.onButtonPressed(Button.A, function () {
      bird.change(LedSpriteProperty.Y, -1)
      })
      input.onButtonPressed(Button.B, function () {
      bird.change(LedSpriteProperty.Y, 1)
      })
      input.onGesture(Gesture.Shake, function () {

      })
      let emptyObstacleY = 0
      let ticks = 0
      let bird: game.LedSprite = null
      music.setVolume(255)
      music.startMelody(music.builtInMelody(Melodies.Entertainer), MelodyOptions.Forever)
      let index = 0
      let obstacles: game.LedSprite[] = []
      bird = game.createSprite(0, 2)
      bird.set(LedSpriteProperty.Blink, 120)
      basic.forever(function () {
      while (obstacles.length > 0 && obstacles[0].get(LedSpriteProperty.X) == 0) {
      obstacles.removeAt(0).delete()
      }
      for (let obstacle2 of obstacles) {
      obstacle2.change(LedSpriteProperty.X, -1)
      }
      if (ticks % 3 == 0) {
      emptyObstacleY = Math.randomRange(0, 4)
      for (let index2 = 0; index2

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

    Figured out the score!

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

      Can't firgure out score

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

      How?

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

      @@lucid_hq6894 put a change score by 0.25 block under the “delete obstacles get and remove value at 0” :)

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

      @@cindytraa it doesnt work for me

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

      @@mtz1nn_722 dont forget to do set score to 0 in the on start block