ViV 10 Posted May 23, 2010 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
Takko 10 Posted May 23, 2010 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
ViV 10 Posted May 23, 2010 Oh thanks.. Damn "" forgot to put those: D Share this post Link to post Share on other sites
zigzag 0 Posted May 23, 2010 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
Militant1006 11 Posted May 23, 2010 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
Militant1006 11 Posted May 24, 2010 :pet11:No problem! Share this post Link to post Share on other sites