well... you first want to start out by removing all the weapons the guy carries by default by using:
removeAllWeapons this;then, you want to add a magazine for your new weapon:
(you need to add a magazine before the weapon, or else the guy will start with no ammo and have to reload straight away)
this addmagazine "M21"; Finally you can add the weapon:
this addweapon "M21"and then some more clips:
this addmagazine "M21";and we may as well give the guy his grenades back too:
this addmagazine "HandGrenade";so we end up with an init line that looks like this:
removeAllWeapons this; this addmagazine "M21"; this addweapon "M21"; this addmagazine "M21"; this addmagazine "M21"; this addmagazine "M21"; this addmagazine "HandGrenade"; this addmagazine "HandGrenade"; this addmagazine "HandGrenade";
a complete listing of all the BIS weapons and ammo can be found here:
http://www.ofpec.com/editors/browse.php?category=1_5&start=50:cheers: