Hope everybody knows this:- KillEngine() function, It'll stop your vehicle, I don't know the cmd to start it again, So add those two functions, else tell me how to add them
Vehicle.Kill is already there.
Quote from: soulshaker on Sep 17, 2015, 07:12 AMVehicle.Kill is already there.
but that will blow the vehicle
I want to stop the engine of the vehicle, not to blow it away
function StartEngine(vehicle)
{
for (local i = 0; i <= 101; ++i)
{
if (FindPlayer(i) != null && FindPlayer(i).Vehicle != null && FindPlayer(i).Vehicle.ID == vehicle.ID)
{
FindPlayer(i).Eject();
FindPlayer(i).Vehicle = vehicle;
}
}
}
Untested btw, so if you can test it, show us the result!
What about KillEngine?
You said, KillEngine exists but how to start again.
Anyways you can set top speed to 0 and acceleration to 0 (handling) for killengine and reset 'em for startengine
Okay, It was my fault, any examples to the point you said
is kill engine really there? almost all squirrel functions here https://bitbucket.org/stormeus/0.4-squirrel/src/dfdf3960226db784d7e807770ca3b1b46f51b16c/VCMP.h?at=master&fileviewer=file-view-default
No its not there, I was asking to implement it
Untested
function CVehicle::KillEngine()
{
::SetInstHandlingRule(ID, 13, 0);
::SetInstHandlingRule(ID, 14, 0);
}
function CVehicle::StartEngine()
{
::ResetInstHandlingRule(::ID, 13);
::ResetInstHandlingRule(::ID, 14);
}
Hope it workz