-
Notifications
You must be signed in to change notification settings - Fork 0
Component: Cutter
Timi007 edited this page Mar 25, 2023
·
3 revisions
Author: PhILoX, Timi007
Description:
Adds a grass and bush cutter to the players interactions allowing to remove grass and bushes ingame.
- Main
- ACE (ace_common, ace_interact_menu)
- Add grass cutter to ACE interaction menu [live-updating]
- Change size of the grass cutter [live-updating]
- Time it takes in seconds to remove grass [live-updating]
- Add bush cutter to ACE interaction menu [live-updating]
- Time it takes in seconds to remove a bush [live-updating]
- Require a designated item (saw) to remove bushes. [live-updating]
If the CBA option "Require item" is enable, a player must have a designated item in their inventory to be able to cut down bushes.
By default these items can be used:
- Folding saw (
mts_cutter_folding_saw
) - ACE entrenching tool (
ACE_EntrenchingTool
)
Mods can add additional items by setting the property mts_cutter_canCutBushes = 1
in the CfgWeapons
config of the item. E.g.
class CfgWeapons {
class MyBaseItem;
class MyItem: MyBaseItem {
mts_cutter_canCutBushes = 1;
};
};