Page 8 of 9

Re: Game Maker Questions Topic!!!

PostPosted: August 11th, 2011, 10:11 am
by Bogdan
ok i want my character to jump not to got simply up, how i do this? :|

Re: Game Maker Questions Topic!!!

PostPosted: August 11th, 2011, 10:28 am
by Blablob
Just add gravity when the player jumps. (turn it off when the player makes contact with the ground.)

Re: Game Maker Questions Topic!!!

PostPosted: August 11th, 2011, 4:52 pm
by Jellonator
WOO SOMEBODY FINALLY REVIVED THIS TOPIC \o/

anyways....
i agree with blab.
gravity is ftw
put this in step
Code: Select all
if place_free(x,y+1){gravity = 0.5}else{gravity = 0}
if vspeed > 12{vspeed = 12}

and for the key up
Code: Select all
if !place_free(x,y+1){vspeed = -12}

finally the collision with a wall
Code: Select all
vspeed = 0
move_contact_solid(270,12

if you need anymore help post again in this topic. do not want this topic to die. ever.

Re: Game Maker Questions Topic!!!

PostPosted: August 12th, 2011, 1:27 am
by Koopa Yoshi
General Bogdan wrote:ok i want my character to jump not to got simply up, how i do this? :|


You would have just learned it on Yoyogames' Platform Tutorial, or would have figured out right? Newbie is newbie :awe:

Here's the easier way if you hate coding

Oh wait, nevermind, just download the tutorial on Yoyogames. No need to help you

My predictions:
This post gets deleted
I get warning

Re: Game Maker Questions Topic!!!

PostPosted: August 12th, 2011, 1:44 am
by Bogdan
Koopa Yoshi wrote:
General Bogdan wrote:ok i want my character to jump not to got simply up, how i do this? :|


You would have just learned it on Yoyogames' Platform Tutorial, or would have figured out right? Newbie is newbie :awe:

Here's the easier way if you hate coding

Oh wait, nevermind, just download the tutorial on Yoyogames. No need to help you

My predictions:
This post gets deleted
I get warning


-.- i don't need your help look like you really want to start a flame war

Re: Game Maker Questions Topic!!!

PostPosted: August 12th, 2011, 1:46 am
by Suyo
Actually, he is right. Before asking, try to find the solution yourself - if you google "jumping tutorial game maker" you get tons of results.

Re: Game Maker Questions Topic!!!

PostPosted: August 12th, 2011, 1:49 am
by Bogdan
Suyo wrote:Actually, he is right. Before asking, try to find the solution yourself - if you google "jumping tutorial game maker" you get tons of results.


actually blabby and jello told me how to do it so problem ky?

Re: Game Maker Questions Topic!!!

PostPosted: August 12th, 2011, 4:10 am
by Blablob
Unless you want the warning, Bog, you should stop now.

The proper thing would have been to try and figure this out on your own; we were kind enough to provide help for you, but KY's point is still valid.

Re: Game Maker Questions Topic!!!

PostPosted: August 12th, 2011, 6:57 am
by Jellonator
KYs point may be valid, but he hould at least try not to sound like a douche saying it :o_O:

Re: Game Maker Questions Topic!!!

PostPosted: August 24th, 2011, 9:25 am
by Silver Sonic_106
How do i make it so an object shoots you and you lose health? I can't seem to figure it out.
Also,I'm making a racing game and i can't understand how to make it so the enemy cars go to the target point without clusturing together.