MacRae 12 Posted July 3, 2013 Im making a mission in arma 3 And i need the initionalisation script so that when you spawn in you have no items! i know its an easy script but i cant find out how to do it! Please help! Share this post Link to post Share on other sites
odyseus 19 Posted July 3, 2013 put this in the int of the unit. removeallweapons this this is for weapons only Share this post Link to post Share on other sites
kylania 568 Posted July 3, 2013 This will strip a player of all items, magazines and weapons: removeAllWeapons this; removeAllAssignedItems this; To entirely strip him, do this: removeAllWeapons this; removeAllAssignedItems this; removeBackpack this; removeHeadgear this; removeUniform this; removeVest this; Share this post Link to post Share on other sites
hawk_silk 49 Posted July 3, 2013 (edited) By no items I assume you mean no NVG,Map,Compass etc? Well... removeAllAssignedItems player; Or if you just mean having the player(s) spawn without weapons, then... Removeallweapons player; I'm afraid that if neither of those are what you require, then we need a bit more information on what it is you do want to achieve. Regards Hawk. Edit - Damn ninja'd twice! :D Edited July 3, 2013 by Hawk_Silk Share this post Link to post Share on other sites
odyseus 19 Posted July 3, 2013 This will strip a player of all items, magazines and weapons: removeAllWeapons this; removeAllAssignedItems this; To entirely strip him, do this: removeAllWeapons this; removeAllAssignedItems this; removeBackpack this; removeHeadgear this; removeUniform this; removeVest this; Hahaha i was faster than you Kylania. but you ve more content :D Share this post Link to post Share on other sites
MacRae 12 Posted July 3, 2013 Oh thankyou so much guys :D" Share this post Link to post Share on other sites