Supported Games
Notice
Rust has fixed the issue where the Chinook would not properly select monuments randmonly as of the October 2025 Rust update, so this plugin has become less useful. Some users may still want to use it for the other features.
Features
- Properly randomizes the order in which chinooks visit monuments
- Allows customizing which monuments chinooks will visit
- Allows increasing the number of crates that each chinook will drop
- Support custom monuments (monument markers)
Configuration
{
"Min crate drops per chinook": 1,
"Max crate drops per chinook": 1,
"Disallow safe zone monuments": true,
"Disallowed monument types": [
"Cave",
"WaterWell"
],
"Disallowed monument tiers": [
"Tier0"
],
"Disallowed monument prefabs (partial match)": [],
"Disallowed monument prefabs (exact match)": [],
"Force allow monument prefabs (partial match)": [],
"Force allow monument prefabs (exact match)": []
}
Min crate drops per chinook-- The minimum number of crates that each chinook can drop.Max crate drops per chinook-- The maximum number of crates that each chinook can drop.Disallow safe zone monuments(trueorfalse) -- Whiletrue, chinooks will never visit safe zone monuments (e.g., outpost, bandit camp, fishing villages), same as vanilla behavior. Whilefalse, chinooks may visit safe zone monuments, depending on the other configuration options. Disabling this may make sense for hardcore servers.Disallowed monument types-- Chinooks will never visit monuments with these types. Allowed values:Cave,Airport,Building,Town,Radtown,Lighthouse,WaterWell,Roadside,Mountain,Lake.Disallowed monument tiers-- Chinooks will never visit monuments with these tiers. Allowed values:Tier0,Tier1,Tier2.Disallowed monument prefabs (partial match)-- Chinooks will never visit monuments whose prefab name (or monument marker name) contains any of these keywords.Disallowed monument prefabs (exact match)-- Chinooks will never visit monuments whose prefab name (or monument marker name) is an exact match for any of these values.Force allow monument prefabs (partial match)-- Chinooks may visit monuments whose prefab name (or monument marker name) contains any of these keywords, even if the monument would be disallowed by other settings.Force allow monument prefabs (exact match)-- Chinooks may visit monuments whose prefab name (or monument marker name) is an exact match of any of these values.
FAQ
How do extra crate drops work?
If you configure the plugin to allow chinooks to drop multiple crates, the chinook will drop one crate at a time per drop-eligible monument. If the chinook has already visited all visit-eligible monuments and still has crates remaining, it will revisit previous monuments in the same order. When the chinook has dropped all of its crates, the chinook will leave the map.
At which monuments will chinooks drop crates?
Chinooks will drop crates at monuments that have a drop zone. The following vanilla monuments have drop zones.
- Power plant
- Train yard
- Water treatment plant
- Airfield
- Dome
Map developers can create additional drop zones using the assets/bundled/prefabs/modding/dropzone.prefab. The Monument Addons plugin also allows creating additional drop zones in monuments via the maprefab dropzone command.
Developer Hooks
object OnBetterChinookPatrol(CH47HelicopterAIController chinook)
- Called when this plugin wants to affect a chinook
- Returning
falsewill prevent the plugin from affecting the chinook - Returning
nullwill allow the plugin to affect the chinook, unless another plugin returnsfalse
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

