Vice City: Multiplayer

VC:MP Discussion => General Discussion => Topic started by: Diego^ on Jun 17, 2015, 02:06 PM

Title: Stop a Helicopter
Post by: Diego^ on Jun 17, 2015, 02:06 PM
Well I created a fuel system, I realized that Vehicle.Kill function is not the same as 0.3, which would stop any vehicle, so I used The function SetHandlingData and could cause the vehicle to stop, the more I realized that the helicopter did not stop, then I would that someone would help me.

 ???
Title: Re: Stop a Helicopter
Post by: Skirmant on Jun 17, 2015, 08:35 PM
You could try freezing the player
Title: Re: Stop a Helicopter
Post by: Diego^ on Jun 17, 2015, 09:20 PM
Quote from: Skirmant on Jun 17, 2015, 08:35 PMYou could try freezing the player

I've tried, the player can not get out of the vehicle when it frozen. :-\
Title: Re: Stop a Helicopter
Post by: EK.IceFlake on Jun 18, 2015, 04:10 AM
Try setting handling to:
Maxspeed: 0
Acceleration: 0
Title: Re: Stop a Helicopter
Post by: Diego^ on Jun 18, 2015, 10:50 AM
Does not work, the ideal is that vehicle.Kill() function has the same function as the vehicle.KillEngine() of 0.3
Title: Re: Stop a Helicopter
Post by: Thijn on Jun 18, 2015, 03:56 PM
Quote from: Diego^ on Jun 18, 2015, 10:50 AMDoes not work, the ideal is that vehicle.Kill() function has the same function as the vehicle.KillEngine() of 0.3
What does it do in 0.4? I haven't tried it myself.
Title: Re: Stop a Helicopter
Post by: Diego^ on Jun 18, 2015, 07:01 PM
Explode the vehicle...
Title: Re: Stop a Helicopter
Post by: aXXo on Jun 18, 2015, 09:30 PM
Quote from: Diego^ on Jun 18, 2015, 07:01 PMExplode the vehicle...
There you go! The heli stopped :)

Try ejecting the driver and putting him in passenger slot. Not sure what would happen if there is already a passenger.
Title: Re: Stop a Helicopter
Post by: Shadow on Jun 18, 2015, 10:50 PM
I used vehicle.Speed and set 0 to all attributes iirc
Title: Re: Stop a Helicopter
Post by: Diego^ on Jun 19, 2015, 01:36 AM
Thank Shadow, your tip helped.
Solved.
Title: Re: Stop a Helicopter
Post by: EK.IceFlake on Jun 19, 2015, 03:13 AM
Quote from: Thijn on Jun 18, 2015, 03:56 PM
Quote from: Diego^ on Jun 18, 2015, 10:50 AMDoes not work, the ideal is that vehicle.Kill() function has the same function as the vehicle.KillEngine() of 0.3
What does it do in 0.4? I haven't tried it myself.
It is just a short way of
vehicle.Health = 0;
vehicle.Damage = 0;