Biki Export Scripts: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
Line 247: Line 247:
= [[Arma 3: createVehicle/vehicles]] =
= [[Arma 3: createVehicle/vehicles]] =


'''light version (without hitpoints)'''<br>
'''Author:''' {{User|Lou Montana}}<br>
<spoiler><syntaxhighlight lang="cpp">private _result = "";
"if (getNumber (_x >> 'scope') > 0) then
{
_result = format ["%1* %2\n", _result, configName _x];
}" configClasses (configFile >> "CfgVehicles");
copyToClipboard _result;
_result;</syntaxhighlight></spoiler>
'''heavy version (with hitpoints)'''<br>
'''Author:''' {{User|Killzone_Kid}}<br>
'''Author:''' {{User|Killzone_Kid}}<br>
<spoiler><syntaxhighlight lang="cpp">private _result = "";
<spoiler><syntaxhighlight lang="cpp">private _result = "";
Line 257: Line 268:
_source = getText (_animSource >> 'source');
_source = getText (_animSource >> 'source');
if (_source == 'hit') then { _source = 'hit [' + getText (_animSource >> 'hitpoint') + ']' };
if (_source == 'hit') then { _source = 'hit [' + getText (_animSource >> 'hitpoint') + ']' };
if (_source != '') then { _source = ' &rarr; ' + _source };
if (_source != '') then { _source = ' => ' + _source };
_result = _result + ('*# ' + configName _animSource + _source) + ""\n"";
_result = _result + ('*# ' + configName _animSource + _source) + ""\n"";
};
};

Revision as of 01:32, 26 November 2021

Introduction

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.

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

  • Arma 2: CfgGroups
  • Arma 2: Operation Arrowhead: CfgGroups
  • Arma 3: CfgGroups


CfgWorlds/Group*

Author: Killzone Kid


inputAction/actions

Author: POLPOX


Modules

Author: R3vo


nearestTerrainObjects

Author: R3vo