Biki Export Scripts: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Fix code)
(Add Arma 3: Sound Files export script... now for the wiki to accept a 38MB page :^))
Line 769: Line 769:


copyToClipboard (popUpTargets + endl + "|}");
copyToClipboard (popUpTargets + endl + "|}");
</sqf>
</spoiler>
= [[Arma 3: Sound Files]] =
'''Author:''' {{User|Lou Montana}}<br>
<spoiler>
<sqf>
0 spawn {
private _exts = [".wav", ".wss", ".ogg"];
private _result = "";
{
private _addonPath = _x select 0;
private _files = [];
{
_files append addonFiles [_addonPath, _x];
} forEach _exts;
if (_files isEqualTo []) then { continue };
private _showSpoiler = count _files > 30;
diag_log text "";
diag_log text ("=== " + _addonPath + " ===");
diag_log text "";
if (_showSpoiler) then { diag_log text "<" + "spoiler>" };
_files sort true;
{
diag_log text (" " + _x);
} forEach _files;
if (_showSpoiler) then { diag_log text "</" + "spoiler>" };
} forEach allAddonsInfo;
};
</sqf>
</sqf>
</spoiler>
</spoiler>

Revision as of 21:13, 9 July 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: Airport IDs

Author: POLPOX


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


Arma 3: Sound Files

Author: Lou Montana


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


Side Relations

Author: Lou Montana