ACE3/addons/common/functions/fnc_toHex.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

23 lines
416 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: commy2, esteldunedain
* Converts number to hexadecimal number
*
* Arguments:
* 0: A number between 0 and 255 <NUMBER>
*
* Return Value:
* A hexadecimal number as string <STRING>
*
* Example:
* [154] call ace_common_fnc_toHex
*
* Public: Yes
*/
params ["_number"];
_number = ((round abs _number) max 0) min 255;
GVAR(hexArray) select _number // return