OFPEC Forum

Editors Depot - Mission Editing and Scripting => Arma2 - Editing/Scripting General => Topic started by: Coyote on 04 Nov 2010, 22:04:46

Title: Quick and easy question from a return member
Post by: Coyote on 04 Nov 2010, 22:04:46
Hey guys. Big time OFP CWC editor here, just got Arma 2 last week. Having a little bit of trouble with getting a guy to plant a charge.

If I'm not mistaken, wasn't it
Code: [Select]
name fire ["put", "pipebomb"] in the on activation field? I tried with both triggers and waypoints.

I'm almost embarrassed to ask this. Haha.
Title: Re: Quick and easy question from a return member
Post by: SaOk on 04 Nov 2010, 22:22:12
Hello, :)

The commands have changed little in ArmA2. You need to use this to put the satchel:
Code: [Select]
name fire ["pipebombmuzzle", "pipebombmuzzle", "pipebomb"];
And this to blow it (unit has to be still alive or nothing happens):
Code: [Select]
name  action ["TOUCHOFF", name];
Title: Re: Quick and easy question from a return member
Post by: Coyote on 04 Nov 2010, 23:39:14
Thanks!  :cool2: