So, i'm planning to make my first public game ever since 2 years ago, but i had some serious dificulties like procrastination in general.
Today, seeing the popularity of games like Fall Guys, i decided to finally start working on my project. It's about a bird that have to jump meteors while he's being chased by a round dinosaur spaceship, and everything in 2.5D; the bird is in its front view, and the meteors shrink down as they get far away, being sucked by the spaceship.
But there are some issues on my first prototype tho. Check my code and see if you can find it for me.
Wendow.W = 1280
Wendow.H = 720
Birby.W = 66
Birby.H = 108
Birby.X = (Wendow.W / 2) - (Birby.W / 2) - 1
Birby.Y = (Wendow.H / 2) - (Birby.H / 2) + 1
Steroids.Pic
= _LOADIMAGE("F&S_proto_sources\meteor")Steroids.X
= INT(RND * 1250) + 30Steroids.Y
= INT(RND * 690) + 30Steroids.SpawnTime = 10
SpawnMeteors
_PUTIMAGE (Steroids.X
, Steroids.Y
), Steroids.Pic