micro:bit Shooting Game - playkindcity.com

micro:bit Shooting Game

3C Creative
Views: 36471
Like: 373
How to make micro:bit shooting game by 3C MAKE

18 Comments

  1. I’m British so this is super duper confusing

  2. ทำตามถูกต้องทุกอย่าง แต่เล่นไม่ได้ครับ

  3. Would appreciate english subtitles, very good game tutorial otherwise!

  4. If you can add English Subtitle , that would be great!

  5. Here's the code

    input.onButtonPressed(Button.A, function () {
        if (pjuuu) {
            metak = game.createSprite(igrač.get(LedSpriteProperty.X), igrač.get(LedSpriteProperty.Y))
            metak.turn(Direction.Left, 90)
            pjuuu = false
        }
    })
    function Crash () {
        if (metak.isTouching(neprijatelj)) {
            game.addScore(1)
            metak.delete()
            neprijatelj.delete()
            neprijatelj = game.createSprite(randint(0, 4), 0)
            pjuuu = true
        } else if (metak.get(LedSpriteProperty.Y) == 0) {
            metak.delete()
            pjuuu = true
        }
    }
    input.onButtonPressed(Button.B, function () {
        for (let index = 0; index < 1e+105; index++) {
            basic.showString("ćčćčćčćčćčćčćčććčćčćčćčćčććčćčććčćććčććčćčćčćčćčćčćč")
        }
    })
    let metak: game.LedSprite = null
    let pjuuu = false
    let neprijatelj: game.LedSprite = null
    let igrač: game.LedSprite = null
    basic.showString("B0MBASTIK")
    igrač = game.createSprite(2, 4)
    neprijatelj = game.createSprite(randint(0, 5), 0)
    pjuuu = true
    game.startCountdown(20000)
    basic.forever(function () {
        igrač.move(1)
        igrač.ifOnEdgeBounce()
        if (metak) {
            metak.move(1)
            Crash()
        }
        basic.pause(200)
    })

Leave a Reply

Your email address will not be published.