Created
December 27, 2015 17:51
-
-
Save headswe/e19393d20ff37451b5e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _badmag = ""; | |
| _newmag = ""; | |
| { | |
| if(!isplayer _x) then { | |
| _numOfMags = {tolower _x == tolower _badmag} count magazines _x; | |
| if(_numOfMags > 0) then { | |
| _x removeMagazines _badmag; | |
| _x addMagazine [_newmag,_numOfMags]; | |
| }; | |
| }; | |
| } foreach allunits; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment