Automail10's Begginers (Now advanced) Teachings

Learn how to make certain types of games and use gameEditor.

Re: Automail10's Begginers Teachings

Postby automail10 » Tue Oct 09, 2007 5:24 am

Now lets get to the advanced stuff!
Back
User avatar
automail10
 
Posts: 280
Joined: Sun Jun 03, 2007 11:30 pm
Location: On a pancake on a bunny.
Score: 5 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby automail10 » Tue Oct 09, 2007 5:26 am

Okay, lots o scripting,
Game Over after you lost hp script ( If you can do health with text)
Code: Select all
if("whatever your health variable is here"<1)
{
"create actor event here"
}
Back
User avatar
automail10
 
Posts: 280
Joined: Sun Jun 03, 2007 11:30 pm
Location: On a pancake on a bunny.
Score: 5 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby Rule-Buster » Sat Oct 13, 2007 12:56 pm

well this topic is 2 helpfull to be so low... So i should bump it!! :D

P.S. i havnt seen u around automail, where have u been? :(
I'm right behind you...
http://freewebs.com/jason-buster/
User avatar
Rule-Buster
 
Posts: 219
Joined: Sat Sep 08, 2007 2:21 pm
Location: In the clouds. In the trees. In the birds. Or in my own little world.
Score: 4 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby automail10 » Sun Nov 11, 2007 2:34 pm

I just nneded to get the tutorials up to the top!
Back
User avatar
automail10
 
Posts: 280
Joined: Sun Jun 03, 2007 11:30 pm
Location: On a pancake on a bunny.
Score: 5 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby Rule-Buster » Sun Nov 11, 2007 2:37 pm

so your going to get this thing going agian?
I'm right behind you...
http://freewebs.com/jason-buster/
User avatar
Rule-Buster
 
Posts: 219
Joined: Sat Sep 08, 2007 2:21 pm
Location: In the clouds. In the trees. In the birds. Or in my own little world.
Score: 4 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby automail10 » Sun Nov 11, 2007 2:45 pm

Rule-Buster wrote:so your going to get this thing going agian?

It helped but yes, I'll get it goin agian.
Back
User avatar
automail10
 
Posts: 280
Joined: Sun Jun 03, 2007 11:30 pm
Location: On a pancake on a bunny.
Score: 5 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby automail10 » Sun Nov 11, 2007 2:45 pm

Won't anybody continue to teach?
Back
User avatar
automail10
 
Posts: 280
Joined: Sun Jun 03, 2007 11:30 pm
Location: On a pancake on a bunny.
Score: 5 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby Rule-Buster » Sun Nov 11, 2007 2:50 pm

did ya tell them how to keep your actor from jumping infanitly? (i'm embarrased to say... but i need to know that...)
I'm right behind you...
http://freewebs.com/jason-buster/
User avatar
Rule-Buster
 
Posts: 219
Joined: Sat Sep 08, 2007 2:21 pm
Location: In the clouds. In the trees. In the birds. Or in my own little world.
Score: 4 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby automail10 » Sun Nov 11, 2007 3:17 pm

Rule-Buster wrote:did ya tell them how to keep your actor from jumping infanitly? (i'm embarrased to say... but i need to know that...)

I'm tired so i can't do that now, okay?
Back
User avatar
automail10
 
Posts: 280
Joined: Sun Jun 03, 2007 11:30 pm
Location: On a pancake on a bunny.
Score: 5 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby Rule-Buster » Sun Nov 11, 2007 3:20 pm

ok :D i can wait! =D
I'm right behind you...
http://freewebs.com/jason-buster/
User avatar
Rule-Buster
 
Posts: 219
Joined: Sat Sep 08, 2007 2:21 pm
Location: In the clouds. In the trees. In the birds. Or in my own little world.
Score: 4 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby automail10 » Sun Nov 11, 2007 10:56 pm

found but wasn't visible.
Back
User avatar
automail10
 
Posts: 280
Joined: Sun Jun 03, 2007 11:30 pm
Location: On a pancake on a bunny.
Score: 5 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby DarkParadox » Sat Jan 05, 2008 1:32 am

functions for if and While

C code chart for game editor
< Smaller than
<= Smaller or equal to
== Equal to
!= Not equal to
> Larger than
>= Larger or equal to
&& And
! Not
|| Or
User avatar
DarkParadox
 
Posts: 457
Joined: Mon Jan 08, 2007 11:32 pm
Location: USA, Florida.
Score: 84 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby automail20 » Sat Mar 08, 2008 4:46 pm

Well, rebump! You can export your game only for windows in GE Lite. But in Pro Version, u can export in any format avalable.
I'm really automail10. I have left Game Editor since everybody is soo cruel here! U happy? mies website http://www.freewebs.com/automail10
and http://www.freewebs.com/gamessoft I leave this evidence behind to contact me.
User avatar
automail20
 
Posts: 33
Joined: Fri Mar 07, 2008 5:19 pm
Score: 1 Give a positive score

Re: Automail10's Begginers (Now advanced) Teachings

Postby j2graves » Sat Mar 08, 2008 5:06 pm

did ya tell them how to keep your actor from jumping infanitly? (i'm embarrased to say... but i need to know that...)


you create a variable as a global integer. u can call it "canjump" then you do a collision event on the tile or platform actors
Code: Select all
canjump = 1;


then u make a keydown event

Code: Select all
if(canjump==1)
{yvelocity = yvelocity -10;
canjump = 0;}


if you wanna double jump, make it

Code: Select all
canjump = 2;



then create a timer. let's call it jump_timer. make it extremely short say one ms. then write in the keydown event

Code: Select all
if(canjump==2)
{yvelocity = yvelocity -10;
createtimer jump_timer;}


and a timer event

Code: Select all
canjump = 1;


and another keydown event

Code: Select all
if(canjump==1)
{yvelocity = yvelocity -10;
canjump = 0;}


hope this helps
No games to my name...
User avatar
j2graves
 
Posts: 1302
Joined: Thu Aug 16, 2007 6:42 pm
Location: on the other side of infinity
Score: 19 Give a positive score

Re:

Postby supa-tails » Sat Mar 08, 2008 8:22 pm

supa-tails wrote:For beginers who want to move or jump.

First add an animation using either 1 page of sprites organized from up to down, or have different files and name them the same.(tailsfly1 tailsfly2 tailsfly3)

Then add keydown and press the right button, then do a script editor: x = x + 8; and also add a change animation.

And for the left type left type x = x - 8;

Then click on the upper button saying script, and global code, then click the bottom right button saying Variabals and click add, then type canjump.

Then make a ground actor called ground or something and add a collision on the player and a script editor saying: canjump = 1; Then add a collision, physical response, 1
1
0
1
And add it.

THEN add a key down and press your jump button, then script editor saying:

if(canjump==1)
{
yvelocity = -8;
canjump=0;
}

THEN add a global code/variabal called floater.

AND LAST BUT NOT LEAST, add a draw actor for your player and a script editor saying:

if (floater==0)
{
yvelocity += .3;
if(yvelocity > 20) yvelocity = 20;
}
if (floater==1 && canjump==0)
{
yvelocity += .2;
if(yvelocity > 20) yvelocity = 20;
}



:D :D :D THE END!!! :D :D :D

*coughialreadysaidthatcough* :mrgreen:
................................................................................................ www.freewebs.com/thebiverse .....................................................................................




c'ya on the other side
User avatar
supa-tails
 
Posts: 269
Joined: Fri Jul 27, 2007 3:03 pm
Location: In an aliens tummy... Or in cumming Georgia USA
Score: 17 Give a positive score

PreviousNext

Return to Tutorials

Who is online

Users browsing this forum: No registered users and 1 guest