diff --git a/docs/_layouts/wiki.html b/docs/_layouts/wiki.html index 676bd1a25c..b5182fb2e7 100644 --- a/docs/_layouts/wiki.html +++ b/docs/_layouts/wiki.html @@ -9,28 +9,36 @@ layout: compress
+ {% if page.version.removed %} + {% assign type = 'removed' %} + {% assign typeCapital = 'Removed' %} + {% else %} + {% assign type = 'added' %} + {% assign typeCapital = 'Added' %} + {% endif %} + {% if page.mod == 'ace' %} {% if page.version.major > site.ace.version.major %} - Will be added in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} + Will be {{type}} in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} {% elsif page.version.major == site.ace.version.major and page.version.minor > site.ace.version.minor %} - Will be added in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} + Will be {{type}} in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} {% elsif page.version.major == site.ace.version.major and page.version.minor == site.ace.version.minor and page.version.patch > site.ace.version.patch %} - Will be added in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} + Will be {{type}} in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} {% else %} - Added in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} + {{typeCapital}} in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} {% endif %} {% elsif page.mod == 'acex' %} {% if page.version.major > site.acex.version.major %} - Will be added in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} + Will be {{type}} in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} {% elsif page.version.major == site.acex.version.major and page.version.minor > site.acex.version.minor %} - Will be added in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} + Will be {{type}} in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} {% elsif page.version.major == site.acex.version.major and page.version.minor == site.acex.version.minor and page.version.patch > site.acex.version.patch %} - Will be added in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} + Will be {{type}} in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} {% else %} - Added in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} + {{typeCapital}} in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}} {% endif %} {% endif %} diff --git a/docs/wiki/development/documentation-guidelines-and-tips.md b/docs/wiki/development/documentation-guidelines-and-tips.md index b06f49bdaf..9f9c154511 100644 --- a/docs/wiki/development/documentation-guidelines-and-tips.md +++ b/docs/wiki/development/documentation-guidelines-and-tips.md @@ -6,47 +6,7 @@ parent: wiki order: 19 --- -# Documentation guidelines - -## Example entry -``` ---- -layout: wiki -title: Mission Modules -group: feature -parent: wiki ---- - -## 1. Overview - -### 1.1 Sub-feature 1 -Short description of sub-feature 1. - -### 1.2 Sub-feature 2 -Short description of sub-feature 2. - -## 2. Usage - -### 2.1 thing n°1 - -- Step 1. -- Step 2. -- Step 3. - -### 2.2 thing n°2 - -- Step 1. -- Step 2. -- Step 3. - -## 3. Dependencies - -`ace_something` - -## 4. Guides -``` - -# Guidelines +# 1. Documentation Guidelines - A line between each entry like above. - This is especially necessary for the kramdown markup syntax. Kramdown needs a line break between each block level element (paragraphs, lists, codeblocks, etc ...) @@ -58,7 +18,84 @@ Short description of sub-feature 2. - Capitals at the start of a sentence and `.`at the end. - Verify everything in game -# Tips +## 1.1 Tips - Use [http://dillinger.io/](http://dillinger.io/) to keep your sanity - [Markdown cheat sheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) + +## 1.2 Feature Template + +``` +--- +layout: wiki +title: Component +description: Description of the feature. +group: feature +category: interaction +parent: wiki +version: + major: 3 + minor: 0 + patch: 0 +--- + +## 1. Overview + +### 1.1 Sub-feature 1 + +Short description of sub-feature 1. + +### 1.2 Sub-feature 2 + +Short description of sub-feature 2. + +## 2. Usage + +### 2.1 Thing n°1 + +- Step 1. +- Step 2. +- Step 3. + +### 2.2 Thing n°2 + +- Step 1. +- Step 2. +- Step 3. + +## 3. Dependencies + +{% include dependencies_list.md component="ace_something" %} + +## 4. Guides + +Information about other guides and pages about this feature. +``` + +## 1.3 Framework Template + +``` +--- +layout: wiki +title: Component Framework +description: Description of the framework. +group: framework +parent: wiki +version: + major: 3 + minor: 0 + patch: 0 +--- + +## 1. Config Values + +Config API. + +## 2. Events + +Table of public events. + +## 3. Scripting + +Public functions. +``` diff --git a/docs/wiki/feature/advanced-ballistics.md b/docs/wiki/feature/advanced-ballistics.md index 6c96988bfd..5fc4e9ce3b 100644 --- a/docs/wiki/feature/advanced-ballistics.md +++ b/docs/wiki/feature/advanced-ballistics.md @@ -5,6 +5,11 @@ description: The advanced ballistics module improves internal and external balli group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/ai.md b/docs/wiki/feature/ai.md index 8c094bdcc1..9cf34ce667 100644 --- a/docs/wiki/feature/ai.md +++ b/docs/wiki/feature/ai.md @@ -1,10 +1,15 @@ --- layout: wiki title: AI (Artificial Intelligence) -description: Config based changes to AI to ensure compatibility with advanced AI modifications +description: Config based changes to AI to ensure compatibility with advanced AI modifications. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/aircraft.md b/docs/wiki/feature/aircraft.md index 51c40696ca..61e669d644 100644 --- a/docs/wiki/feature/aircraft.md +++ b/docs/wiki/feature/aircraft.md @@ -1,10 +1,15 @@ --- layout: wiki title: Aircraft -description: Aircraft overhaul +description: Aircraft overhaul. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/apl.md b/docs/wiki/feature/apl.md index f8514aed87..4a533d4a66 100644 --- a/docs/wiki/feature/apl.md +++ b/docs/wiki/feature/apl.md @@ -1,10 +1,15 @@ --- layout: wiki title: APL -description: assets under APL license +description: Assets under APL license. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/atragmx.md b/docs/wiki/feature/atragmx.md index 3cdc3e5b41..d6ca29e7b5 100644 --- a/docs/wiki/feature/atragmx.md +++ b/docs/wiki/feature/atragmx.md @@ -1,10 +1,15 @@ --- layout: wiki title: ATragMX -description: +description: Handheld ballistics calculator. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## Overview diff --git a/docs/wiki/feature/attach.md b/docs/wiki/feature/attach.md index 410fdad292..2fe2236daf 100644 --- a/docs/wiki/feature/attach.md +++ b/docs/wiki/feature/attach.md @@ -1,10 +1,15 @@ --- layout: wiki title: Attach -description: Allow players to attach items to vehicles or themselves +description: Allow players to attach items to vehicles or themselves. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/backpacks.md b/docs/wiki/feature/backpacks.md index d2a47e3149..9e7db5a086 100644 --- a/docs/wiki/feature/backpacks.md +++ b/docs/wiki/feature/backpacks.md @@ -1,10 +1,15 @@ --- layout: wiki title: Backpacks -description: Notifies a player when his backpack is opened +description: Notifies a player when his backpack is opened. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/ballistics.md b/docs/wiki/feature/ballistics.md index 3bad42317f..35feda9d34 100644 --- a/docs/wiki/feature/ballistics.md +++ b/docs/wiki/feature/ballistics.md @@ -1,10 +1,15 @@ --- layout: wiki title: Ballistics -description: Realistic ballistic improvements +description: Realistic ballistic improvements. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/captives.md b/docs/wiki/feature/captives.md index 869e11c9ab..6c4780c28f 100644 --- a/docs/wiki/feature/captives.md +++ b/docs/wiki/feature/captives.md @@ -1,10 +1,15 @@ --- layout: wiki title: Captives -description: System for taking and handling captives +description: System for taking and handling captives. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/common.md b/docs/wiki/feature/common.md index b4d8bf2cdd..be454568ac 100644 --- a/docs/wiki/feature/common.md +++ b/docs/wiki/feature/common.md @@ -5,6 +5,11 @@ description: Common functions and systems used by most other components. group: feature category: general parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/concertina-wire.md b/docs/wiki/feature/concertina-wire.md index 7547caf55d..07eb07bf34 100644 --- a/docs/wiki/feature/concertina-wire.md +++ b/docs/wiki/feature/concertina-wire.md @@ -1,10 +1,15 @@ --- layout: wiki title: Concertina Wire -description: +description: Deployable concertina wire. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/dagr.md b/docs/wiki/feature/dagr.md index 11bdf42cb1..13e08811aa 100644 --- a/docs/wiki/feature/dagr.md +++ b/docs/wiki/feature/dagr.md @@ -1,9 +1,15 @@ --- layout: wiki title: Dagr +description: Defense Advanced GPS Receiver. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/disarming.md b/docs/wiki/feature/disarming.md index 8743972a45..0d45bfee40 100644 --- a/docs/wiki/feature/disarming.md +++ b/docs/wiki/feature/disarming.md @@ -1,10 +1,15 @@ --- layout: wiki title: Disarming -description: +description: Ability to make units drop items/weapons/magazines. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/disposable.md b/docs/wiki/feature/disposable.md index 717cb235fd..acf7f78a40 100644 --- a/docs/wiki/feature/disposable.md +++ b/docs/wiki/feature/disposable.md @@ -1,10 +1,15 @@ --- layout: wiki title: Disposable -description: Makes NLAW disposable and allows addons to do the same +description: Makes NLAW disposable. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/dragging.md b/docs/wiki/feature/dragging.md index e506712a63..f9ec21ebb2 100644 --- a/docs/wiki/feature/dragging.md +++ b/docs/wiki/feature/dragging.md @@ -1,10 +1,15 @@ --- layout: wiki title: Dragging -description: Adds the option to drag and carry units and objects +description: Adds the option to drag and carry units and objects. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/explosives.md b/docs/wiki/feature/explosives.md index b43241a890..7548c5f13c 100644 --- a/docs/wiki/feature/explosives.md +++ b/docs/wiki/feature/explosives.md @@ -1,10 +1,15 @@ --- layout: wiki title: Explosives -description: Adds numerous improvements to using and handling explosives +description: Adds numerous improvements to using and handling explosives. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/fastroping.md b/docs/wiki/feature/fastroping.md index 5b327b87b1..86fe3de7c1 100644 --- a/docs/wiki/feature/fastroping.md +++ b/docs/wiki/feature/fastroping.md @@ -5,6 +5,11 @@ description: System for adding fast roping capabilities to helicopters. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 5 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/fcs.md b/docs/wiki/feature/fcs.md index 7c3af2b64f..dfc12419ff 100644 --- a/docs/wiki/feature/fcs.md +++ b/docs/wiki/feature/fcs.md @@ -1,10 +1,15 @@ --- layout: wiki title: FCS (Fire Control System) -description: +description: Fire control system for armoured vehicles and helicopters. category: equipment group: feature parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/finger.md b/docs/wiki/feature/finger.md index 506f72a443..0957c6e435 100644 --- a/docs/wiki/feature/finger.md +++ b/docs/wiki/feature/finger.md @@ -1,10 +1,15 @@ --- layout: wiki title: Finger -description: Finger pointing +description: Finger pointing. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 2 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/flashlights.md b/docs/wiki/feature/flashlights.md index 7ec976833c..3fb6b16695 100644 --- a/docs/wiki/feature/flashlights.md +++ b/docs/wiki/feature/flashlights.md @@ -1,10 +1,15 @@ --- layout: wiki title: Flashlights -description: Adds handheld flashlights +description: Adds handheld flashlights. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 3 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/flashsuppressors.md b/docs/wiki/feature/flashsuppressors.md index 880d89a7f6..b8c498982a 100644 --- a/docs/wiki/feature/flashsuppressors.md +++ b/docs/wiki/feature/flashsuppressors.md @@ -1,10 +1,15 @@ --- layout: wiki title: Flash Suppressors -description: +description: Makes flash suppressors from game files able to be used. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/fonts.md b/docs/wiki/feature/fonts.md index dd7b9b8ca8..629c6a6c6e 100644 --- a/docs/wiki/feature/fonts.md +++ b/docs/wiki/feature/fonts.md @@ -5,6 +5,11 @@ description: Custom fonts including fixed-width font. group: feature category: general parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/frag.md b/docs/wiki/feature/frag.md index 4914aceb5c..f079caa4a5 100644 --- a/docs/wiki/feature/frag.md +++ b/docs/wiki/feature/frag.md @@ -1,10 +1,15 @@ --- layout: wiki title: Frag -description: +description: Shapnel system for explosives. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/gforces.md b/docs/wiki/feature/gforces.md index f8ae746986..6679b275a3 100644 --- a/docs/wiki/feature/gforces.md +++ b/docs/wiki/feature/gforces.md @@ -1,10 +1,15 @@ --- layout: wiki title: G-Forces -description: +description: G-force induced tunnel vision and unconsciousness. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/goggles.md b/docs/wiki/feature/goggles.md index 36f6e9f35f..cc22f98084 100644 --- a/docs/wiki/feature/goggles.md +++ b/docs/wiki/feature/goggles.md @@ -1,10 +1,15 @@ --- layout: wiki title: Goggles -description: +description: Various effects for different goggles and ambient effects like dirt thrown up by explosions. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/grenades.md b/docs/wiki/feature/grenades.md index e96b844a51..d043d67d0b 100644 --- a/docs/wiki/feature/grenades.md +++ b/docs/wiki/feature/grenades.md @@ -1,10 +1,15 @@ --- layout: wiki title: Grenades -description: +description: Different throwing modes for grenades, a flashbang and hand flares. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/hearing.md b/docs/wiki/feature/hearing.md index 581175ebc5..e939e5dc2a 100644 --- a/docs/wiki/feature/hearing.md +++ b/docs/wiki/feature/hearing.md @@ -1,10 +1,15 @@ --- layout: wiki title: Hearing -description: +description: Combat deafness and ringing. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/hitreactions.md b/docs/wiki/feature/hitreactions.md index f76bac824f..01f81bd495 100644 --- a/docs/wiki/feature/hitreactions.md +++ b/docs/wiki/feature/hitreactions.md @@ -1,10 +1,15 @@ --- layout: wiki title: Hit Reactions -description: +description: Reactions when getting shot. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/huntIR.md b/docs/wiki/feature/huntIR.md index 57d09316fc..01df138809 100644 --- a/docs/wiki/feature/huntIR.md +++ b/docs/wiki/feature/huntIR.md @@ -5,6 +5,11 @@ description: High-altitude Unit Navigated Tactical Imaging Round group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/interact-menu.md b/docs/wiki/feature/interact-menu.md index 3bdb0f8a39..c77e28d7f5 100644 --- a/docs/wiki/feature/interact-menu.md +++ b/docs/wiki/feature/interact-menu.md @@ -1,10 +1,15 @@ --- layout: wiki title: Interact Menu -description: +description: Base framework for interaction menu. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/interaction.md b/docs/wiki/feature/interaction.md index 74506a8ca3..8747b4f1a7 100644 --- a/docs/wiki/feature/interaction.md +++ b/docs/wiki/feature/interaction.md @@ -1,10 +1,15 @@ --- layout: wiki title: Interaction -description: +description: Provides basic interaction options. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/inventory.md b/docs/wiki/feature/inventory.md index 22c35065c8..0e25c713b8 100644 --- a/docs/wiki/feature/inventory.md +++ b/docs/wiki/feature/inventory.md @@ -1,10 +1,15 @@ --- layout: wiki title: Inventory -description: +description: Options to increase size of the inventory dialog. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/javelin.md b/docs/wiki/feature/javelin.md index 82a89f7303..82f5981433 100644 --- a/docs/wiki/feature/javelin.md +++ b/docs/wiki/feature/javelin.md @@ -1,10 +1,15 @@ --- layout: wiki title: Javelin -description: +description: Javelin AT launcher and locking. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/kestrel4500.md b/docs/wiki/feature/kestrel4500.md index ddfd3e5c01..068e020654 100644 --- a/docs/wiki/feature/kestrel4500.md +++ b/docs/wiki/feature/kestrel4500.md @@ -1,10 +1,15 @@ --- layout: wiki title: Kestrel 4500 -description: +description: Kestrel 4500 Pocket Weather Tracker. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## Overview diff --git a/docs/wiki/feature/laser-selfdesignate.md b/docs/wiki/feature/laser-selfdesignate.md index c3dbe64fd9..9dbaa4d247 100644 --- a/docs/wiki/feature/laser-selfdesignate.md +++ b/docs/wiki/feature/laser-selfdesignate.md @@ -1,10 +1,15 @@ --- layout: wiki title: Laser Self-Designate -description: +description: Allows gunners to lase their own targets. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/laser.md b/docs/wiki/feature/laser.md index e3d32e38b9..e82a98fe67 100644 --- a/docs/wiki/feature/laser.md +++ b/docs/wiki/feature/laser.md @@ -1,10 +1,15 @@ --- layout: wiki title: Laser -description: +description: Various functions necessary for realistic portrayal of laser mechanics in other components. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/laserpointer.md b/docs/wiki/feature/laserpointer.md index 5011d926a7..76404805b7 100644 --- a/docs/wiki/feature/laserpointer.md +++ b/docs/wiki/feature/laserpointer.md @@ -1,10 +1,15 @@ --- layout: wiki title: Laser Pointer -description: Switching laser modes, daylight lasers +description: Switching laser modes, daylight lasers. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/logistics-uavbattery.md b/docs/wiki/feature/logistics-uavbattery.md index c6b6a34963..b1a7cd40b3 100644 --- a/docs/wiki/feature/logistics-uavbattery.md +++ b/docs/wiki/feature/logistics-uavbattery.md @@ -1,10 +1,15 @@ --- layout: wiki title: Logistics - UAV Battery -description: UAV recharging +description: UAV recharging. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/logistics-wirecutter.md b/docs/wiki/feature/logistics-wirecutter.md index 84af092669..0a74c8094c 100644 --- a/docs/wiki/feature/logistics-wirecutter.md +++ b/docs/wiki/feature/logistics-wirecutter.md @@ -1,10 +1,15 @@ --- layout: wiki title: Logistics - Wirecutter -description: +description: Cutting fences, wirecutter. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/magazinerepack.md b/docs/wiki/feature/magazinerepack.md index 36908bc324..2503dc4323 100644 --- a/docs/wiki/feature/magazinerepack.md +++ b/docs/wiki/feature/magazinerepack.md @@ -5,6 +5,11 @@ description: Repacking magazines, and maybe your bananas. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/main.md b/docs/wiki/feature/main.md index 668cfb531f..1c3792ccb6 100644 --- a/docs/wiki/feature/main.md +++ b/docs/wiki/feature/main.md @@ -1,10 +1,15 @@ --- layout: wiki title: Main -description: main module +description: Main module. group: feature category: general parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/map.md b/docs/wiki/feature/map.md index 9ddf04eb1e..619b6849b6 100644 --- a/docs/wiki/feature/map.md +++ b/docs/wiki/feature/map.md @@ -1,10 +1,15 @@ --- layout: wiki title: Map -description: Map improvements +description: Map improvements. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/maptools.md b/docs/wiki/feature/maptools.md index 4c5b56f85f..29138f4e5a 100644 --- a/docs/wiki/feature/maptools.md +++ b/docs/wiki/feature/maptools.md @@ -1,10 +1,15 @@ --- layout: wiki title: Map Tools -description: Map tools, a roamer and pens +description: Map tools, a roamer and pens. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/markers.md b/docs/wiki/feature/markers.md index 95c9a1fe74..17471bc33d 100644 --- a/docs/wiki/feature/markers.md +++ b/docs/wiki/feature/markers.md @@ -1,10 +1,15 @@ --- layout: wiki title: Markers -description: improved markers +description: Improved markers. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/medical-system.md b/docs/wiki/feature/medical-system.md index 6dfa8d69b6..9681255198 100644 --- a/docs/wiki/feature/medical-system.md +++ b/docs/wiki/feature/medical-system.md @@ -6,6 +6,11 @@ group: feature order: 4 category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- **Disclaimer:** With the documentation for the medical system being extremely long it's highly advised to use the table of contents at the top right corner of the page. diff --git a/docs/wiki/feature/medical_menu.md b/docs/wiki/feature/medical_menu.md index a8aa5fa770..186b39a144 100644 --- a/docs/wiki/feature/medical_menu.md +++ b/docs/wiki/feature/medical_menu.md @@ -5,6 +5,11 @@ description: Adds the medical menu. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 3 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/microdagr.md b/docs/wiki/feature/microdagr.md index 57713e7c1a..c16d24322f 100644 --- a/docs/wiki/feature/microdagr.md +++ b/docs/wiki/feature/microdagr.md @@ -1,10 +1,15 @@ --- layout: wiki title: MicroDAGR -description: A GPS device and much more +description: A GPS device and much more. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- For an easier time reading don't forget that you can view all chapters on the right side of the page by clicking on Show/hide under table of content. diff --git a/docs/wiki/feature/missileguidance.md b/docs/wiki/feature/missileguidance.md index 45676edc13..8928cd2ab2 100644 --- a/docs/wiki/feature/missileguidance.md +++ b/docs/wiki/feature/missileguidance.md @@ -1,10 +1,15 @@ --- layout: wiki title: Missile Guidance -description: +description: Various modes for different missiles. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/missionmodules.md b/docs/wiki/feature/missionmodules.md index e4ab1865bc..35acc1b5bf 100644 --- a/docs/wiki/feature/missionmodules.md +++ b/docs/wiki/feature/missionmodules.md @@ -1,10 +1,15 @@ --- layout: wiki title: Mission Modules -description: modules that can be used by mission makers. +description: Modules that can be used by mission makers. group: feature category: general parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/mk6mortar.md b/docs/wiki/feature/mk6mortar.md index 881720afa1..8671d30578 100644 --- a/docs/wiki/feature/mk6mortar.md +++ b/docs/wiki/feature/mk6mortar.md @@ -5,6 +5,11 @@ description: Improve the existing Mk6 Mortar. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/modules.md b/docs/wiki/feature/modules.md index baf7322131..771ea1365f 100644 --- a/docs/wiki/feature/modules.md +++ b/docs/wiki/feature/modules.md @@ -1,9 +1,15 @@ --- layout: wiki title: Modules +description: Framework for module handling. group: feature category: general parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/movement.md b/docs/wiki/feature/movement.md index e5e294989f..ee4c295959 100644 --- a/docs/wiki/feature/movement.md +++ b/docs/wiki/feature/movement.md @@ -1,10 +1,15 @@ --- layout: wiki title: Movement -description: Movement improvements +description: Movement improvements. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/mx2a.md b/docs/wiki/feature/mx2a.md index e743efc04d..068260c3be 100644 --- a/docs/wiki/feature/mx2a.md +++ b/docs/wiki/feature/mx2a.md @@ -1,10 +1,15 @@ --- layout: wiki title: MX-2A -description: Movement improvements +description: MX-2A thermal imaging device. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/nametags.md b/docs/wiki/feature/nametags.md index 151c7018d9..e0b57faca9 100644 --- a/docs/wiki/feature/nametags.md +++ b/docs/wiki/feature/nametags.md @@ -1,10 +1,15 @@ --- layout: wiki title: Nametags -description: +description: Name tags above other players. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/nightvision.md b/docs/wiki/feature/nightvision.md index ef8f442fd0..c138198971 100644 --- a/docs/wiki/feature/nightvision.md +++ b/docs/wiki/feature/nightvision.md @@ -1,10 +1,15 @@ --- layout: wiki title: Nightvision -description: +description: Different types of NVGs with different levels of quality. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/noidle.md b/docs/wiki/feature/noidle.md index c5c9f29664..c6df8e37e7 100644 --- a/docs/wiki/feature/noidle.md +++ b/docs/wiki/feature/noidle.md @@ -1,10 +1,15 @@ --- layout: wiki title: No Idle -description: Disables idle animations +description: Disable idle animations. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/noradio.md b/docs/wiki/feature/noradio.md index 2b6390b363..f27fd717d3 100644 --- a/docs/wiki/feature/noradio.md +++ b/docs/wiki/feature/noradio.md @@ -1,10 +1,15 @@ --- layout: wiki title: No Radio -description: Disable callouts +description: Disable callouts. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/norearm.md b/docs/wiki/feature/norearm.md index 7acf834f9d..a4027a9bb3 100644 --- a/docs/wiki/feature/norearm.md +++ b/docs/wiki/feature/norearm.md @@ -1,10 +1,15 @@ --- layout: wiki title: No Rearm -description: Remove rearm from +description: Remove rearm action. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/optics.md b/docs/wiki/feature/optics.md index c551567c7b..0de83f673d 100644 --- a/docs/wiki/feature/optics.md +++ b/docs/wiki/feature/optics.md @@ -1,10 +1,15 @@ --- layout: wiki title: Optics -description: 2D and PIP optics +description: Animated 2D and PiP optics. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/optionsmenu.md b/docs/wiki/feature/optionsmenu.md index 3019c93eab..1ccf255882 100644 --- a/docs/wiki/feature/optionsmenu.md +++ b/docs/wiki/feature/optionsmenu.md @@ -1,10 +1,15 @@ --- layout: wiki title: Options Menu -description: ACE3 options menu +description: ACE3 options menu. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/overheating.md b/docs/wiki/feature/overheating.md index 3e282b3495..3739b2aa52 100644 --- a/docs/wiki/feature/overheating.md +++ b/docs/wiki/feature/overheating.md @@ -5,6 +5,11 @@ description: Weapon temperature and jamming, barrel swapping. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/overpressure.md b/docs/wiki/feature/overpressure.md index 20d93b3850..e27fcce297 100644 --- a/docs/wiki/feature/overpressure.md +++ b/docs/wiki/feature/overpressure.md @@ -1,10 +1,15 @@ --- layout: wiki title: Overpressure -description: backblast and overpressure +description: Backblast and overpressure. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/parachute.md b/docs/wiki/feature/parachute.md index cf9a7dd17c..6404c21af2 100644 --- a/docs/wiki/feature/parachute.md +++ b/docs/wiki/feature/parachute.md @@ -1,10 +1,15 @@ --- layout: wiki title: Parachute -description: Add an altimeter and a non-steerable parachute +description: Add an altimeter and a non-steerable parachute. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/rangecard.md b/docs/wiki/feature/rangecard.md index c1e4e1dabd..81fa3a466e 100644 --- a/docs/wiki/feature/rangecard.md +++ b/docs/wiki/feature/rangecard.md @@ -1,10 +1,15 @@ --- layout: wiki title: Rangecard -description: Adds a range card for your weapons +description: Adds a range card for your weapons. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/realisticnames.md b/docs/wiki/feature/realisticnames.md index f9363e0121..f6aa9ba262 100644 --- a/docs/wiki/feature/realisticnames.md +++ b/docs/wiki/feature/realisticnames.md @@ -1,10 +1,15 @@ --- layout: wiki title: Realistic Names -description: More realistic weapon names +description: More realistic weapon names. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/rearm.md b/docs/wiki/feature/rearm.md index 9ebf328f36..3248ee4477 100644 --- a/docs/wiki/feature/rearm.md +++ b/docs/wiki/feature/rearm.md @@ -5,6 +5,11 @@ description: Adds custom rearm system. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 4 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/recoil.md b/docs/wiki/feature/recoil.md index dd137b4104..49a8a8c421 100644 --- a/docs/wiki/feature/recoil.md +++ b/docs/wiki/feature/recoil.md @@ -1,10 +1,15 @@ --- layout: wiki title: Recoil -description: Recoil overhaul +description: Recoil overhaul. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/refuel.md b/docs/wiki/feature/refuel.md index 0918bce973..939879caa0 100644 --- a/docs/wiki/feature/refuel.md +++ b/docs/wiki/feature/refuel.md @@ -1,10 +1,15 @@ --- layout: wiki title: Refuel -description: Adds the option to refuel vehicles +description: Adds the option to refuel vehicles. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 4 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/reload.md b/docs/wiki/feature/reload.md index 4731d826ab..97be510e9a 100644 --- a/docs/wiki/feature/reload.md +++ b/docs/wiki/feature/reload.md @@ -1,10 +1,15 @@ --- layout: wiki title: Reload -description: +description: Hides default reload indicator, making it necessary to manually check the magazine. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/reloadlaunchers.md b/docs/wiki/feature/reloadlaunchers.md index 0551050738..11f1163751 100644 --- a/docs/wiki/feature/reloadlaunchers.md +++ b/docs/wiki/feature/reloadlaunchers.md @@ -1,10 +1,15 @@ --- layout: wiki title: Reload Launchers -description: +description: Ability to reload someone else's launcher. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/respawn.md b/docs/wiki/feature/respawn.md index dd35a3c6a4..639b87ed9a 100644 --- a/docs/wiki/feature/respawn.md +++ b/docs/wiki/feature/respawn.md @@ -1,10 +1,15 @@ --- layout: wiki title: Respawn -description: Same gear on respawn, FF message, rallypoints +description: Same gear on respawn, friendly fire message, rally points. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/safemode.md b/docs/wiki/feature/safemode.md index 6c2b031a2b..95b3fd1e3c 100644 --- a/docs/wiki/feature/safemode.md +++ b/docs/wiki/feature/safemode.md @@ -1,10 +1,15 @@ --- layout: wiki title: Safe Mode -description: Introduce safe mode +description: Ability to use safe mode on small arms. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/sandbags.md b/docs/wiki/feature/sandbags.md index 78e981c2a6..61d7b9d143 100644 --- a/docs/wiki/feature/sandbags.md +++ b/docs/wiki/feature/sandbags.md @@ -1,10 +1,15 @@ --- layout: wiki title: Sandbags -description: Adds stackable sandbags +description: Adds stackable sandbags. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/scopes.md b/docs/wiki/feature/scopes.md index 6c31676e90..a04578769e 100644 --- a/docs/wiki/feature/scopes.md +++ b/docs/wiki/feature/scopes.md @@ -1,10 +1,15 @@ --- layout: wiki title: Scopes -description: Scope adjustment +description: Scope adjustment. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/sitting.md b/docs/wiki/feature/sitting.md index 70e95f0c65..8e0c166770 100644 --- a/docs/wiki/feature/sitting.md +++ b/docs/wiki/feature/sitting.md @@ -1,12 +1,22 @@ --- layout: wiki title: Sitting -description: +description: Ability to sit on chairs. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 2 + patch: 0 --- +
+
Note:
+

ACE3 Sitting has been deprecated in favour of ACEX Sitting and will be removed in a future version.

+
+ ## 1. Overview Adds the ability to sit on chairs. diff --git a/docs/wiki/feature/slideshow.md b/docs/wiki/feature/slideshow.md index a44ede34d8..81770a1783 100644 --- a/docs/wiki/feature/slideshow.md +++ b/docs/wiki/feature/slideshow.md @@ -1,9 +1,15 @@ --- layout: wiki title: Slideshow +description: Ability to have automatic or controllable slide-shows. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 2 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/smallarms.md b/docs/wiki/feature/smallarms.md index 65734b6130..c792a6e4f6 100644 --- a/docs/wiki/feature/smallarms.md +++ b/docs/wiki/feature/smallarms.md @@ -1,10 +1,15 @@ --- layout: wiki title: Small Arms -description: Various improvements to small arms +description: Various improvements to small arms. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/spectator.md b/docs/wiki/feature/spectator.md index 9af3328d5a..ab3550650c 100644 --- a/docs/wiki/feature/spectator.md +++ b/docs/wiki/feature/spectator.md @@ -1,10 +1,15 @@ --- layout: wiki title: Spectator -description: A flexible spectator system +description: A flexible spectator system. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 2 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/spotting-scope.md b/docs/wiki/feature/spotting-scope.md index e13d5e308b..72ee5e1cf3 100644 --- a/docs/wiki/feature/spotting-scope.md +++ b/docs/wiki/feature/spotting-scope.md @@ -1,10 +1,15 @@ --- layout: wiki title: Spotting scope -description: Adds a deployable spotting scope +description: Adds a deployable spotting scope. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/switchunits.md b/docs/wiki/feature/switchunits.md index dc3abf8eab..69aa140cf9 100644 --- a/docs/wiki/feature/switchunits.md +++ b/docs/wiki/feature/switchunits.md @@ -1,10 +1,15 @@ --- layout: wiki title: Switch Units -description: +description: Insurgency-style unit switching. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/tacticallader.md b/docs/wiki/feature/tacticallader.md index 7fb05b7c69..2ecba08931 100644 --- a/docs/wiki/feature/tacticallader.md +++ b/docs/wiki/feature/tacticallader.md @@ -5,6 +5,11 @@ description: Adds a deployable ladder with adjustable height that you can transp group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/testmissions.md b/docs/wiki/feature/testmissions.md index d1ca0b670a..372d11d25c 100644 --- a/docs/wiki/feature/testmissions.md +++ b/docs/wiki/feature/testmissions.md @@ -1,10 +1,16 @@ --- layout: wiki title: Test Missions -description: Adds an ACE3 Test Missions +description: Adds ACE3 Test Missions. group: feature category: general parent: wiki +mod: ace +version: + major: 3 + minor: 6 + patch: 0 + removed: true --- ## 1. Overview diff --git a/docs/wiki/feature/thermals.md b/docs/wiki/feature/thermals.md index 7e9782ec1e..e46a57f377 100644 --- a/docs/wiki/feature/thermals.md +++ b/docs/wiki/feature/thermals.md @@ -1,10 +1,15 @@ --- layout: wiki title: Thermals -description: +description: Improves thermal properties. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/tripod.md b/docs/wiki/feature/tripod.md index 568718e13c..6147c14b9e 100644 --- a/docs/wiki/feature/tripod.md +++ b/docs/wiki/feature/tripod.md @@ -1,10 +1,15 @@ --- layout: wiki title: Tripod -description: Adds a packable tripod deployable on the field +description: Adds a packable tripod deployable on the field. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/ui.md b/docs/wiki/feature/ui.md index e0c56ac4f1..c43769e0e9 100644 --- a/docs/wiki/feature/ui.md +++ b/docs/wiki/feature/ui.md @@ -5,6 +5,11 @@ description: Selective User Interface framework and other tweaks. group: feature category: general parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/vector.md b/docs/wiki/feature/vector.md index c1a8442e04..ce3a3ebbf9 100644 --- a/docs/wiki/feature/vector.md +++ b/docs/wiki/feature/vector.md @@ -1,10 +1,15 @@ --- layout: wiki title: Vector -description: Adds a realistic depiction of the Vector 21 rangefinder +description: Adds a realistic depiction of the Vector 21 rangefinder. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/vehiclelock.md b/docs/wiki/feature/vehiclelock.md index 55cf118c58..ccd594ec16 100644 --- a/docs/wiki/feature/vehiclelock.md +++ b/docs/wiki/feature/vehiclelock.md @@ -1,10 +1,15 @@ --- layout: wiki title: Vehicle Lock -description: The vehicle lock module enables locking vehicles and their inventory +description: The vehicle lock module enables locking vehicles and their inventory. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/vehicles.md b/docs/wiki/feature/vehicles.md index e1f3f50f64..d4f33bbeb5 100644 --- a/docs/wiki/feature/vehicles.md +++ b/docs/wiki/feature/vehicles.md @@ -1,10 +1,15 @@ --- layout: wiki title: Vehicles -description: +description: Various tweaks to vehicles and vehicle weapons. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/viewdistance.md b/docs/wiki/feature/viewdistance.md index c568b459da..0f0b4c602b 100644 --- a/docs/wiki/feature/viewdistance.md +++ b/docs/wiki/feature/viewdistance.md @@ -5,6 +5,11 @@ description: The view distance module adds extra view distance settings group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/weaponselect.md b/docs/wiki/feature/weaponselect.md index 6708cdf92f..d175695949 100644 --- a/docs/wiki/feature/weaponselect.md +++ b/docs/wiki/feature/weaponselect.md @@ -1,10 +1,15 @@ --- layout: wiki title: Weapon Select -description: +description: Ability to quickly select weapons using the number keys. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/weather.md b/docs/wiki/feature/weather.md index e815982f4b..f6ae962797 100644 --- a/docs/wiki/feature/weather.md +++ b/docs/wiki/feature/weather.md @@ -1,10 +1,15 @@ --- layout: wiki title: Weather -description: The Weather module overrides the mission/editor weather setting with a synchronized realistic weather simulation +description: The Weather module overrides the mission/editor weather setting with a synchronized realistic weather simulation. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/winddeflection.md b/docs/wiki/feature/winddeflection.md index 70ea219b22..549e959496 100644 --- a/docs/wiki/feature/winddeflection.md +++ b/docs/wiki/feature/winddeflection.md @@ -1,10 +1,15 @@ --- layout: wiki title: Wind Deflection -description: The wind deflection module simulates wind deflection of projectiles +description: The wind deflection module simulates wind deflection of projectiles. group: feature category: realism parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 redirect_from: "/wiki/feature/windeflection.html" --- diff --git a/docs/wiki/feature/yardage450.md b/docs/wiki/feature/yardage450.md index 8469ab4b58..9a2466e149 100644 --- a/docs/wiki/feature/yardage450.md +++ b/docs/wiki/feature/yardage450.md @@ -1,10 +1,15 @@ --- layout: wiki title: Yardage 450 -description: Adds the Bushnell Yardage Pro Sport 450 Laser Rangefinder +description: Adds the Bushnell Yardage Pro Sport 450 Laser Rangefinder. group: feature category: equipment parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/feature/zeus.md b/docs/wiki/feature/zeus.md index d0a8539c66..d3c3638f1d 100644 --- a/docs/wiki/feature/zeus.md +++ b/docs/wiki/feature/zeus.md @@ -1,10 +1,15 @@ --- layout: wiki title: Zeus -description: The Zeus module improves the Vanilla functionality +description: The Zeus module improves the Vanilla functionality. group: feature category: interaction parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/framework/cargo-framework.md b/docs/wiki/framework/cargo-framework.md index 24b4f39c60..03ddf4e757 100644 --- a/docs/wiki/framework/cargo-framework.md +++ b/docs/wiki/framework/cargo-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up the cargo framework for custom objects and v group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 3 + patch: 0 --- ## 1. Config Values diff --git a/docs/wiki/framework/disposables-framework.md b/docs/wiki/framework/disposables-framework.md index 5e07a724a6..21ee778824 100644 --- a/docs/wiki/framework/disposables-framework.md +++ b/docs/wiki/framework/disposables-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up custom disposable launchers with the ACE3 di group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 ---
diff --git a/docs/wiki/framework/dragging-framework.md b/docs/wiki/framework/dragging-framework.md index 1589fd2a68..962e6af1d4 100644 --- a/docs/wiki/framework/dragging-framework.md +++ b/docs/wiki/framework/dragging-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up dragging and carrying of objects with the AC group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Config Values diff --git a/docs/wiki/framework/events-framework.md b/docs/wiki/framework/events-framework.md index 18327b63ec..afc37d2623 100644 --- a/docs/wiki/framework/events-framework.md +++ b/docs/wiki/framework/events-framework.md @@ -1,7 +1,7 @@ --- layout: wiki title: Events Framework -description: Explains how to use ACE3 event handlers used to trigger or allow triggering of specific functionality and lists all documented events. +description: Explains how to use CBA event handlers with ACE3 events used to trigger or allow triggering of specific functionality and lists all documented events. group: framework order: 5 parent: wiki diff --git a/docs/wiki/framework/explosives-framework.md b/docs/wiki/framework/explosives-framework.md index b6ae40695c..526954ea4f 100644 --- a/docs/wiki/framework/explosives-framework.md +++ b/docs/wiki/framework/explosives-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up custom explosives with the ACE3 explosives s group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 ---
diff --git a/docs/wiki/framework/fastroping-framework.md b/docs/wiki/framework/fastroping-framework.md index 4d5df18be1..2a906802b3 100644 --- a/docs/wiki/framework/fastroping-framework.md +++ b/docs/wiki/framework/fastroping-framework.md @@ -5,6 +5,11 @@ description: Explains the config values and functions used for making a helicopt group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 5 + patch: 0 --- If you want to prepare a helicopter from your addon for fast roping, there's a few ways to do that. diff --git a/docs/wiki/framework/frag-framework.md b/docs/wiki/framework/frag-framework.md index 813f7a9108..1ec5ebed97 100644 --- a/docs/wiki/framework/frag-framework.md +++ b/docs/wiki/framework/frag-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up fragmentation system for explosives using AC group: framework parent: wiki order: 7 +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/framework/goggles-framework.md b/docs/wiki/framework/goggles-framework.md index 907333ffc5..4261f0a5ab 100644 --- a/docs/wiki/framework/goggles-framework.md +++ b/docs/wiki/framework/goggles-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up goggles with ACE3 goggles system. group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Config Values diff --git a/docs/wiki/framework/hearing-framework.md b/docs/wiki/framework/hearing-framework.md index 999a35d37f..a6748b7789 100644 --- a/docs/wiki/framework/hearing-framework.md +++ b/docs/wiki/framework/hearing-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up headgear with ACE3 hearing system. group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Config Values diff --git a/docs/wiki/framework/huntIR-framework.md b/docs/wiki/framework/huntIR-framework.md index 4915547053..2a31119e73 100644 --- a/docs/wiki/framework/huntIR-framework.md +++ b/docs/wiki/framework/huntIR-framework.md @@ -5,6 +5,11 @@ description: Explains how to add HuntIR support to a weapon. group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 1 + patch: 0 --- ## 1. Config Values diff --git a/docs/wiki/framework/interactionMenu-framework.md b/docs/wiki/framework/interactionMenu-framework.md index 8b7166b604..c77c03e785 100644 --- a/docs/wiki/framework/interactionMenu-framework.md +++ b/docs/wiki/framework/interactionMenu-framework.md @@ -1,10 +1,15 @@ --- layout: wiki title: Interaction Menu Framework -description: Explains how to add items to ACE's Interaction Menu +description: Explains how to add items to ACE's Interaction Menu. group: framework order: 0 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Types of actions diff --git a/docs/wiki/framework/javelin-framework.md b/docs/wiki/framework/javelin-framework.md index 1025618158..ba2a390f30 100644 --- a/docs/wiki/framework/javelin-framework.md +++ b/docs/wiki/framework/javelin-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up Javelin-style locking system to a launcher. group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Config Values diff --git a/docs/wiki/framework/missile-guidance-framework.md b/docs/wiki/framework/missile-guidance-framework.md index 43835c7b79..e02c762058 100644 --- a/docs/wiki/framework/missile-guidance-framework.md +++ b/docs/wiki/framework/missile-guidance-framework.md @@ -5,6 +5,11 @@ description: The ACE3 Advanced Missile Guidance Framework provides a setup of co group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Overview diff --git a/docs/wiki/framework/nightvision-framework.md b/docs/wiki/framework/nightvision-framework.md index 6170ba454c..2f0ad424b5 100644 --- a/docs/wiki/framework/nightvision-framework.md +++ b/docs/wiki/framework/nightvision-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up night vision goggles with ACE3 night vision group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Config Values diff --git a/docs/wiki/framework/overheating-framework.md b/docs/wiki/framework/overheating-framework.md index ca6cba945c..d714f4d854 100644 --- a/docs/wiki/framework/overheating-framework.md +++ b/docs/wiki/framework/overheating-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up weapon overheating with ACE3 overheating sys group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Config Values @@ -15,11 +20,8 @@ parent: wiki class CfgWeapons { class MyMG { ace_overheating_mrbs = 3000; //Mean Rounds Between Stoppages (this will be scaled based on the barrel temp) - ace_overheating_slowdownFactor = 1; //Slowdown Factor (this will be scaled based on the barrel temp) - ace_overheating_allowSwapBarrel = 1; // 1 to enable barrel swap. 0 to disable. Meant for machine guns where you can easily swap the barrel without dismantling the whole weapon. - ace_overheating_dispersion = 0.75; //Dispersion Factor (this will be scaled based on the barrel temp) }; }; diff --git a/docs/wiki/framework/overpressure-framework.md b/docs/wiki/framework/overpressure-framework.md index b1b09d4c5e..79fe46104f 100644 --- a/docs/wiki/framework/overpressure-framework.md +++ b/docs/wiki/framework/overpressure-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up launchers and cannons with backblast and ove group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Config Values diff --git a/docs/wiki/framework/parachute-framework.md b/docs/wiki/framework/parachute-framework.md index 1b0d40c7c8..37e522d055 100644 --- a/docs/wiki/framework/parachute-framework.md +++ b/docs/wiki/framework/parachute-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up a parachute with ACE3 parachute system. group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 2 + patch: 0 --- ## 1. Adding reserve parachute to existing parachute diff --git a/docs/wiki/framework/rearm-framework.md b/docs/wiki/framework/rearm-framework.md index 112e2a0b11..630a5026be 100644 --- a/docs/wiki/framework/rearm-framework.md +++ b/docs/wiki/framework/rearm-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up rearming of objects with the ACE3 rearm syst group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 5 + patch: 0 --- ## 1. Config Values diff --git a/docs/wiki/framework/refuel-framework.md b/docs/wiki/framework/refuel-framework.md index 1c75dd7a1f..4ffa5fb9b6 100644 --- a/docs/wiki/framework/refuel-framework.md +++ b/docs/wiki/framework/refuel-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up refueling of objects with the ACE3 refuel sy group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 4 + patch: 0 --- ## 1. Config Values diff --git a/docs/wiki/framework/reloadlaunchers-framework.md b/docs/wiki/framework/reloadlaunchers-framework.md index abcd9338dc..f175b60639 100644 --- a/docs/wiki/framework/reloadlaunchers-framework.md +++ b/docs/wiki/framework/reloadlaunchers-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up launchers with ACE3 reload launchers system. group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Adding third party reload diff --git a/docs/wiki/framework/scopes-framework.md b/docs/wiki/framework/scopes-framework.md index 1ce750714d..b15fc70e58 100644 --- a/docs/wiki/framework/scopes-framework.md +++ b/docs/wiki/framework/scopes-framework.md @@ -5,6 +5,11 @@ description: Explains how to set-up scopes with ACE3 scope adjustment system. group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ## 1. Adding scope adjustment support diff --git a/docs/wiki/framework/settings-framework.md b/docs/wiki/framework/settings-framework.md index 6dc7b923f6..47ad8ceb18 100644 --- a/docs/wiki/framework/settings-framework.md +++ b/docs/wiki/framework/settings-framework.md @@ -5,6 +5,11 @@ description: ACE3 contains an extensive settings framework that allows you to tw group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 --- ACE3 contains an extensive settings framework that allows you to tweak the modification without having to mess around with deleting PBOs. These settings are all handled server side and broadcasted to the clients connecting to that server. This ensures that everyone playing on the server will have a uniform experience. diff --git a/docs/wiki/framework/sitting-framework.md b/docs/wiki/framework/sitting-framework.md index 241d97caee..e3634c01c7 100644 --- a/docs/wiki/framework/sitting-framework.md +++ b/docs/wiki/framework/sitting-framework.md @@ -5,8 +5,18 @@ description: Explains how to set-up sitting objects (eg. chairs) with ACE3 sitti group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 2 + patch: 0 --- +
+
Note:
+

ACE3 Sitting has been deprecated in favour of ACEX Sitting and will be removed in a future version.

+
+ ## 1. Requirements Object must inherit from `ThingX` or any of its sub-classes. diff --git a/docs/wiki/framework/ui-framework.md b/docs/wiki/framework/ui-framework.md index ccfaffd752..af391f36d5 100644 --- a/docs/wiki/framework/ui-framework.md +++ b/docs/wiki/framework/ui-framework.md @@ -5,6 +5,11 @@ description: Explains how to use the selective user interface framework to add c group: framework order: 5 parent: wiki +mod: ace +version: + major: 3 + minor: 6 + patch: 0 --- Only advanced elements can be modified using Selective User Interface framework, basic elements can only be changed using `showHUD` SQF command.