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.
AllowInteriorWeapons
Description
Toggle whether the usage of weapons in interiors is allowed or not.
Name | Description |
---|---|
bool:allow | 'true' to enable weapons in interiors (enabled by default), 'false' to disable weapons in interiors. |
Returns
This function does not return any specific values.
Examples
public OnGameModeInit()
{
// This will allow weapons inside interiors.
AllowInteriorWeapons(true);
return 1;
}
Notes
warning
This function does not work in the current SA:MP version!
tip
You can also toggle interior weapons via config.json
"allow_interior_weapons": true,
Related Functions
- AreInteriorWeaponsAllowed: Can weapons be used in interiors?
- SetPlayerInterior: Set a player's interior.
- GetPlayerInterior: Get the current interior of a player.
Related Callbacks
- OnPlayerInteriorChange: Called when a player changes interior.