Vehicle::getColor: Difference between revisions

From RAGE Multiplayer Wiki
No edit summary
Line 1: Line 1:


==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">vehicle.getColor(id);</syntaxhighlight>
<pre>vehicle.getColor(id);</pre>
=== Required Arguments ===
=== Required Arguments ===
*'''id:''' int
*'''id:''' int
Line 8: Line 8:
===Return value===
===Return value===
*'''integer:''' color
*'''integer:''' color
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">

Revision as of 17:46, 16 August 2018

Syntax

vehicle.getColor(id);

Required Arguments

  • id: int

(0 - Primary Color, 1 - Secondary Color)

Return value

  • integer: color

Example

let primaryColor = player.vehicle.getColor(0)
let secondaryColor = player.vehicle.getColor(1)

// If the vehicle primary color was black the following would return 0
console.log(primaryColor)

See also