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.
DisableInteriorEnterExits
Description
Disable all the interior entrances and exits in the game (the yellow arrows at doors).
Examples
public OnGameModeInit()
{
DisableInteriorEnterExits();
return 1;
}
Notes
warning
This function will only work if it has been used BEFORE a player connects (it is recommended to use it in OnGameModeInit). It will not remove a connected player's markers.
If the gamemode is changed after this function has been used, and the new gamemode doesn't disable markers, the markers will NOT reappear for already-connected players (but will for newly connected players).
tip
You can also disable interior entrance markers via config.json
"use_entry_exit_markers": false,
Related Functions
- AllowInteriorWeapons: Determine if weapons can be used in interiors.