Biki Export Scripts

From Bohemia Interactive Community
Revision as of 13:36, 23 January 2023 by Lou Montana (talk | contribs) (Add BIS_fnc_holdActionAdd script)
Jump to navigation Jump to search

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: Moves

Author: Lou Montana


Arma 3: createSimpleObject/objects

Copy
private _result = []; { _result append addonFiles [_x select 0, ".p3d"] } forEach allAddonsInfo; copyToClipboard str _result;


Arma 3: createVehicle/vehicles

light version (without hitpoints)
Author: Lou Montana

heavy version (with hitpoints)
Author: Killzone_Kid

heavy version (with hidden hitpoints)
Author: Lou Montana from the above one


Arma 3: DLC Restrictions

Author: POLPOX


Arma 3: Shooting Targets

Author: R3vo


BIS_fnc_holdActionAdd

Author: Lou Montana

Copy
private _result = []; private _foundPaas = []; private _splits = []; { _foundPaas = addonFiles [_x select 0, ".paa"] select { _x = toLower _x; _x = _x splitString "\"; if (count _x > 5 && { _x select 2 == "data" && _x select 3 == "igui" && _x select 5 in ["actions", "holdactions"] }) then { true } else { _x = _x select (count _x - 1); "action" in _x && { !("faction" in _x) && { !("interaction" in _x) } }; }; }; _result append _foundPaas; } forEach allAddonsInfo; copyToClipboard str _result;


CfgGroups

Author: Lou Montana


CfgWorlds/Group*

Author: Killzone Kid


inputAction/actions

Author: POLPOX


Modules

Author: R3vo


nearestTerrainObjects

Author: R3vo