Page 1 of 1

codes for game editor

PostPosted: Wed Feb 20, 2008 9:44 pm
by .:JACKO:.
will somebody tell me some codes for the game editor?? like how to make them jump then land because when i do it they just jump and float away haha

Re: codes for game editor

PostPosted: Wed Feb 20, 2008 11:19 pm
by Troodon
Welcome to the forums Jacko.
You may like to check out the in-built tutorials in Game Editor and then the documentation page. :)

Re: codes for game editor

PostPosted: Thu Feb 21, 2008 4:21 am
by .:JACKO:.
thanx =]
where abouts is that?

Re: codes for game editor

PostPosted: Thu Feb 21, 2008 1:13 pm
by Troodon
You can find both in Game Editor under the 'help' button. :)

Re: codes for game editor

PostPosted: Thu Feb 21, 2008 1:40 pm
by Game A Gogo
you can also search trough the forum, the search thing top right of the forum at all time

Re: codes for game editor

PostPosted: Thu Feb 21, 2008 9:01 pm
by .:JACKO:.
thanx =].
what do i put in the search??
and when i put it so i jump it dont land hel? haha
and how do i make stuff shoot??
lol
watch these =]
http://www.youtube.com/profile_videos?u ... olychicken

Re: codes for game editor

PostPosted: Fri Feb 22, 2008 11:05 am
by Bee-Ant
tekdino wrote:Welcome to the forums

You didnt say that when I was just joined...

Re: codes for game editor

PostPosted: Fri Feb 22, 2008 1:20 pm
by Troodon
You are wrong, I told you welcome! :)
At least if I remember correctly

Re: codes for game editor

PostPosted: Mon Feb 25, 2008 10:22 am
by Bee-Ant
You're wrong!
Nobody told me like that :cry:

Re: codes for game editor

PostPosted: Mon Feb 25, 2008 10:27 am
by Kalladdolf
me neither...
come on, bee-ant, maybe because we didn't introduce ourselves properly.
The first thing I posted in the forums was my sickman game, with the following words:
just a simple side-scroller game with random levels :?


now, I think that someone might've guessed that I was new by the number of posts, but...
whatever,

...
:roll:

lol, is it really worth talking about ??? :lol:

Re: codes for game editor

PostPosted: Mon Feb 25, 2008 10:58 am
by Bee-Ant
Come'on for what?I dont think it's necessary

Re: codes for game editor

PostPosted: Mon Feb 25, 2008 12:58 pm
by j2graves
I don't remember any welcome either...

Re: codes for game editor

PostPosted: Mon Feb 25, 2008 1:03 pm
by j2graves
ok, here are the basics:

draw actor means that the event takes place at all times. so to make gravity, you must make a draw actor event and a script editor action
Code: Select all
yvelocity = yvelocity = .5;


remember that you must end each command with a semi colin.

now to make the actor jump, you must do a keydown event with another script editor action:
Code: Select all
yvelocity = yvelocity -5;


remember this: y positive = down, y negative = up x positive = right, x negative = left

Re: codes for game editor

PostPosted: Tue Feb 26, 2008 1:40 pm
by Bee-Ant
Why you dont click Help=>Documentation anyway???

Re: codes for game editor

PostPosted: Wed Feb 27, 2008 5:15 pm
by Azou
Hey,j2graves, yveloctiy +=0.5 is more simple! :D