jamal 10 Posted July 8, 2010 Hello- I have recently purchased Arrowhead and I am wondering can anyone help me to learn how to import weapons into the editor. Is there a way to customize each soldier to carry any weapon you wan to give him? This game has a large weapon selection but as far as I know you can only use these weapons in the armory. There has to be a way to import these weapons in the editor when creating my own campaigns. I would appreciate anyone’s kind assistance in walking me through this in step by step in detail if it can be done. Best Regards, Jamal Share this post Link to post Share on other sites
STALKERGB 6 Posted July 13, 2010 (edited) Hey man, welcome to the forums :) The weapons in the armoury are available in the editor but many of them can only be found in weapons boxes (under empty/ammo/US weapons etc etc). It is possible to give any unit you place a particular weapon although I'm not an expert on how to do this, IIRC you need to add some code to the "init" box for the unit. I believe you have to remove all weapons by putting: removeallweapons this; (or something similar, maybe someone with more knowledge can help there?) and then add the weapon and ammo you want with "addweapon" and "addmagazine". So it should end up something like: removeallweapons this; addweapon "m249_EP1"; addmagazine "200Rnd_556x45_M249"; or at least something like that. You will need to know the classname of each weapon (often a bit different to its actual name), i think there is a thread round here somewhere that has them listed. Like I said I'm definately no expert on it so hopefully someone who knows what they are on about will reply soon but that should be the general idea of the steps. Edited July 13, 2010 by STALKERGB Share this post Link to post Share on other sites
kylania 568 Posted July 13, 2010 Just remember to add the magazine first, or else you'll start out unloaded. :) Share this post Link to post Share on other sites
[frl]myke 14 Posted July 13, 2010 removeallweapons this;this addmagazine "200Rnd_556x45_M249"; this addweapon "m249_EP1"; Share this post Link to post Share on other sites