Vehicle::getEngineHealth: Difference between revisions

From RAGE Multiplayer Wiki
No edit summary
Line 30: Line 30:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
// todo
  let engineHealth = vehicle.getEngineHealth();
  mp.gui.chat.push(`engine health: ${engineHealth}`);
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Vehicle_function_c}}
{{Vehicle_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Revision as of 18:41, 6 August 2018

Engine Health Status
1000 Perfect - Undamaged
< 1000 Damaged
< 400 Engine is smoking and losing functionality
0 Engine stops working and car is not drivable
< 0 Engine catches fire, health rapidly declines and blows up seconds later

Maximum: 1000
Minimum: -4000
Note*: Returns 1000.0 if the function is unable to get the address of the specified vehicle or if it's not a vehicle.

Syntax

vehicle.getEngineHealth();

Required Arguments

Return value

  • float

Example

   let engineHealth = vehicle.getEngineHealth();
   mp.gui.chat.push(`engine health: ${engineHealth}`);

See also