Created
July 12, 2016 00:29
-
-
Save jameslkingsley/fc56a231e5cb017f9e4bddbe42e2c05d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // addAction to wreck | |
| wreck addAction ["Detonate", { | |
| params ["_target", "_caller"]; | |
| // Spawns Explosion | |
| private _bomb = "Bo_GBU12_LGB" createVehicle getPos _target; | |
| // Hides wreck | |
| hideObject _target; | |
| // Tells OPFOR they got Wrecked | |
| "The Helicopter has been Destroyed!" remoteExecCall ["hint", east]; | |
| }, nil, 6, true, true]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment