Sarge-AI/scripts/UPSMON/COMMON/Params/fnc/UPSMON_GetParams.sqf
Teh Dango 3ac749d64b 2.1.0
This is the latest stable version of Sarge AI for Arma 3: Exile.
2016-02-19 21:49:51 -05:00

25 lines
520 B
Plaintext

/****************************************************************
File: UPSMON_GetParams.sqf
Author: Azroul13
Description:
Convert argument list to uppercase
Parameter(s):
<--- Parameters
Returns:
---> Parameters
****************************************************************/
private["_Params","_UCthis","_i","_e"];
_Params = _this select 0;
_UCthis = [];
for [{_i=0},{_i<count _Params},{_i=_i+1}] do
{
_e=_Params select _i;
if (typeName _e=="STRING") then {_e=toUpper(_e)};
_UCthis set [_i,_e]
};
_UCthis