Discuss Scratch

MeerkatEllie3
Scratcher
7 posts

Geometry dash

Hi guys!

I need LOTS of help….
I wanna make a GEOMETRY DASH GAME!
Yep, with the music,
Yep, with all the levels (free version)
I KNOW I won't be able to make it…..
But can any one make it for me?

If you have any tips, tricks or you've MADE OR STARTED MAKING IT, please comment below. (Make sure the project is shared!)

Me, MeerkatEllie3

X X
X. X X
X. X
X
MeerkatEllie3
Scratcher
7 posts

Geometry dash

My browser / operating system: Linux, Chrome 30.0.1599.114, Flash 18.0 (release 0)
starwarsdallin
Scratcher
100+ posts

Geometry dash

Okay, sorry, but I can't really help you that much, but if you want more people to help, I would advise making another post in the collaboration section of the forums.
GamerAndCreater
Scratcher
72 posts

Geometry dash

make a game like that is very difficult, the animations, ships,etc
MathlyCat
Scratcher
1000+ posts

Geometry dash

GamerAndCreater wrote:

make a game like that is very difficult, the animations, ships,etc
Not a very helpful comment!

MeerkatEllie3 wrote:

My browser / operating system: Linux, Chrome 30.0.1599.114, Flash 18.0 (release 0)
Please don't spam!

MeerkatEllie3 wrote:

Hi guys!

I need LOTS of help….
I wanna make a GEOMETRY DASH GAME!
Yep, with the music,
Yep, with all the levels (free version)
I KNOW I won't be able to make it…..
But can any one make it for me?

If you have any tips, tricks or you've MADE OR STARTED MAKING IT, please comment below. (Make sure the project is shared!)

Me, MeerkatEllie3

X X
X. X X
X. X
X
Reference this.
Hope it helps!
dimitrip
Scratcher
500+ posts

Geometry dash

Hi MeerkatEllie3.
It does not seem -that- difficult to implement, why don't you give it a try just for level 1 first?
Programming is like playing a game. You're happy when you succeed in passing to next level.
The differences are..
- You are the master. You create. You put the traps where you want. You lead players in adopting this or that attitude. Those just use and enjoy what you built.
- When playing games, passing levels is harder and harder. When developing, it becomes more and more easy.
- When developing, you learn. Not only Scratch or IT, but also physics, maths, whatever. Not to speak about social matters
Do it, you are able to.
Greetz,
D.
_JtGames
Scratcher
41 posts

Geometry dash

I honestly think making a geometry dash game would be quite ambitious but if you are, I would like to recommend a few scripts.

Just in case you already didn't know (i'm sure you would know this) geometry dash is a 2d scroller, nothing much there. I'd probably start off with a basic ScrollX script
when green flag clicked
forever

set x to ((ScrollX) + ((480) * (0)))
end
Where 480 is the whole width of the screen (in pixels) and the 0 represents what number the terrain is, obviously if you want to add another chunk of land add 1 to your current number.

Geometry dash also focuses on scrolling in the Y axis so I'd probably recommend a script like this if focusing also on the y axis

when green flag clicked
forever

go to x: (((ScrollX) + ((480) * (0)))) y: (((ScrollY) + ((240) * (0))))
end

we then need continous character movement seeing as in geometry dash, the player does not have any control over the speed and general direction they're going.

when green flag clicked
forever

change [ScrollX] by (-10) //keep 10 as a negative number
end

The collision detection however is a lot easier as most of the levels down have ramps and ultimately if you touch anything in your way, you instantly die and revert from the beginning.

when green flag clicked
forever

if <touching color [#ff0088] ?> then
broadcast [replay v] //this may be used for the restarting for the music
set [ScrollX v] to [0] //you can also put this script under the green flag clicked when game is started up
end
end

I also made a bit of a ship prototype, kind of, you can go check that out here
Ship controller

I hope I was of some help to you

I'm also sorry I didn't get any jumping scripts but you can go fetch those in some already made geometry dash games though my best guess would have to do with the not touching colour block.

Anyway good luck with your game

Last edited by _JtGames (July 21, 2015 10:53:14)

bywok
Scratcher
100+ posts

Geometry dash

I will surely help!
thoyal
Scratcher
500+ posts

Geometry dash

I think someone made a Geometry Dash game. You should search for it. Maybe it'll give you some ideas.
ProjectMaker59
Scratcher
500+ posts

Geometry dash

bywok wrote:

I will surely help!

thoyal wrote:

I think someone made a Geometry Dash game. You should search for it. Maybe it'll give you some ideas.
Please don't post it on old topics

Powered by DjangoBB