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.
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.
Name | Description |
---|---|
playerid | The ID of the player to toggle the ghost mode. |
bool:toggle | true 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;
}
Related Functions
- GetPlayerGhostMode: Get player's ghost mode.