zachgibson22 3 Posted March 22, 2014 Okay this is seriously pissing me off. For some reason I can't get any magazines on my guy! for some reason the only magazine that seems to work for me is "30Rnd_556x45_Stanag". And I can't find out why! I've tried random magazine and they won't work, even a few handgun mags. I'm on the current Stable Branch build, and only using one mod(Nature Mod). PLEASE, someone help me! Here's what I'm putting in my INIT. removeallweapons this; removeallassigneditems this; removeuniform this; removevest this; removebackpack this; this addWeapon 'arifle_MXM_SOS_pointer_F'; this addMagazine '30Rnd_65x39_caseless_mag'; //NOT WORKING this addMagazine '30Rnd_65x39_caseless_mag'; this addMagazine '30Rnd_65x39_caseless_mag'; this addMagazine '30Rnd_65x39_caseless_mag'; this addMagazine '30Rnd_65x39_caseless_mag'; this addPrimaryWeaponItem 'optic_DMS'; this addPrimaryWeaponItem 'acc_pointer_IR'; this addHeadgear 'H_Booniehat_mcamo'; this addVest 'V_TacVest_khk'; this addUniform 'U_B_CombatUniform_mcam'; this addBackPack 'B_Carryall_cbr'; this setFace 'WhiteHead_12'; this addGoggles 'G_Shades_Black'; this additem 'FirstAidKit'; this additem 'FirstAidKit'; this additem 'itemradio'; this additem 'itemgps'; this additem 'itemmap'; this additem 'itemcompass'; this additem 'binocular'; Share this post Link to post Share on other sites
saltatormortis 12 Posted March 22, 2014 a little hint try to wear something before you put ammo in your pocket.. arma has a gear based inventory system to add multiple mags you can simply this addMagazines ["name", count]; Share this post Link to post Share on other sites
fight9 14 Posted March 22, 2014 addMagazine has been adding double lately for me. Huge pain in the ass with what I have been working on. Share this post Link to post Share on other sites
Flamewave 10 Posted March 22, 2014 Pretty sure you'll need to add the uniform, vest and backpack before adding magazines. removeallweapons this; removeallassigneditems this; removeuniform this; removevest this; removebackpack this; this addHeadgear 'H_Booniehat_mcamo'; this addVest 'V_TacVest_khk'; this addUniform 'U_B_CombatUniform_mcam'; this addBackPack 'B_Carryall_cbr'; this setFace 'WhiteHead_12'; this addGoggles 'G_Shades_Black'; this addWeapon 'arifle_MXM_SOS_pointer_F'; this addMagazine '30Rnd_65x39_caseless_mag'; this addMagazine '30Rnd_65x39_caseless_mag'; this addMagazine '30Rnd_65x39_caseless_mag'; this addMagazine '30Rnd_65x39_caseless_mag'; this addMagazine '30Rnd_65x39_caseless_mag'; this addPrimaryWeaponItem 'optic_DMS'; this addPrimaryWeaponItem 'acc_pointer_IR'; this additem 'FirstAidKit'; this additem 'FirstAidKit'; this additem 'itemradio'; this additem 'itemgps'; this additem 'itemmap'; this additem 'itemcompass'; this additem 'binocular'; Share this post Link to post Share on other sites
fusion13 11 Posted March 22, 2014 wouldn't it HAVE to be this addMagazine ["30Rnd_65x39_caseless_mag", 5]; Share this post Link to post Share on other sites
tryteyker 28 Posted March 22, 2014 You need to add storage space (ie vests, backpacks) before you add ammunition. Use addMagazines before adding the weapon, otherwise it'll not be loaded when you start the mission. Share this post Link to post Share on other sites
Waffle_SS 11 Posted March 22, 2014 wouldn't it HAVE to be this addMagazine ["30Rnd_65x39_caseless_mag", 5]; If you want 5 rounds in a magazine, then yes... Share this post Link to post Share on other sites
fusion13 11 Posted March 22, 2014 No no no that is player setAmmo [handgunWeapon player, 10]; What that dose is it will add 5 Mags of that type. Not 5 rounds.... :dancehead: Share this post Link to post Share on other sites
tryteyker 28 Posted March 22, 2014 Waffle is actually right. addMagazine array gives you a single magazine with said ammo count. addMagazine gives you a full mag, but only one. addMagazines gives you a specified amount of full magazines. Share this post Link to post Share on other sites
fusion13 11 Posted March 22, 2014 Since when I have always used that Share this post Link to post Share on other sites
tryteyker 28 Posted March 22, 2014 It's been like that since Operation Arrowhead. What you used in ArmA 3 is probably addMagazines Share this post Link to post Share on other sites
zachgibson22 3 Posted March 22, 2014 awesome guys thanks! What I actually generally do do add more magazines is this. (unitBackpack this) addMagazineCargo ["9Rnd_45ACP_Mag",5]; Share this post Link to post Share on other sites