Jump to content
Sign in to follow this  
Joe98

How to start with only 1 round in each magazine

Recommended Posts

For those who follow "The Great War"  Youtube channel, you will be aware we are up to week 61 of The Great War, 24th September 1915.

 

I am trying to recreate a Great War scenario.

 

I wish that each magazine of a rifle has only 1 round. That means after firing,  a man has to reload - thereby representing using a bolt action rifle.

 

There is a command  "player setAmmo [currentWeapon player, 1];"   except that it only applies to the first magazine.  The other magazines have their usual number of rounds.

 

How can I gave a man magazines that only have one round each?

 

.

 

 

 

 

 

 

Share this post


Link to post
Share on other sites

Thank you that works perfectly!

 

For the other viewers out there:

 

 

The classic command gives six magazines each of 30 rounds

{this addMagazine "30Rnd_556x45_Stanag"} forEach [1,2,3,4,5,6];

 

 

This command gives 6 magazines each of 15 rounds

{this addmagazine ["30Rnd_556x45_Stanag", 15]} forEach [1,2,3,4,5,6];

 

 

This command gives 6 magazines each of 1 round

{this addmagazine ["30Rnd_556x45_Stanag", 1]} forEach [1,2,3,4,5,6];

 

 

Share this post


Link to post
Share on other sites

for "_i" from 1 to 6 do {

this addmagazine ["30Rnd_556x45_Stanag", 1];

};

Share this post


Link to post
Share on other sites

Bump for the nearby post

Share this post


Link to post
Share on other sites
Guest

Why dont you simply create your own weapon ? :)

It's not that difficult. And you can get the satisfying animation of pulling one bullet in the chamber

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  

×