Vehicle::setPlanePropellersHealth: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

22 April 2024

  • curprev 17:1717:17, 22 April 2024Shr0x talk contribs 768 bytes +768 Created page with "{{JSContainer| === Required Arguments === *'''handle:''' Vehicle handle *'''health:''' number ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.vehicle.setPlanePropellersHealth(handle, health); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> const plane = mp.vehicles.atRemoteId(0); //get vehicle with remote id 0 if (!plane || !mp.vehicles.exists(plane)) return; //if the vehicle don't exist we return here if (mp...."