This Rust plugin disables rocket and flare use on the attack helicopter. It blocks firing for pilots and gunners, and can optionally prevent loading rocket or flare ammo. Use the bypass permissions if certain players should be exempt.
Permissions
nohelirockets.bypass- Allows the player to bypass all blocking rules, including firing and loading.
Configuration
JSON:
{
"Version": "1.1.0",
"Show Toast When Blocked": true,
"Ammunition": [
{
"Short Name": "flare",
"Block Firing": true,
"Block Loading": false
},
{
"Short Name": "ammo.rocket.hv",
"Block Firing": true,
"Block Loading": true
},
{
"Short Name": "ammo.rocket.fire",
"Block Firing": true,
"Block Loading": true
}
]
}
Show Toast When Blocked- Enables or disables the on-screen toast message when a player is blocked from firing or loading ammo.Ammunition- A list of rules for specific ammo types based on their short name.
Ammunition contains:Short Name- The short name of the item (e.g.,flare,ammo.rocket.hv).Block Firing- If true, blocks the item from being fired from a helicopter.Block Loading- If true, prevents the item from being loaded into a helicopter ammo container.
Localization
JSON:
{
"Item.LaunchBlocked": "You cannot launch {0} from this helicopter.",
"Item.LoadBlocked": "You cannot load {0} into this helicopter."
}