Posts: 1272
Registered: 2-4-06
Location: Adelaide South Australia
Member Is Offline
Mood: Very happy
posted on 24-5-09 at 08:24
Text Messages
Text messages will be shown in Joint Operations and DFX at the bottom left of the screen. These messages are used to pass information or comments to
the player.
The consol message can be shown by a trigger or and event.
The following example. If SSN (8) dies it will trigger the following consol text message.
if ssndead(8) and never() then // SSN has died
text("Type message here")
text("and it will show up at the lower")
text("left of the screen.")
endif
The following is event driven.
if event(12) and never() then // event has been executed
text("Type message here")
text("and it will show up at the lower")
text("left of the screen.")
endif