Lup 10 Posted March 18, 2012 Hello all again! How i can transfer guns from Pool array in Briefing?? (I do company) addweaponPool and addmagazinePool dont work... I can transfer guns from Pool in ammo box (putweaponPool AmmoCrate), but no in briefing.. Share this post Link to post Share on other sites
ww2weasel 10 Posted March 24, 2012 (edited) When you say you want to transfer Weapon/Magazines from briefing? Are you trying to arm yourself with different weapons; while in the briefing. - or do you mean you want to carry over Weapon types/Magazines from the breifing into the mission? Edited March 24, 2012 by WW2Weasel Share this post Link to post Share on other sites
Lup 10 Posted March 27, 2012 Yes! Need transfer weapons and magazines into briefing to ammo box Share this post Link to post Share on other sites
nikiller 18 Posted March 28, 2012 hi, Yes! Need transfer weapons and magazines into briefing to ammo box Here's link to set weapons available to players during the briefing: http://community.bistudio.com/wiki/description.ext#weapons Here's link to set magazines available to players during the briefing: http://community.bistudio.com/wiki/description.ext#magazines Here's an example of description.ext to set 1 AK and 10 AK mags available to players during the briefing: description.ext class Weapons { class AK74 { count = 1; }; }; class Magazines { class AK74 { count = 10; }; }; cya. Nikiller. Share this post Link to post Share on other sites
Lup 10 Posted March 29, 2012 Here's link to set weapons available to players during the briefing: http://community.bistudio.com/wiki/description.ext#weapons Here's link to set magazines available to players during the briefing: http://community.bistudio.com/wiki/description.ext#magazines Thanks, but i know this... Need transfer weapons and magazines from briefing in ammo box after start... And how i can use commands: 1. addweaponPool 2. addmagazinePool 3. putWeaponPool 4. queryMagazinePool 5. queryWeaponPool 6. fillWeaponsFromPool Do example pls, i dont understand... Share this post Link to post Share on other sites
ww2weasel 10 Posted March 30, 2012 I think I know what you're asking - create a script add whatever else you need for weapons & mags - below is weapon and Mag example: Vehicle1 addMagazineCargo ["M16",10] Vehicle1 addWeaponCargo ["M16",10] exit If you want to tweak the amount of existing Cargo use these options in the above example as well. clearMagazineCargo Vehicle1 to clear Magazines from Cargo clearWeaponCargo Vehicle1 to clear weapons from Cargo Vehicle1 setAmmoCargo 0 to set percentage of cargo 0=0 , 1=100% Defines how much percent is in predefined cargo. Here to review opflash commands regarding Ammo/weapons: http://www.ofpec.com/COMREF/index.php?action=list&game=OFP&func=weapons Share this post Link to post Share on other sites
rellikki 7 Posted March 30, 2012 Hello all again!How i can transfer guns from Pool array in Briefing?? (I do company) addweaponPool and addmagazinePool dont work... I can transfer guns from Pool in ammo box (putweaponPool AmmoCrate), but no in briefing.. Are you doing a single mission or a campaign mission? The weapon pool commands only work in campaigns, so that's mot likely the reason why it doesn't work for you, even though you seemed to be doing everything right. Share this post Link to post Share on other sites
foxlauncher 10 Posted March 30, 2012 Hey, pro, ohayou to all. Campaign. I need realization of weapon pool. And shifting surplus into ammo box after mission start. No description.ext. No addweaponcargo. Use exit.sqs and init.sqs. Wakarimas-ka? Share this post Link to post Share on other sites