Page 1 of 1

Noobie with questions =D

PostPosted: Sat Mar 29, 2008 10:53 pm
by Blackop
I just downloaded game-editor and obiously you need to know how to script, I have no idea how though!, And I can't find any 'Help Guides' for scripting.

If somebody could gimme a link, example, etc. I'd really aprreciate it! Thanks. :)

Re: Noobie with questions =D

PostPosted: Sun Mar 30, 2008 12:16 am
by Blackop
Also, I'm not sure how to make so when I press,Example: KEY [A]. I go left.
Soooo if somebody could please help me with these two questions, I would reeeeeeeeally love that :)

Re: Noobie with questions =D

PostPosted: Sun Mar 30, 2008 1:12 am
by regine
A help for GE with all script functions is in Game Editor/Documents/

Do this:

Go to the actor control -> New -> Key Down -> Press A -> Add Action -> Script Editor -> Type in YOURACTORNAME.x = YOURACTORNAME.x - 5; -> Press Add -> Immediate Action

Re: Noobie with questions =D

PostPosted: Sun Mar 30, 2008 1:19 am
by Freddy
You can also type in the script editor just: x = x - 5;
You dont need to include your actors name. :)

Re: Noobie with questions =D

PostPosted: Sun Mar 30, 2008 1:56 am
by Game A Gogo
Code: Select all
x-=5;
is much better :3