Vehicle::defaultEngineBehaviour

From RAGE Multiplayer Wiki
Revision as of 20:06, 17 December 2018 by Unknown (talk | contribs)

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.

JavaScript Syntax

Syntax

mp.game.vehicle.defaultEngineBehaviour = enabled;

Parameters

  • enabled: Boolean

Examples

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

mp.game.vehicle.defaultEngineBehaviour = false;


See also