Vehicle::defaultEngineBehaviour

From RAGE Multiplayer Wiki

Client-Side
Function

 JavaScript



Lets you disable the default engine behaviour (when you enter a vehicle, the player automatically turns on the engine). Setting this to false will stop the player from turning the engine on.

Note:
It is best to set the config flag: PED_FLAG_STOP_ENGINE_TURNING - to ensure the player doesn't attempt to turn the engine resulting in a strange animation.

mp.players.local.setConfigFlag(429, true);


JavaScript Syntax

Syntax

mp.game.vehicle.defaultEngineBehaviour = flag;

Parameters

  • flag: Boolean

Examples

Simply disables people from turning on their engine within the server.

mp.game.vehicle.defaultEngineBehaviour = false;


See also