Log in

View Full Version : Spawn NPCs with no weapons


superemu
07-16-2016, 11:24 PM
I added two new npcs, but when they spawn they have a random weapon or no weapon in their hands. How can I make sure that they have no weapons in their hands when they spawn?

atrayas
07-17-2016, 12:37 AM
if they have loot you need to check there loot tables and ensure they cant equip loot. Another easy method is to use

plugin::SetWeapons(PrimaryModel, SecondaryModel, EnableRemoving? );

superemu
07-18-2016, 12:20 PM
Thank you!