Tory Xiao 5 Posted August 23, 2021 I would like to use BIS_fnc_textTiles as my killfeed text, the question is how do I add victim name (%1) and reward money (%2) into the text? [parseText "<t font='PuristaBold' size='1.5'>You killed %1</t><br />And gain $%2 bonus", true, nil, 2, 0.7, 0] remoteExec ["BIS_fnc_textTiles", _killer]; Share this post Link to post Share on other sites
sarogahtyp 1109 Posted August 23, 2021 [parseText format [ "<t font='PuristaBold' size='1.5'>You killed %1</t><br />And gain $%2 bonus", _victim, _reward_money ], true, nil, 2, 0.7, 0] remoteExec ["BIS_fnc_textTiles", _killer]; not tested Share this post Link to post Share on other sites
Tory Xiao 5 Posted August 23, 2021 3 minutes ago, sarogahtyp said: [parseText format [ "<t font='PuristaBold' size='1.5'>You killed %1</t><br />And gain $%2 bonus", _victim, _reward_money ], true, nil, 2, 0.7, 0] remoteExec ["BIS_fnc_textTiles", _killer]; not tested I'll try, thanks! Share this post Link to post Share on other sites
Tory Xiao 5 Posted August 23, 2021 1 hour ago, sarogahtyp said: [parseText format [ "<t font='PuristaBold' size='1.5'>You killed %1</t><br />And gain $%2 bonus", _victim, _reward_money ], true, nil, 2, 0.7, 0] remoteExec ["BIS_fnc_textTiles", _killer]; not tested It works, thanks mate Share this post Link to post Share on other sites