GetPlayerGravity
注意
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.