Vice City: Multiplayer

VC:MP Discussion => General Discussion => Topic started by: KAKAN on Sep 17, 2015, 07:08 AM

Title: [Request]Killengine
Post by: KAKAN on Sep 17, 2015, 07:08 AM
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
Title: Re: [Request]Killengine
Post by: soulshaker on Sep 17, 2015, 07:12 AM
Vehicle.Kill is already there.
Title: Re: [Request]Killengine
Post by: MacTavish on Sep 17, 2015, 07:31 AM
Quote from: soulshaker on Sep 17, 2015, 07:12 AMVehicle.Kill is already there.
but that will blow the vehicle
Title: Re: [Request]Killengine
Post by: KAKAN on Sep 17, 2015, 07:48 AM
I want to stop the engine of the vehicle, not to blow it away
Title: Re: [Request]Killengine
Post by: EK.IceFlake on Sep 17, 2015, 12:09 PM
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!
Title: Re: [Request]Killengine
Post by: KAKAN on Sep 17, 2015, 12:23 PM
What about KillEngine?
Title: Re: [Request]Killengine
Post by: EK.IceFlake on Sep 17, 2015, 12:26 PM
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
Title: Re: [Request]Killengine
Post by: KAKAN on Sep 17, 2015, 12:42 PM
Okay, It was my fault, any examples to the point you said
Title: Re: [Request]Killengine
Post by: Debian on Sep 17, 2015, 03:11 PM
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
Title: Re: [Request]Killengine
Post by: KAKAN on Sep 17, 2015, 04:07 PM
No its not there, I was asking to implement it
Title: Re: [Request]Killengine
Post by: EK.IceFlake on Sep 17, 2015, 06:40 PM
Untested
function CVehicle::KillEngine()
{
    ::SetInstHandlingRule(ID, 13, 0);
    ::SetInstHandlingRule(ID, 14, 0);
}
function CVehicle::StartEngine()
{
    ::ResetInstHandlingRule(::ID, 13);
    ::ResetInstHandlingRule(::ID, 14);
}
Hope it workz