OFPEC Forum

Editors Depot - Mission Editing and Scripting => OFP - Editing/Scripting General => Topic started by: gothicv on 21 Jun 2003, 02:00:56

Title: an action/radio option only available in a trigger?
Post by: gothicv on 21 Jun 2003, 02:00:56
I couldn't find the answer to this in the searh thing, so I figured id ask here. I would like to have a radio option available only in a specific area - for my soldiers to call for backup when they reach the end zone.
Title: Re:an action/radio option only available in a trigger?
Post by: deaddog on 21 Jun 2003, 03:34:41
You could try a repeating trigger.

type:anybody preset
condition: player in thislist

on activation:
  actionid=vehicle player addaction [whatever]

on-deactivation:
   player removeaction actionid

 :)