mirror of
https://github.com/Ghostrider-DbD-/Config-Extraction-Tools.git
synced 2024-08-30 16:42:11 +00:00
27 lines
615 B
Plaintext
27 lines
615 B
Plaintext
/*
|
|
Class Name Extraction Tool
|
|
By GhostriderDbD
|
|
For Arma 3
|
|
|
|
Lists magazines that should excluded from the output for the script.
|
|
|
|
All the code and information provided here is provided under an Attribution Non-Commercial ShareAlike 4.0 Commons License.
|
|
|
|
http://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
*/
|
|
// Magazines
|
|
/*
|
|
Add the class names of any magazines you wish to exclude to _baseMagazines using the formating shown in the example below.
|
|
|
|
For example, if you wish to exclude smoke rounds add:
|
|
|
|
"VehicleMagazine",
|
|
"SmokeLauncherMag",
|
|
"SmokeLauncherMag_boat"
|
|
|
|
*/
|
|
_excludedMagazines = [
|
|
|
|
|
|
];
|