Author Topic: Hover Boy updated v1.0  (Read 2177 times)

0 Members and 1 Guest are viewing this topic.

Offline 191Brian

  • Newbie
  • Posts: 91
    • My Itch page
Hover Boy updated v1.0
« on: February 14, 2021, 02:57:41 pm »
Hi All

Thanks to all the feedback I felt inspired to put in a few more hours to make some changes including the suggested improvements.

So here is the new improved version with the following updates.
1. New graphics (still need to work on my pixel art skills)
2. Changed controls
3. Added a retro font
4. Added player score
5. Added fuel required to hover and fuel level meter
6. Added flying fuel cans you need to catch to refuel your hover board
7. Added game over screen

 
hoverboy.png


Brian ...
Brian ...

Offline 40wattstudio

  • Newbie
  • Posts: 82
    • 40wattstudio
Re: Hover Boy updated v1.0
« Reply #1 on: February 14, 2021, 03:23:58 pm »
Yessss! I love the improvements! I noticed too you added a little scream when the player dies. :O
Your game was already my favorite in the game jam (sometimes the best games are the simplest) and the new update definitely solidifies that position.
I found the jittery gas-cans rather humorous -- they almost look like they're going to explode under pressure.
I got a score of 3534.

Offline 191Brian

  • Newbie
  • Posts: 91
    • My Itch page
Re: Hover Boy updated v1.0
« Reply #2 on: February 14, 2021, 05:21:31 pm »
Thanks 40wattssdtudio, I honestly have more fun coding than playing games so struggle sometimes to think of what to do, so having the theme from the Game Jam plus input from you and the rest of the QB64 community really helps.


Yessss! I love the improvements! I noticed too you added a little scream when the player dies. :O
Your game was already my favorite in the game jam (sometimes the best games are the simplest) and the new update definitely solidifies that position.
I found the jittery gas-cans rather humorous -- they almost look like they're going to explode under pressure.
I got a score of 3534.
Brian ...

Offline Adrian

  • Newbie
  • Posts: 39
Re: Hover Boy updated v1.0
« Reply #3 on: February 14, 2021, 09:19:20 pm »
Even cooler now, Brian! got a score of 2138. This can be addictive!
« Last Edit: February 14, 2021, 09:44:40 pm by Adrian »

Offline Dav

  • Forum Resident
  • Posts: 792
Re: Hover Boy updated v1.0
« Reply #4 on: February 15, 2021, 10:07:11 am »
I like it.  Simple but challenging. Yes, kind of addictive.  I'm not posting my poor score...

- Dav

Offline Dav

  • Forum Resident
  • Posts: 792
Re: Hover Boy updated v1.0
« Reply #5 on: February 17, 2021, 08:55:44 am »
Still trying to get a decent score.  Not easy!  But enjoying trying..

I have one suggestion, a little fix to prevent the cloud image from resetting after 1000 pixels, to make it scroll seamlessly.  Here's what I did here...

The sky image is 2048 pixels wide, so I did another _PUTIMAGE after the first one, connecting them....

    _PUTIMAGE (skyScroll, 0), skyImage
    _PUTIMAGE (skyScroll + 2048, 0), skyImage

Then I changed the 1000 skyScroll number to 2048 ...

    skyScroll = skyScroll - 2
    IF skyScroll < -2048 THEN
        skyScroll = 0
    END IF

- Dav

Offline 191Brian

  • Newbie
  • Posts: 91
    • My Itch page
Re: Hover Boy updated v1.0
« Reply #6 on: February 17, 2021, 09:55:38 am »
Thanks Dav that was bugging me but wasn't sure how to fix it will add that to v1.1.
Brian ...


Still trying to get a decent score.  Not easy!  But enjoying trying..

I have one suggestion, a little fix to prevent the cloud image from resetting after 1000 pixels, to make it scroll seamlessly.  Here's what I did here...

The sky image is 2048 pixels wide, so I did another _PUTIMAGE after the first one, connecting them....

    _PUTIMAGE (skyScroll, 0), skyImage
    _PUTIMAGE (skyScroll + 2048, 0), skyImage

Then I changed the 1000 skyScroll number to 2048 ...

    skyScroll = skyScroll - 2
    IF skyScroll < -2048 THEN
        skyScroll = 0
    END IF

- Dav
Brian ...

FellippeHeitor

  • Guest
Re: Hover Boy updated v1.0
« Reply #7 on: February 18, 2021, 01:56:22 pm »
Really cool job, @191Brian! Congrats!

Offline 191Brian

  • Newbie
  • Posts: 91
    • My Itch page
Re: Hover Boy updated v1.0
« Reply #8 on: February 18, 2021, 02:25:01 pm »
Thanks Fellippe had great fun coding it.

Really cool job, @191Brian! Congrats!
Brian ...