Home   Help Search Login Register  

Author Topic: Radio talk  (Read 619 times)

0 Members and 1 Guest are viewing this topic.

fishous

  • Guest
Radio talk
« on: 01 Aug 2004, 15:00:44 »
Hey is there a easy way to make text come up as radio talk (Blue writting on the left of the screen) when triggers are activated or when AI units have completed waypoints.

Offline macguba

  • Former Staff
  • ****
    • macguba's operation flashpoint page
Re:Radio talk
« Reply #1 on: 01 Aug 2004, 16:00:20 »
sideChat
groupChat
globalChat
Plenty of reviewed ArmA missions for you to play

GrimMonkey

  • Guest
Re:Radio talk
« Reply #2 on: 02 Aug 2004, 03:40:06 »
Or more specifically:

UnitName SideChat "Your Text Here"
UnitName GroupChat "Your Text Here"
UnitName GlobalChat "Your Text Here"

GroupChat and GlobalChat are only needed for MP missions. As a note, GlobalChat appears as gray text, not blue.


Beware the GrimMonkey

Dubieman

  • Guest
Re:Radio talk
« Reply #3 on: 02 Aug 2004, 16:17:35 »
vehicle chat is yellow, group chat is purple...

You can put it into a nice little script like here's one of my samples from my mission, and its called from a trigger when a unit leaves the little area...

Code: [Select]
spetz sidechat "Urgent news Dom, I can't link up with you at the old outpost. It seems some National Guardsmen have decided to take a break there."
~9
pilla SideChat "Okay, okay I'm sure we could go around them right?"
~7
spetz SideChat "No I don't think so, we should probably snuff them to be safe. Plus they have a radio."
~8
pilla SideChat "You better be right, I really don't want to get into a serious scrape so far from the target. We'll meet you there."
~8
spetz SideChat "Okay I'll take up an attack position, see you there."
exit

Of course you can mod the names, delays, and what they say too...

Also if you depbo a few BIS missions you will find that they use gamelogics with waypoints and delays to do radio or converstaions. If you wanna do that, there is a Gamelogic tut in the ed depot.
« Last Edit: 02 Aug 2004, 16:18:39 by GuiltyRoachKillar »

Offline THobson

  • OFPEC Patron
  • Former Staff
  • ****
Re:Radio talk
« Reply #4 on: 02 Aug 2004, 18:42:40 »
If you want a message coming from a group that may be taking casualties use

Leader <groupname> sidechat

That way you will get a message from whichever unit is the leader of the group at the time.  If you specify a specific unit and that unit is dead you will not get the message

fishous

  • Guest
Re:Radio talk
« Reply #5 on: 03 Aug 2004, 20:34:34 »
Thanks alot everyone  :)
P.S how do you give a group a name
« Last Edit: 03 Aug 2004, 20:36:41 by fishous »

Offline macguba

  • Former Staff
  • ****
    • macguba's operation flashpoint page
Re:Radio talk
« Reply #6 on: 03 Aug 2004, 20:40:41 »
In the init field of the group leader write

grpName = group this
Plenty of reviewed ArmA missions for you to play