Jump to content
Sign in to follow this  
ViV

How to add a sniperrifle?

Recommended Posts

Maybe is this a Noob question...

but how do I add a sniper rifle and serval of clips to my player unit?

Share this post


Link to post
Share on other sites

in the init chapter of the unit:

removeallweapons this; this addweapon "M24"; this addmagazine "30rnd_9x19_MP5"

Share this post


Link to post
Share on other sites

Oh thanks..

Damn "" forgot to put those: D

Share this post


Link to post
Share on other sites

add a magazine before adding the weapon so its loaded at start.

removeallweapons this; this addmagazine "30rnd_9x19_MP5"; this addweapon "M24"; this addmagazine "30rnd_9x19_MP5"

Share this post


Link to post
Share on other sites

to add several clips at once do this

{this addMagazine "5rnd_762x51_m24"} foreach [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];

that will give a soldier a full loadout of mags.:cool:

Share this post


Link to post
Share on other sites

Thanks guys :D!

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  

×