Joe98 91 Posted September 25, 2015 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
killzone_kid 1329 Posted September 25, 2015 You can start by reading about addMagazine command https://community.bistudio.com/wiki/addMagazine Share this post Link to post Share on other sites
Joe98 91 Posted September 26, 2015 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
KiloSwiss 16 Posted October 9, 2015 for "_i" from 1 to 6 do { this addmagazine ["30Rnd_556x45_Stanag", 1]; }; Share this post Link to post Share on other sites
Joe98 91 Posted February 3, 2016 Bump for the nearby post Share this post Link to post Share on other sites
Guest Posted February 3, 2016 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