setPedGravity | Multi Theft Auto: Wiki Skip to content

setPedGravity

Client-side
Server-side
Shared

Pair: getPedGravity

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function sets the gravity level of a ped.

Syntax

setPedGravity ( )

Code Examples

server

This example allows the user to type a command to change their gravity:

function consoleSetPlayerGravity ( thePlayer, commandName, level )
if thePlayer and level then
local success = setPedGravity ( thePlayer, tonumber ( level ) ) -- Set the gravity
if not success then -- Check if setPlayerGravity was false (not successful)
outputConsole( "Failed to set ped gravity", thePlayer ) -- If success is false, meaning gravity could not be set, this message will show
end
end
end
addCommandHandler ( "setplayergravity", consoleSetPlayerGravity )

See Also