Tom5587 10 Posted January 14, 2011 hi there. i am having a heck of a time getting satchel charges in my custom box because i cant seem to figure out what the game calls it.... if anyone knows of a list with all the weapon and ammo names. i have tried armaholic but no luck. Share this post Link to post Share on other sites
HateDread 13 Posted January 14, 2011 I believe the classname is 'pipebomb'. These links might help you: http://community.bistudio.com/wiki/ArmA_2:_Weapons http://forums.bistudio.com/showthread.php?t=73241&page=2 Regards, - HateDread. Share this post Link to post Share on other sites
PELHAM 10 Posted January 14, 2011 (edited) It has a misleading name! It's listed here: http://forums.bistudio.com/showpost.php?p=1292940&postcount=8 but does not indicate it is the satchel charge. Put this in your ammobox.sqf: _this addMagazineCargo ["PipeBomb", 100]; will give you 100 satchel charges Example BAF ammo box sqf that you can download from Armaholic (it's not mine - can't remember who did it) // null = this execVM "ammo-oabaf.sqf"; while {alive _this} do { // Remove the stock items from the crate clearMagazineCargo _this; clearWeaponCargo _this; // WEAPONS _this addWeaponCargo ["BAF_AS50_scoped", 100]; _this addWeaponCargo ["BAF_AS50_TWS", 100]; _this addWeaponCargo ["BAF_L110A1_Aim", 100]; _this addWeaponCargo ["BAF_L7A2_GPMG", 100]; _this addWeaponCargo ["BAF_L85A2_RIS_ACOG", 100]; _this addWeaponCargo ["BAF_L85A2_RIS_CWS", 100]; _this addWeaponCargo ["BAF_L85A2_RIS_Holo", 100]; _this addWeaponCargo ["BAF_L85A2_RIS_SUSAT", 100]; _this addWeaponCargo ["BAF_L85A2_UGL_ACOG", 100]; _this addWeaponCargo ["BAF_L85A2_UGL_Holo", 100]; _this addWeaponCargo ["BAF_L85A2_UGL_SUSAT", 100]; _this addWeaponCargo ["BAF_L86A2_ACOG", 100]; _this addWeaponCargo ["BAF_LRR_scoped", 100]; _this addWeaponCargo ["BAF_LRR_scoped_W", 100]; _this addWeaponCargo ["BAF_NLAW_Launcher", 100]; // AMMO _this addMagazineCargo ["5Rnd_127x99_as50", 100]; _this addMagazineCargo ["5Rnd_127x99_as50", 100]; _this addMagazineCargo ["200Rnd_556x45_L110A1", 100]; _this addMagazineCargo ["100Rnd_762x51_M240", 100]; _this addMagazineCargo ["30Rnd_556x45_Stanag", 100]; _this addMagazineCargo ["5Rnd_86x70_L115A1", 100]; _this addMagazineCargo ["NLAW", 100]; _this addMagazineCargo ["1Rnd_HE_M203", 100]; _this addMagazineCargo ["FlareWhite_M203", 100]; _this addMagazineCargo ["FlareGreen_M203", 100]; _this addMagazineCargo ["FlareRed_M203", 100]; _this addMagazineCargo ["FlareYellow_M203", 100]; _this addMagazineCargo ["1Rnd_Smoke_M203", 100]; _this addMagazineCargo ["1Rnd_SmokeRed_M203", 100]; _this addMagazineCargo ["1Rnd_SmokeGreen_M203", 100]; _this addMagazineCargo ["1Rnd_SmokeYellow_M203", 100]; // Items _this addWeaponCargo ["Binocular", 100]; _this addWeaponCargo ["Binocular_Vector", 100]; _this addWeaponCargo ["NVGoggles", 100]; _this addWeaponCargo ["ItemGPS", 100]; _this addWeaponCargo ["LaserDesignator", 100]; _this addMagazineCargo ["LaserBatteries", 100]; _this addMagazineCargo ["PipeBomb", 100]; _this addMagazineCargo ["Mine", 100]; // Restock time. sleep 1800; }; Edited January 14, 2011 by PELHAM Share this post Link to post Share on other sites
Tom5587 10 Posted January 14, 2011 Thanks man. i can always count on people here Share this post Link to post Share on other sites