Home   Help Search Login Register  

Author Topic: Quick and easy question from a return member  (Read 1453 times)

0 Members and 1 Guest are viewing this topic.

Offline Coyote

  • Members
  • *
Quick and easy question from a return member
« 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.

Offline SaOk

  • Missions Depot Staff
  • *****
    • My youtube profile
Re: Quick and easy question from a return member
« Reply #1 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];
« Last Edit: 04 Nov 2010, 22:25:07 by SaOk »

Offline Coyote

  • Members
  • *
Re: Quick and easy question from a return member
« Reply #2 on: 04 Nov 2010, 23:39:14 »
Thanks!  :cool2: