Hey Terox... me again
If you want it in titletext (white writing down the bottom of the screen) I suggest this line here:
if (Player in thisList) then {
titletext [format["Mayday!\n Mayday\n"We lost the tail rotor\nWe are going down",name (thisList select 0)],"Plain down"]
}or even:
? (Player in thisList)
: titletext [format["Mayday!\n Mayday\n"We lost the tail rotor\nWe are going down",name (thisList select 0)],"Plain down"]
If you want it in vehicle chat (yellow writing like a radio message), try:
if (Player in thisList) then { vehicle
chat format ["Mayday!\n Mayday\n"We lost the tail rotor\nWe are going down",name (thisList select 0)]
}or:
? (Player in thisList)
: vehicle
chat format["Mayday!\n Mayday\n"We lost the tail rotor\nWe are going down",name (thisList select 0)]
The difference between the
? : and the
if then statements isn't much... except in the latter you'll need some
{ } around the then statement. In the former, you don't
See if any of those fixes your problem.