Przejdź do głównej zawartości

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.

NameDescription
playeridThe 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);