Vehicle::defaultEngineBehaviour

From RAGE Multiplayer Wiki
Revision as of 05:44, 1 June 2020 by Kekbamm1337 (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 = flag;

Parameters

  • flag: Boolean

Examples

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

mp.game.vehicle.defaultEngineBehaviour = false;


See also