Page 2 of 2

Re: My Buggy Level :D

Posted: Fri Sep 05, 2008 7:22 pm
by creekmonkey
here is a short video of my vehicle. you can see if it might be helpful.

http://www.youtube.com/watch?v=dY3QMfh0goE

Re: My Buggy Level :D

Posted: Fri Sep 05, 2008 7:53 pm
by metal_head
Looks Cool! But the player has to accelerate the vehicle,right? I want the vehicle to eccelerate itself and stop itself and when the player kills all the bad guys the vehicle to start moving again :) is that possible?

Re: My Buggy Level :D

Posted: Fri Sep 05, 2008 8:53 pm
by creekmonkey
yes in my game the player has to accelerate and brake the vehicle using keys.

im sure it could be done with scripting, try setting a varriable to store number of enimies, set the speed in your script,

if(# of enimes > 0)
{
speed = whatever;
}
else
{
speed = 0;
}

to turn or periodically stop vehicle us the if(GetDistanceTo("pawn name"))

making your player stay in the vehicle seems the biggest problem to me, im interested to see how you work it out.

Re: My Buggy Level :D

Posted: Fri Sep 05, 2008 9:25 pm
by metal_head
Yes,I saw that in the script,cool Idea BTW (about that rail car).