note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
GetPlayerGhostMode
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
Description
Get player's ghost mode.
Name | Description |
---|---|
playerid | The ID of the player to get the ghost mode of. |
Returns
true - Ghost mode is enable.
false - Ghost mode is disable.
Examples
new string[64];
format(string, sizeof(string), "Your ghost mode is %s", GetPlayerGhostMode(playerid) == true ? "enable" : "disable");
SendClientMessage(playerid, -1, string);
Related Functions
- TogglePlayerGhostMode: Toggle player's ghost mode.