Exile_64bit_Conversion/Overrides/ExileServer_system_database_handleBig.sqf
Cloudhax23 2481921256 Overrides added
For compliance with the ARMA 3 license
2017-02-23 07:28:28 -06:00

22 lines
553 B
Plaintext

/**
* ExileServer_system_database_handleBig
*
* Exile Mod
* www.exilemod.com
* © 2015 Exile Mod Team
*
* This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
* To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.
*/
private["_key","_result","_pipe"];
_key = _this;
_result = "";
while{true} do
{
_pipe = "extDB3" callExtension format["5:%1", _key];
if(_pipe isEqualTo "") exitWith {};
_result = _result + _pipe;
};
call (compile _result)