iAmInnocent Posted March 9, 2013 Share Posted March 9, 2013 How do I spawn a weapon added in from a mod I downloaded? Let's say I want to spawn the SVD, the weapon id is ff0013fe with load order 11 and index 18 Would it be, "player.additem 110013fe" or "player.additem 180013fe" ? Link to comment Share on other sites More sharing options...
AncientSion Posted March 9, 2013 Share Posted March 9, 2013 Are you serious ? Why not just open the console and try both IDs ? Link to comment Share on other sites More sharing options...
iAmInnocent Posted March 9, 2013 Author Share Posted March 9, 2013 I tried both and it still did not work. Link to comment Share on other sites More sharing options...
rickerhk Posted March 9, 2013 Share Posted March 9, 2013 If the item starts with ff then it was thrown on the ground or otherwise spawned. Objects you see in the world are just references to the actual base objects. You need the base ID of the item, not a reference.If you have NVSE you can get the base object of something in the world by clicking on it when in the console, and typing GBO <enter>If you have the item in your inventory, you can type:Player.inv <enter>and press page-up/page-down to look at the list of items in the player - they are all baseIDs. Link to comment Share on other sites More sharing options...
AncientSion Posted March 9, 2013 Share Posted March 9, 2013 I dont think that helps him. He wants the item to spawn, so i assume he does not hold it neither can he console-click on it ingame. Link to comment Share on other sites More sharing options...
iAmInnocent Posted March 9, 2013 Author Share Posted March 9, 2013 If the item starts with ff then it was thrown on the ground or otherwise spawned. Objects you see in the world are just references to the actual base objects. You need the base ID of the item, not a reference. If you have NVSE you can get the base object of something in the world by clicking on it when in the console, and typing GBO <enter> If you have the item in your inventory, you can type:Player.inv <enter>and press page-up/page-down to look at the list of items in the player - they are all baseIDs. Thanks, player.inv got me it. I dont think that helps him. He wants the item to spawn, so i assume he does not hold it neither can he console-click on it ingame. Yeah, I wasn't able to console-click it. Link to comment Share on other sites More sharing options...
Recommended Posts