mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Update fortify wiki (#9092)
This commit is contained in:
parent
0169373b7b
commit
5693edc96d
@ -30,7 +30,7 @@ If the Fortify module is present in the mission, server admins can use chat comm
|
||||
|
||||
## 1.2 Adding custom presets
|
||||
|
||||
There are two ways of adding custom presets to your mission, either via code or through desciption.ext.
|
||||
There are three ways of adding custom presets to your mission, either via code, through desciption.ext or through config.
|
||||
|
||||
To add a preset via code you use the function `call ace_fortify_fnc_registerObjects`. Also enables Fortify.
|
||||
|
||||
@ -52,11 +52,11 @@ To add a preset via code you use the function `call ace_fortify_fnc_registerObje
|
||||
* [west, 5000, [["Land_BagFence_Long_F", 5], ["Land_BagBunker_Small_F", 50]]] call ace_fortify_fnc_registerObjects
|
||||
```
|
||||
|
||||
Adding it through `description.ext` you use:
|
||||
Adding it through `description.ext` or config you use:
|
||||
|
||||
```cpp
|
||||
class ACEX_Fortify_Presets {
|
||||
class myMissionObjects {
|
||||
class TAG_MyPreset {
|
||||
displayName = "My Preset";
|
||||
objects[] = {
|
||||
{"Sandbag", 5},
|
||||
@ -66,7 +66,7 @@ class ACEX_Fortify_Presets {
|
||||
};
|
||||
```
|
||||
|
||||
Then you will have to set the mission preset to `myMissionObjects` by either using the Fortify editor module or the chat command: `#ace-fortify blufor myMissionObjects`.
|
||||
Then you will have to set the mission preset to `TAG_MyPreset` by either using the Fortify editor module or the chat command: `#ace-fortify blufor TAG_MyPreset`.
|
||||
|
||||
## 1.3 Adding custom deploy handlers
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user