okay if it were a variable
eg
tx_counter = 5
hint format ["Count value: %1",tx_counter]
would print out
Count value: 5
if you wanted to print out a value from an array
eg
tx_MyStatus = [30, 59, 0.7]
then you would do something like the following
hint format ["Speed: %1 mph\n Direction %2 deg\n Dammage %3", Tx_Mystatus select 0, Tx_Mystatus select 1, Tx_Mystatus select 2]
this would print out
Speed: 30 mph
Direction: 59 deg
Dammage: 0.7
using titlecut not sure
using titletext format, it would look like
titletext[format["Speed: %1 mph\n Direction %2 deg\n Dammage %3", Tx_Mystatus select 0, Tx_Mystatus select 1, Tx_Mystatus select 2],"PLAIN"]
Side/group chat etc. you cant use the \n to print on a new line, so you would need to print out each line in order
eg
player sidechat format ["Speed: %1 mph", Tx_Mystatus select 0]
player sidechat format ["Direction: %1 deg", Tx_Mystatus select 1]
player sidechat format ["Dammage: %1", Tx_Mystatus select 2]
or place them all one 1 line