Trigger_hurt, only for field ops. How?


(Iatm) #1

Hi all,

How can I let a trigger_hurt only kill field ops?

I tried with ‘trigger_multiple’ and ‘target_kill’. But that didn’t work.

Any ideas?

And another question.

How can I make a trigger (or something) that gives you ammo when you walk in it. I don’t want ‘ammo/health cabines’.

Thx in advance.

-Toiletman :smiley:


(LaggingTom) #2

trigger_ammo

and use trigger_mutiple, and check the fieldops_only box.


(Iatm) #3

I use trigger_multiple and the ‘fieldops_only’ box is ticked. But when I target this multiple to target_kill…it doesn’t kill anyone

-Toiletman


(2Bit) #4

You might be able to achieve what you want this way; it depends on the size of the triggers:

Set up a trigger_multiple with field_ops only ticked.
Give it a target_script_trigger target.
Put a trigger_hurt with dmg 20000 in the same place as the trigger_multiple and set it to invisible in the script.

In the script for the target_script_trigger, set the trigger_hurt to default, wait 100 and set it to invisible again.

If your triggers are small this should kill just the field op who sets it off. If your triggers are large you’ll probably kill some others nearby too.

Hope this does the trick for you.