warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
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.
Name | Description |
---|---|
playerid | The 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;
}
Related Functions
- SetPlayerGravity: Set a player's gravity.
- GetGravity: Get the currently global gravity.
- SetGravity: Set the gravity for all players.