Jump to content
Sign in to follow this  
allanconstable

Droping bombs ?

Recommended Posts

Does anyone know the command to make an A10 (LGB) drop a bomb.

I want to have a boming raid for a cut scene and want to trigger the bombs to drop as the planes pass the target area.

i need the command that would go in the on activation section of the trigger screen.

Thanx

Share this post


Link to post
Share on other sites

or create a file called:

dropbombs.sqs

in that file write:

_unit = _this select 0;

_delay = _this select 1;

_bombs = 8;

#nextbomb

_unit Fire "LaserGuidedBombLauncher"

? _bombs == 0 : exit;

_bombs = _bombs - 1;

~_delay

goto "nextbomb";

-----------

save

In the editor

create a trigger

Make the axis about 200 so the A10 triggers it

Activation: West

Present

Condition: This

On Activation: [AirUnit, 1.0] exec "dropbombs.sqs"

(where AirUnit is the name of your A10, 1.0 is the delay in seconds)

Make sure you have the dropbombs.sqs file in your mission directory(folder)

e.g.

..missions\mission_name\

Enjoy.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×