Skip to main content

GetPlayerGravity

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Get a player's gravity.

NameDescription
playeridThe ID of the player to get the gravity of.

Returns

The player's gravity as float.

Examples

public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/mygravity", true))
{
new string[32];
format(string, sizeof(string), "Your gravity is: %f", GetPlayerGravity(playerid));
SendClientMessage(playerid, 0xFFFF00FF, string);
return 1;
}
return 0;
}