GetPedGravity

From Multi Theft Auto: Wiki
Revision as of 14:30, 7 October 2018 by Surge (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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 gravity for the specified ped. The default gravity is 0.008.

Syntax

float getPedGravity ( ped thePed )

OOP Syntax Help! I don't understand this!

Method: ped:getGravity(...)
Variable: .gravity
Counterpart: setPedGravity


Required Arguments

  • thePed: The ped whose gravity you want to check.

Returns

Returns a float indicating the ped's gravity, or false if the ped is invalid. Default value is 0.008.

Example

This example outputs the gravity of the player who entered the 'showGravity' command.

function showGravity ( thePlayer )
	local gravity = getPedGravity ( thePlayer )
	outputChatBox ( "Your gravity: " .. tostring(gravity), thePlayer )
end
addCommandHandler ( "showGravity", showGravity )

See Also