Page 1 of 2

Tutorial: Making Jump, Double Jump, More Jump

PostPosted: Mon Aug 23, 2010 3:01 am
by Wertyboy
Some newbies just asked (included me): How to make jump (once)?
This tutorial make a Jump, Double Jump, and More Jump
First, u make one actor name player and add animation or some script (Walk left and Right)
And make one actor name Tiles or something to make flatform and add animation
Or Download here
Tiles_1.png
Hor: 7; Ver:3
Tiles_1.png (1.46 KiB) Viewed 19097 times


Next, Goto Player -> Key Down -> Script Editor
But first, u need add new var. name "canjump"
and use this code
Code: Select all
if(canjump>0)
{
    yvelocity-=6;
    canjump--;
}

The Number (6) is a High/Low Jump

Next, Add to Player -> Collision -> Any Side Tiles (Re.Colliding Yes) -> Physical Respone : 1, 1, 0, 1
and then add to Player -> Collision ->Top Side Tiles (Re.Colliding Yes) -> Script Editor
Code: Select all
canjump=1;

This a code 1 Jump
To change the Jump (to Double Jump or More Jump)
Change the Number of canjump=...... (if number is 2, Double Jump, if 2 or better, More Jump)

Thank for Read
Wertyboy

Re: Wertyboy's Tutorial

PostPosted: Wed Aug 25, 2010 4:49 am
by Wertyboy
All member of GE see my Tutorial is bad ?
if no Reply in 3 day later, Close Topic!

Re: Wertyboy's Tutorial

PostPosted: Wed Aug 25, 2010 1:35 pm
by lcl
Your file is HUGE! Downloading it will take like 40 minutes on my computer, that is quite powerful one...
That might be the reason no one has left a comment... :)

Re: Wertyboy's Tutorial

PostPosted: Wed Aug 25, 2010 1:44 pm
by Wertyboy
lcl wrote:Your file is HUGE! Downloading it will take like 40 minutes on my computer, that is quite powerful one...
That might be the reason no one has left a comment... :)

of course it heavy, it video

Re: Wertyboy's Tutorial

PostPosted: Wed Aug 25, 2010 1:52 pm
by lcl
Yeah, but that much waiting... I think no one will wait that long... :(
Can't you compress it?

Re: Wertyboy's Tutorial

PostPosted: Wed Aug 25, 2010 3:16 pm
by Wertyboy
Uhm........ wait im complete tutorial and compress
BE BACK SOON

Re: Tutorial: Making Jump, Double Jump, More Jump

PostPosted: Tue Aug 31, 2010 3:48 am
by Wertyboy
Back, please check the first POST :D

Re: Tutorial: Making Jump, Double Jump, More Jump

PostPosted: Tue Aug 31, 2010 10:49 am
by lcl
Hey, that's cool! :D
Nice, easy way to make double jumps and more.

Good work! :D

Re: Tutorial: Making Jump, Double Jump, More Jump

PostPosted: Tue Aug 31, 2010 12:01 pm
by Wertyboy
:D
Thx lcl

Re: Tutorial: Making Jump, Double Jump, More Jump

PostPosted: Tue Aug 31, 2010 9:24 pm
by savvy
haha, this is the exact same method Hblade taught me when i was new XD

Re: Tutorial: Making Jump, Double Jump, More Jump

PostPosted: Fri Sep 03, 2010 10:03 pm
by zxcvbnm
Solid tutorial much better.So you want to make a planet versus zombie game? Thats going to take alot of coding and work , I never made one before myself , but I might give it a try.

Re: Tutorial: Making Jump, Double Jump, More Jump

PostPosted: Sat Sep 04, 2010 11:02 am
by savvy
the hardest part will be making all the different scenarios unless you make it straight forward hit and die.
also alot of artwork is needed :/

Re: Tutorial: Making Jump, Double Jump, More Jump

PostPosted: Thu Sep 09, 2010 5:33 am
by Turon
Or Download here

Tiles_1.png
Hor: 7; Ver:3
Tiles_1.png (1.46 KiB) Viewed 120 times


Now download hey? well it seems to be a tile image so is that a tutorial or a image? where is the video??????? :(

Re: Tutorial: Making Jump, Double Jump, More Jump

PostPosted: Mon Sep 13, 2010 12:18 am
by Wertyboy
So you want to make a planet versus zombie game?
what do u mean PLANET, it is Plants !

Re: Tutorial: Making Jump, Double Jump, More Jump

PostPosted: Sun Jul 12, 2015 3:03 am
by knucklecrunchgames
Sorry to revive a dead topic. I'm just getting back into the swing of GE and this helped me greatly.