shooting and droping

Talk about making games.

Re: shooting and droping

Postby Spidy » Tue Oct 02, 2007 7:20 am

just download the dux.zip .bee-ant
Image
VOTE FOR MY SIGNATURE PLEASE.......THANK YOU
User avatar
Spidy
 
Posts: 935
Joined: Tue Aug 14, 2007 1:28 pm
Location: http://www.inatonibai.com
Score: 38 Give a positive score

Re: shooting and droping

Postby Bee-Ant » Tue Oct 02, 2007 8:20 am

Oh uh...my computer go slow...
Can you tell your problem with text here???
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

Re: shooting and droping

Postby Spidy » Tue Oct 02, 2007 8:54 am

sorry bad english bee-ant i want to when player touch the platform and i push the button my player stop on ground not walking in platform just like event disable
Image
VOTE FOR MY SIGNATURE PLEASE.......THANK YOU
User avatar
Spidy
 
Posts: 935
Joined: Tue Aug 14, 2007 1:28 pm
Location: http://www.inatonibai.com
Score: 38 Give a positive score

Re: shooting and droping

Postby Bee-Ant » Tue Oct 02, 2007 9:04 am

Fine, i cant English well too...
Umm...how about this :

CollisionEvent>LeftSide>Platform>Repeat>
Code: Select all
ChangeAnimation("EventActor", "StopRight", FORWARD);


CollisionEvent>RightSide>Platform>Repeat>
Code: Select all
ChangeAnimation("EventActor", "StopLeft", FORWARD);


I'll try to download it again...
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

Re: shooting and droping

Postby Spidy » Tue Oct 02, 2007 9:08 am

yes i try that code nothing happen well dont worry i give Tekdino my GE file he will set that bug :P
Image
VOTE FOR MY SIGNATURE PLEASE.......THANK YOU
User avatar
Spidy
 
Posts: 935
Joined: Tue Aug 14, 2007 1:28 pm
Location: http://www.inatonibai.com
Score: 38 Give a positive score

Re: shooting and droping

Postby Bee-Ant » Tue Oct 02, 2007 9:15 am

Spidy wrote:yes i try that code nothing happen well dont worry i give Tekdino my GE file he will set that bug :P

Yeah...Tekdino is better in script than me... :D
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

Re: shooting and droping

Postby Spidy » Tue Oct 02, 2007 9:22 am

no u r expert in graphics
Image
VOTE FOR MY SIGNATURE PLEASE.......THANK YOU
User avatar
Spidy
 
Posts: 935
Joined: Tue Aug 14, 2007 1:28 pm
Location: http://www.inatonibai.com
Score: 38 Give a positive score

Re: shooting and droping

Postby Bee-Ant » Tue Oct 02, 2007 9:26 am

Spidy wrote:no u r expert in graphics

But bad on script... :D

Well, I have saw your video...remember my "The Last" Action CollisionEvent Left and Right side of Platform???
Increase the yvelocity...maybe to be :
Code: Select all
yvelocity=yvelocity+1;

If your player is still "CLIMB UP"...increase again...maybe to :
Code: Select all
yvelocity=yvelocity+2;

and more...
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

Re: shooting and droping

Postby Spidy » Tue Oct 02, 2007 9:28 am

thanks bee-ant i give u +point
Image
VOTE FOR MY SIGNATURE PLEASE.......THANK YOU
User avatar
Spidy
 
Posts: 935
Joined: Tue Aug 14, 2007 1:28 pm
Location: http://www.inatonibai.com
Score: 38 Give a positive score

Re: shooting and droping

Postby Bee-Ant » Tue Oct 02, 2007 9:32 am

Or add this code for your current action :

on current CollisionEvent>Left side>Platform>repeat
Code: Select all
stopright=1; //make a stopright variable first


on current CollisionEvent>Right side>Platform>repeat
Code: Select all
stopleft=1; //make a stopleft variable first



edit your current KeyDownEvent>(what key to move left)>repeat, to be :
Code: Select all
if(stopleft==0)
{
    x=x-3;
}

edit your current KeyDownEvent>(what key to move right)>repeat, to be :
Code: Select all
if(stopright==0)
{
    x=x+3;
}


CollisionFinish of Platform
Code: Select all
stopleft=0;
stopright=0;


woow...thanks, I have gave you 1 point too... :D
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

Previous

Return to Game Development

Who is online

Users browsing this forum: No registered users and 1 guest

cron