ACE3/addons/common/functions/fnc_toHex.sqf

23 lines
410 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
2015-09-17 16:25:02 +00:00
* Author: commy2, esteldunedain
* Converts number to hexadecimal number
*
* Arguments:
* A number between 0 and 255 <NUMBER>
*
* Return Value:
2015-09-19 22:55:58 +00:00
* A hexadecimal number as string <STRING>
2015-09-17 16:25:02 +00:00
*
* Example:
* [154] call ace_common_fnc_toHex
*
2015-09-17 16:25:02 +00:00
* Public: Yes
*/
2015-09-19 22:55:58 +00:00
params ["_number"];
2015-03-23 15:16:50 +00:00
2015-09-19 22:55:58 +00:00
_number = ((round abs _number) max 0) min 255;
2015-03-23 15:16:50 +00:00
2015-09-19 22:55:58 +00:00
GVAR(hexArray) select _number // return