Page 1 of 1
man what is this thing what do you do im only 11 i dont...
Posted:
Sun Dec 05, 2004 4:03 am
by ashton777
wat do you do i no you make games but how can someone send me a game that i dsont have to download im not aloud to and can you make a game wqith sticks ok by. email me at
http://www.ashtonlumley@yahoo.com [/img][/code]
Posted:
Sun Dec 05, 2004 5:52 am
by jazz_e_bob
Hi Ashton,
Receiving a game by email is no different from downloading it from a web site.
You could make a game using sticks but GE is best with animations.
Good luck!
Posted:
Sun Dec 05, 2004 8:15 pm
by ashton777
dude im trying it i dont no any thing can someone show me how to make a moving game just left and just going rite any thing i need help
Posted:
Sun Dec 05, 2004 10:25 pm
by jazz_e_bob
Start Game Editor.
Click on Help.
The "getting started" section is a good place to start.
Posted:
Sun Dec 05, 2004 10:29 pm
by ashton777
i did i cant get to data how do you get there and to move my guy i press add and then key down then skript editor but it wont let me pass i no the code to move left and right but it wont let me pass
Posted:
Sun Dec 05, 2004 10:49 pm
by jazz_e_bob
OK
Lets simply things by starting with a new game.
Add an actor - call him "player".
Right mouse click on Player and go to Actor Control.
Add Event KeyDown
Press left arrow key
Select Script
Type x = x - 4;
Click Add
Click Immediate Action
Click Close
Click Close
Now in Game Mode you should be able to move your player left. ( I'll let you work out how to make the player move right..
)
Posted:
Sun Dec 05, 2004 11:02 pm
by ashton777
ok thats good now whats the code to jump or fly
Posted:
Mon Dec 06, 2004 1:59 am
by jazz_e_bob
ok
You'll need gravity if you are going to jump.
Right mouse click player
Add event Draw Actor
Add action script
Type yvelocity = yvelocity + 1;
Add
Immediate Action
Close
Close
Posted:
Mon Dec 06, 2004 9:45 pm
by ashton777
how do you add gravity or no gravity
Posted:
Mon Dec 06, 2004 10:08 pm
by jazz_e_bob
If you don't use the code I mentioned above you will have no gravity.
There is a platformer tutorial under the help menu. You should check it out. It will answer all of your questions and teach you a bit about how Game Editor works.
Posted:
Mon Dec 06, 2004 10:10 pm
by ashton777
ya but when i put it in i play it mmakes me fall down not up is there something els
Posted:
Mon Dec 06, 2004 10:15 pm
by jazz_e_bob
That's right. Gravity will make your player fall down.
Add an actor called "platform".
When "player" collides with platform use Physical Response with the final velocity multiplier of the event actor set to 0.
This means that player can land safely on the platform.
Now to jump. On key press "UP" use yvelocity = -6;