GetPedOxygenLevel

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function returns the current oxygen level of the specified ped.

Syntax

float getPedOxygenLevel ( ped thePed )

OOP Syntax Help! I don't understand this!

Method: ped:getOxygenLevel(...)
Variable: .oxygenLevel
Counterpart: setPedOxygenLevel


Required Arguments

  • thePed: The ped whose oxygen level you want to check

Returns

A float with the oxygen level, false if an invalid ped was given.

Example

Click to collapse [-]
Client

This example defines a "showoxygen" console command that shows the player that executes it which oxygen level he has.

function showOxygen ( command )
	local oxygen = getPedOxygenLevel ( localPlayer )
	outputChatBox( "Your oxygen level: " .. oxygen )
end
addCommandHandler ( "showoxygen", showOxygen )

See Also