Skip to main content

TogglePlayerGhostMode

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description​

Toggle player's ghost mode. Ghost mode disables the collision between player models.

NameDescription
playeridThe ID of the player to toggle the ghost mode.
bool:toggletrue for enable and false for disable.

Returns​

This function always returns true.

Examples​

public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/ghostmode", true))
{
TogglePlayerGhostMode(playerid, true);
SendClientMessage(playerid, -1, "SERVER: You enabled the ghost mode!");
return 1;
}
return 0;
}