Reaper5150 Posted July 13, 2021 Report Share Posted July 13, 2021 Super simple scripts I made to tape mags together increasing the amount of ammo for set mags. Based off right click functions! For use only on A2: Epoch 1.0.7 Credits go to @killerkiwi and @Mig for the edits using Stormz craft menu, I just edited the scripts to check for items needed to craft the mags. Download Here: https://github.com/DevReaper5150/TapedMags Install: Place the scripts in folder you keep your scripts. Remember to change the path in ClickActions/config.sqf Edited your ClickActions/config.sqf including the one provided. (Super simple) Two mags and one duct tape are required to craft taped mags and will remove the items needed from gear. Hope you enjoy :) WLF 1 Link to comment Share on other sites More sharing options...
Reaper5150 Posted July 31, 2021 Author Report Share Posted July 31, 2021 Just noticed I made a mistake in the Stanag.sqf here is the updated one. :) private ["_hasitems1","_hasitems2","_ressource1","_ressource2"]; _ressource1 = ["30Rnd_556x45_Stanag",2]; _ressource2 = ["equip_duct_tape",1]; _hasitems1 = [_ressource1] call player_checkItems; _hasitems2 = [_ressource2] call player_checkItems; if (call {_hasitems1} && {_hasitems2}) then { player removeMagazine "30Rnd_556x45_Stanag",2; player removeMagazine "equip_duct_tape"; player playActionNow "PutDown"; player addMagazine "60Rnd_556x45_Stanag_Taped"; }; WLF 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now