SetPedOxygenLevel

From Multi Theft Auto: Wiki
Revision as of 09:46, 26 July 2014 by Lexr128 (talk | contribs) (Undo revision 34159 by Bass (talk) - Wrong values)
Jump to navigation Jump to search

This function allows you to set the oxygen level of a ped.

Syntax

bool setPedOxygenLevel ( ped thePed, float oxygen )

Required Arguments

  • thePed: the ped whose oxygen level you want to modify.
  • oxygen: the amount of oxygen you want to set on the ped. Native values are from 0 to 1750. And with full (225) stat - from 0 to 3250.

Returns

Returns true if the oxygen level was changed succesfully. Returns false if an invalid ped and/or oxygen level was specified.

Example

Click to collapse [-]
Client

This example fills the local player's oxygen.

function fillOxygen ( command )
	local maxOxygen = getPedStat ( localPlayer, 225 ) * 1.5 + 1750
	setPedOxygenLevel ( localPlayer, maxOxygen )
end
addCommandHandler ( "filloxygen", fillOxygen )


See Also