quite an annoying one, spent too much time on this...
KK demonstrating it on A3 and even Arma wiki stating that:
Yet it does not work, even with example provided down below in wiki:
player addAction ["Hint Hello!", { hint format ["Hello %1!", _this select 3] }, name player];
I did notice it states code since TKOH, does that mean only Arma 2.5 and 3 supports this?
To give you an example, this does not work:
_test = player addAction ["Test", {hint"TEST"}]; //nop _test = player addAction ["Test", {hint"TEST"},""]; //nop _test = player addAction ["Test",""]; //works
All I want to do is simply change a bool trough addaction without creating a new file just for a single damn line of code, lol
Kinda like this:
_test = player addAction ["Test",{_check = true}];
Any clues?