Biki Export Scripts: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Add BIS_fnc_holdActionAdd script)
(Add Arma 3: CfgIdentities export code)
Line 34: Line 34:
_export = _export + endl + "|}";
_export = _export + endl + "|}";
copyToClipboard _export;
copyToClipboard _export;
</sqf>
</spoiler>
= [[Arma 3: CfgIdentities]] =
'''Author:''' {{User|Lou Montana}} and {{User|POLPOX}}<br>
<spoiler>
<sqf>
private _result = [
'{| class="sortable wikitable"',
'! className !! Name !! Note'
];
{
_result pushBack "|-";
_note = ["", "Hidden"] select (getNumber (_x >> "disabled") == 1);
_result pushBack format ["| {{hl|%1}} || %2 || %3", configName _x, getText (_x >> "displayName"), _note];
} forEach ("true" configClasses (configFile >> "CfgFaces" >> "Man_A3"));
_result pushBack "|}";
_result joinString endl;
</sqf>
</sqf>
</spoiler>
</spoiler>
Line 39: Line 62:


= [[Arma 3: CfgMarkers]] =
= [[Arma 3: CfgMarkers]] =
'''Author:''' {{User|R3vo}}<br>
'''Author:''' {{User|R3vo}}<br>
<spoiler>
<spoiler>
Line 323: Line 347:
= [[Arma 3: createSimpleObject/objects]] =
= [[Arma 3: createSimpleObject/objects]] =


'''Author:''' {{User|Lou Montana}}<br>
<spoiler>
<sqf>
<sqf>
private _result = [];
private _result = [];
Line 328: Line 354:
copyToClipboard str _result;
copyToClipboard str _result;
</sqf>
</sqf>
</spoiler>




Line 674: Line 701:
= [[BIS_fnc_holdActionAdd]] =
= [[BIS_fnc_holdActionAdd]] =


'''Author:''' {{User|Lou Montana}}
'''Author:''' {{User|Lou Montana}}<br>
<spoiler>
<sqf>
<sqf>
private _result = [];
private _result = [];
Line 697: Line 725:
copyToClipboard str _result;
copyToClipboard str _result;
</sqf>
</sqf>
</spoiler>





Revision as of 06:02, 19 March 2023

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

Author: Lou Montana and POLPOX


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

Author: Lou Montana


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


CfgGroups

Author: Lou Montana


CfgWorlds/Group*

Author: Killzone Kid


inputAction/actions

Author: POLPOX


Modules

Author: R3vo


nearestTerrainObjects

Author: R3vo