ACE3/addons/interact_menu/functions/fnc_ctrlSetParsedTextCached.sqf

14 lines
324 B
Plaintext
Raw Normal View History

2015-04-25 11:28:21 +00:00
// by commy2
#include "script_component.hpp"
private ["_ctrl", "_index", "_text"];
_ctrl = _this select 0;
_index = _this select 1;
_text = _this select 2;
2015-04-25 19:18:09 +00:00
if (_text != Str(ARR_SELECT(GVAR(ParsedTextCached),_index,""))) then {
2015-04-25 11:28:21 +00:00
GVAR(ParsedTextCached) set [_index, _text];
_ctrl ctrlSetStructuredText parseText _text;
};