Jump to content
Sign in to follow this  
Lup

Pool

Recommended Posts

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

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

Share this post


Link to post
Share on other sites

Yes! Need transfer weapons and magazines into briefing to ammo box

Share this post


Link to post
Share on other sites

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

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

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×