Biki Export Scripts: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Fix Arma_3:_DLC_Restrictions export (set color)… then got carried away)
m (Fixed typos in DLC Restrictions code)
Line 329: Line 329:
//Get weapons, equipments, glasses, bags (in CfgVehicles)
//Get weapons, equipments, glasses, bags (in CfgVehicles)
_classes = ("
_classes = ("
getNumber (_x >> "scope") == 2 and
getNumber (_x >> 'scope') == 2 and
[configName _x] call BIS_fnc_baseWeapon == configName _x and
[configName _x] call BIS_fnc_baseWeapon == configName _x and
getNumber (_x >> "type") != 65536 and
getNumber (_x >> 'type') != 65536 and
!('UnknownEquipment' in (configName _x call BIS_fnc_itemType))
!('UnknownEquipment' in (configName _x call BIS_fnc_itemType))
" configClasses (configFile >> "CfgWeapons")) +
" configClasses (configFile >> "CfgWeapons")) +

Revision as of 13:43, 28 April 2022

This page contains all export scripts used to generate data on various pages on this wiki.

In order to quickly link to the export script used to generate data on a specific page use {{Wiki|extractionScript}} on that specific page.
The functions from this page (and more) are also available in this mod.

Arma 3: CfgFunctions

Author: R3vo


Arma 3: CfgMarkers

Author: R3vo


Arma 3: CfgMarkerColors

Author: R3vo


Arma 3: CfgMusic

Author: Killzone_kid


Arma 3: Difficulty Settings

Author: Killzone_kid


Arma 3: Display3DEN IDCs

Author: R3vo


Arma 3: Hitpoints

Author: R3vo


Arma 3: createVehicle/vehicles

light version (without hitpoints)
Author: Lou Montana

heavy version (with hitpoints)
Author: Killzone_Kid


Arma 3: DLC Restrictions

Author: POLPOX


Arma 3: Shooting Targets

Author: R3vo


CfgGroups

Author: Lou Montana


CfgWorlds/Group*

Author: Killzone Kid


inputAction/actions

Author: POLPOX


Modules

Author: R3vo


nearestTerrainObjects

Author: R3vo