Jump to content
Sign in to follow this  
Tom5587

Weapon name help for ammo box

Recommended Posts

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

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 by PELHAM

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  

×