Hello there,
I am currently trying to execute a script server sided and I want to send a message to all players when it's executed with a dynamic text. I am using BIS_fnc_dynamicText but that's not working for me. I tried another structure and it worked but the dynamic text not. I really want to put a local variable into that so here is what I tried:
The working format
[nil,nil,rTitleText,_msg,"PLAIN",10] call RE;
Not working format with dynamic text
['<t align=''center'' size=''0.8'' color=''#00FF00''>'+_msg+'</t>',safezoneX+0.2,safezoneY+0.465,5,1,0,3035] spawn BIS_fnc_dynamicText;
also tried
["<t color='#00FF00' size = '0.8'>" + _msg + "</t>",-1,-1,4,1,0,789] spawn BIS_fnc_dynamicText;
Is anyone able to help at this point?