mirror of
https://github.com/Ghostrider-DbD-/Config-Extraction-Tools.git
synced 2024-08-30 16:42:11 +00:00
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
/*
|
|
Class Name Extraction Tool
|
|
By GhostriderDbD
|
|
For Arma 3
|
|
|
|
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/
|
|
*/
|
|
|
|
// load string library
|
|
//nul=[] execVM "KRON_Strings.sqf";
|
|
GRG_mod = "Exile"; // Options are "Exile" or "Epoch". This configuration pertains only to generating pre-formated price lists.
|
|
GRG_Root = ""; // Scripts will test if the leftmost N characters of a classname are equal to GRG_Root
|
|
GRG_includedWeaponMagazines = false;
|
|
GRG_configuratorPathName = "ExcludedClassNames\";
|
|
|
|
#include "Code\variables.sqf";
|
|
#include "Code\functions.sqf";
|
|
#include "Code\KRON_Strings.sqf";
|
|
|
|
player addAction ["Vehicles","vehicles.sqf", [], 9];
|
|
player addAction ["Weapons","weapons.sqf",[], 8.9];
|
|
player addAction ["Magazines","magazines.sqf", 8.7];
|
|
player addAction ["Wearables","wearables.sqf", 8.8];
|
|
player addAction ["Items","items.sqf",8.6];
|
|
player addAction ["Turrets","vehiclesTurrets.sqf", 8.5];
|
|
|
|
|
|
|
|
|