22Jacket 0 Posted August 12, 2009 Hi can anyone tell me how to create an I.E.D.ie person moves past triggers ied.. cheers:) Share this post Link to post Share on other sites
OberSchutze 19 Posted August 12, 2009 create a trigger with this code in the activation. You can change the Sh_105_HE to anything really that has a boom, I would stear away from the MK82 and GBU12 though. the 105 or 122 seem to do an good job at blowing up things and scaring the shit out of the survivors. To really screw with people it is also fun to spawn a few enemy to shoot at the survivors. IED1_1_LOC = getPos IED1_1; ""Sh_105_HE"" createvehicle IED1_1_LOC; Oh and make sure you make an object like a trash barrel or something and name it IED1_1 Share this post Link to post Share on other sites
Schilly 10 Posted August 12, 2009 I disagree with not using GBUs or MK82's... In fact you should use 10.... IED1_1_LOC = getPos IED1_1; "Bo_GBU12_LGB" createvehicle IED1_1_LOC; "Bo_GBU12_LGB" createvehicle IED1_1_LOC; "Bo_GBU12_LGB" createvehicle IED1_1_LOC; "Bo_GBU12_LGB" createvehicle IED1_1_LOC; "Bo_GBU12_LGB" createvehicle IED1_1_LOC; "Bo_GBU12_LGB" createvehicle IED1_1_LOC; "Bo_GBU12_LGB" createvehicle IED1_1_LOC; "Bo_GBU12_LGB" createvehicle IED1_1_LOC; "Bo_GBU12_LGB" createvehicle IED1_1_LOC; "Bo_GBU12_LGB" createvehicle IED1_1_LOC; If the boom isn't big enough to be seen from 5km away, its not a proper IED imo... :P Keep in mind, that will destroy anything in like a 300m radius... Careful now ;) Share this post Link to post Share on other sites
OberSchutze 19 Posted August 12, 2009 Remember what happend when we did this? Nothing but sorrow... Share this post Link to post Share on other sites
Schilly 10 Posted August 12, 2009 Yea I remember seeing the blast from about 700m in the air in the over watch chopper as our convoy hit it... Terrible terrible terrible... But oh so worth it =D Nothing spells convoy IED strike practice like the first vehicle in the group getting completely obliterated losing a third of the forces instantly. Share this post Link to post Share on other sites
L_rch 10 Posted August 12, 2009 I use this script from arma http://www.armaholic.com/page.php?id=504 Share this post Link to post Share on other sites
Lightninguk 0 Posted August 12, 2009 create a trigger with this code in the activation. You can change the Sh_105_HE to anything really that has a boom, I would stear away from the MK82 and GBU12 though. the 105 or 122 seem to do an good job at blowing up things and scaring the shit out of the survivors. To really screw with people it is also fun to spawn a few enemy to shoot at the survivors. IED1_1_LOC = getPos IED1_1; ""Sh_105_HE"" createvehicle IED1_1_LOC; Oh and make sure you make an object like a trash barrel or something and name it IED1_1 does not work it says code is wrong Share this post Link to post Share on other sites
Schilly 10 Posted August 12, 2009 its because of the extra Quotes, remove the second quotes around the Sh_105_HE and it should work. Share this post Link to post Share on other sites
Lightninguk 0 Posted August 12, 2009 yer i try that but still no joy Share this post Link to post Share on other sites
Schilly 10 Posted August 12, 2009 Whats the exact error, and did you place something named IED1_1? Share this post Link to post Share on other sites
Tmp 10 Posted August 17, 2009 (edited) Hi, You can also make an ied that is not linked to an object so it looks like its hidden under the pavement or in some bush. just use an empty marker in this case called "ied1". Then add this to the activation of the trigger. it works alsmost the same as examples above. ied = "Bo_GBU12_LGB" createVehicle [1000, 1000, 1000]; ied setPos ([getmarkerpos "ied1" select 0, getmarkerpos "ied1" select 1, 1]); it's also nice to make trip flares to reveal positions at night. Use the same code then remove the bomb by a flare and set the hight something like: ied = "F_40mm_White" createVehicle [1000, 1000, 1000]; ied setPos ([getmarkerpos "ied1" select 0, getmarkerpos "ied1" select 1, 60]); make sure trigger activates on present. Edited August 17, 2009 by Tmp Share this post Link to post Share on other sites
cobra4v320 27 Posted August 18, 2009 here you go try this thread out http://forums.bistudio.com/showthread.php?p=1381094#post1381094 Share this post Link to post Share on other sites