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.
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.