ACE3/addons/common/functions/fnc_toHex.sqf
jonpas 76e1aafb33
Use function documentation script (#6897)
Co-authored-by: Björn Dahlgren <bjorn@dahlgren.io>
2023-04-30 23:03:35 +02:00

23 lines
413 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