/* * Author: commy2, Glowbal * * Display a structured text with image. * * Argument: * 0: Text * 1: Image * 2: Image color * * Return value: * Nothing */ #include "script_component.hpp" private ["_text", "_image", "_imageColor"]; _text = _this select 0; _image = _this select 1; _imageColor = if (count _this > 2) then {_this select 2} else {[1,1,1]}; _imageColor resize 3; if (typeName _text != "TEXT") then { if (typeName _text == "STRING" && {isLocalized _text}) then { _text = localize _text; }; _text = parseText format ["%1", _text]; }; _text = composeText [parseText format ["", _image, _imageColor call BIS_fnc_colorRGBtoHTML], lineBreak, _text]; [_text, 2] call FUNC(displayTextStructured);