Help! I REALLY need it!

Game Editor comments and discussion.

Help! I REALLY need it!

Postby Devil Metal Knight » Sun Feb 03, 2008 6:16 pm

can you charge attacks like when you hold the attack key and the character goes into a charging mode. But the longer you hold it the stronger it gets plus you can only hold on for 5 sec. then it'll go on it's own and unleash that power by itself.

Also how do you make health text? I search for a bit but didn't find what I wanted. I Need a heath text like in Super smash bros. Melee.

How do you make it so a the beginning of a match it does like
3! (waits 2 sec.) 2! (Waits 2 sec.) 1! (Waits 2 sec.) Go! and then the match starts off, and not before go!

Also how can you make it so it's like in super smash bros melee deaths? Like you go to far up, down, left, or right you die?

And my guy won't stop jumping! I seached and did what they told me but my guy still jumps forever!
This would be really helpful!
Super Smash Bash
Completed:
Title screen, Options screen, Main Screen
Working on: Character selection
User avatar
Devil Metal Knight
 
Posts: 7
Joined: Sat Feb 02, 2008 11:45 pm
Score: 0 Give a positive score

Re: Help! I REALLY need it!

Postby Super Pieman » Sun Feb 03, 2008 10:58 pm

Lucky You! I know how to fix all of your problems.
Do you want me to tell you or do you want a demo?
Current Projects:
*Lonely (2%)
**LinkSys (1%)

*To be made in GE, then ported to DS.
**To be made for the DS.
User avatar
Super Pieman
 
Posts: 57
Joined: Sat Nov 03, 2007 3:27 pm
Location: Manotick (Ontario, Canada)
Score: 2 Give a positive score

Re: Help! I REALLY need it!

Postby Devil Metal Knight » Sun Feb 03, 2008 11:22 pm

I'd like you to tell me please Because demos never work for me.

Also instead of the jumping one I want my guy to jump 5 times then stop jumping. I found out the way for 1 jump.
Super Smash Bash
Completed:
Title screen, Options screen, Main Screen
Working on: Character selection
User avatar
Devil Metal Knight
 
Posts: 7
Joined: Sat Feb 02, 2008 11:45 pm
Score: 0 Give a positive score

Re: Help! I REALLY need it!

Postby DarkParadox » Thu Feb 07, 2008 10:52 pm

i have a soulution for you(replace jumpvar with the var your using for jumping):
do:
collide[land]>script editor.
Code: Select all
jumpvar = 5;

instead of:
Code: Select all
jumpvar = 1;

and keydown:
Code: Select all
if(jumpvar > 0)
{
actions here
jumpvar--;
}
User avatar
DarkParadox
 
Posts: 457
Joined: Mon Jan 08, 2007 11:32 pm
Location: USA, Florida.
Score: 84 Give a positive score

Re: Help! I REALLY need it!

Postby Bee-Ant » Fri Feb 08, 2008 9:59 am

Devil Metal Knight wrote:can you charge attacks like when you hold the attack key and the character goes into a charging mode. But the longer you hold it the stronger it gets plus you can only hold on for 5 sec. then it'll go on it's own and unleash that power by itself.

player>Keydown>AttackKey>NoRepeat>
Code: Select all
//CreateTimer("PowerIncrease","1000 ms","Periodic","5 times");

player>KeyUp>AttackKey>
Code: Select all
DestroyTimer("PowerIncrease");
attack=1;
ChangeAnimation("EventActor","Attack",FORWARD);

player>Timer>PowerIncrease>
Code: Select all
power++;

player>AnimationFinish>AnyAnimation
Code: Select all
attack=0;
power=0;

Enemy>Collision>Player
Code: Select all
if(player.attack==1)
{
    health-=player.power;
}
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score


Return to GE - General

Who is online

Users browsing this forum: No registered users and 1 guest

cron