Skip to content

Jason LeRoy

My feedback

1 result found

  1. 374 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    192 comments  ·  General » Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Jason LeRoy commented  · 

    hi

    An error occurred while saving the comment
    Jason LeRoy commented  · 

    try this one:

    fill('hills2')
    function platform(i) {
    y = i * 300
    p=stamp('platform',375,i*300,220)
    p.startY = y
    }
    repeat(platform,4)
    hero=stamp('plumber',385,750,300)
    function touching() {
    if (x> hero.x) {
    hero.change('plumber')
    } else{
    hero.change ('plumber2')
    }
    hero.move(x,y,500)
    }
    altitude =0
    power = 50
    gravity = 4
    speed = power
    score = 0
    function obstacles () {}
    function death() {}
    function scroll(block) {
    block.move(block.x,block.startY+altitude)
    if(block.y > 1100) {
    block.startY = block.startY-990-random(200)
    block.move(random(800),block.y)
    }
    }
    function loop() {
    speed = speed - gravity
    altitude = altitude + speed
    find ('platform').forEach (scroll)
    if (speed < 0 && hero.hits('platform')) {
    speed = power
    sound ('jump2')
    stamp('pow',hero.x,hero.y)
    hero.move(hero.x,hero.y-20)
    }
    obstacles()
    if(speed < -100) {
    death()
    }
    }
    b = stamp('balloon4',100)
    b.startY = 500
    baddie = stamp('water',700,150,100)
    baddie.startY = 150
    function obstacles () {
    scroll(b)
    scroll(baddie)
    if (speed < 0 && hero.hits(b)) {
    speed = power *2
    score = score + 3
    sound ('b')
    }
    if (hero.hits (baddie)) {
    death()
    }
    }
    function death() {
    text('score',202,204,150)
    text(score,375,350,150,'impact','center')
    loop = null
    touching = null
    hero.move(DOWN,2000,1000)
    sound('flush')
    }
    song('brothers')

Feedback and Knowledge Base