Allows for the configuration of additional Mini-Copter options, including the addition of storage containers to the Mini-Copter.
Warning about high Lift Fraction values: Setting a high lift fraction can increase the risk of FlyHack kicks when a player has crashed the Mini-Copter. Seconds to pause flyhack when dismount from heli.: should solve the issue.
The default configuration mimics the default Rust values.
- Increase the Lift Fraction to increase the take off speed.
- Increase the Pitch/Roll/Yaw Torque Scale in order to make the Mini-Copter response to controls faster.
- Setting Fuel per Second to 0 will make the Mini-Copter use no fuel, but still requires 1 fuel to be placed into the fuel storage in order to run the Mini-Copter. This is a client side requirement.
Warning about high Lift Fraction values: Setting a high lift fraction can increase the risk of FlyHack kicks when a player has crashed the Mini-Copter. Seconds to pause flyhack when dismount from heli.: should solve the issue.
Key binds
- The pilot can turn the search light on and off with flashlight key
Configuration
The settings and options can be configured in the MiniCopterOptions file under the config directory. The use of an editor and validator is recommended to avoid formatting issues and syntax errors.The default configuration mimics the default Rust values.
Developer Hooks
OnMiniCopterOptions
- Called when the plugin wants to modify a minicopter
- Returning false will prevent the minicopter from being modified
- Returning null will allow the minicopter to be modified, unless blocked by another plugin
OnMinicopterFuelPerSecChange
- Called when the plugin wants to modify the fuelPerSec property of a specific minicopter
- Returning false will prevent the fuelPerSec property from being modified
- Returning null will allow the fuelPerSec property to be modified to the value in fuelPerSec[0] (which you can modify if you want), unless blocked by another plugin
- When used correctly, multiple plugins can stack buffs/debuffs
OnMinicopterLiftFractionChange
- Called when the plugin wants to modify the liftFraction property of a specific minicopter
- Returning false will prevent the liftFraction property from being modified
- Returning null will allow the liftFraction property to be modified to the value in liftFraction[0] (which you can modify if you want), unless blocked by another plugin
- When used correctly, multiple plugins can stack buffs/debuffs