ManualVehicleEngineAndLights

ManualVehicleEngineAndLights

Description:
Function ManualVehicleEngineAndLights used before any player connects (OnGameModeInit) to tell all clients that the script will control vehicle engines and lights. This prevents the game automatically turning the engine on/off when players enter/exit vehicles and headlights automatically coming on when it is dark.
Function ManualVehicleEngineAndLights was added in 0.3c and will not work in earlier versions!
Is it not possible to reverse this function after it has been used. You must either use it or not use it.


Parameters:
(This function has no parameters.)


Return Values:
This function always returns 1. It cannot fail to execute.


Examples:
public OnGameModeInit()
{
    ManualVehicleEngineAndLights();
 
    return 1;
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.