allanconstable 0 Posted April 16, 2002 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
InqWiper 0 Posted April 16, 2002 Bomber fire "LaserGuidedBombLauncher". Share this post Link to post Share on other sites
Taurus 20 Posted April 16, 2002 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