luxwing0go Posted January 31, 2011 Share Posted January 31, 2011 Just a quick question: Can you add items from weapon/armor mods to your inventory with the player.additem code and, if so, where would I find the codes for the items (either in CS or elsewhere)? If it matters, I'm wanting to look through the fran's weapon and armor addon items. I've had the mod for a while but I haven't seen quite a few of the weapons and armor sets. I haven't seen this discussed anywhere. :O -LG Link to comment Share on other sites More sharing options...
WastelandAssassin Posted January 31, 2011 Share Posted January 31, 2011 yes, you can do this to find the codes, i think that you can use TES4Editjust run it on your load order, open the specific plugin that has the items that you want to add, and look for them in the list (it should be pretty organized, so it shouldn't be too hard to find) hope this helps :) Link to comment Share on other sites More sharing options...
David Brasher Posted January 31, 2011 Share Posted January 31, 2011 One tricky part is the first two digits. They correspond to the position in the load order which the mod with the item is in. And it is in hexadecimal, not in Arabic. So the 16th mod in your load order would be "0C" not "16." To find this number, you can look at your load order in Wrye Bash. So the code you type in would be:player.additem (Load order, XX) + (Base ID #, YYYYYY) (Quantity, Z) player.additem XXYYYYYY Z player.additem 00022BA8 1 Link to comment Share on other sites More sharing options...
LFact Posted January 31, 2011 Share Posted January 31, 2011 One tricky part is the first two digits. They correspond to the position in the load order which the mod with the item is in. And it is in hexadecimal, not in Arabic. So the 16th mod in your load order would be "0C" not "16." Isn't 16(decimal) -> 10(hexadecimal)? Link to comment Share on other sites More sharing options...
luxwing0go Posted January 31, 2011 Author Share Posted January 31, 2011 yes, you can do this to find the codes, i think that you can use TES4Editjust run it on your load order, open the specific plugin that has the items that you want to add, and look for them in the list (it should be pretty organized, so it shouldn't be too hard to find) hope this helps :) Thank you for answering my question! Just tried that and it works. Never used TES4Edit before, but looks like it will help out with a lot of other stuff too. @David Brasher : Thanks for the tip on the fist two hex codes. I had read about that somewhere, but dealing with Nights of the Nine (where the first two deal with special numbers assigned to the plugin). Since Frans is always on top, I don't think I should have to worry too much about them, but I will keep that in mind. Thanks again! Kudos for both of you! Link to comment Share on other sites More sharing options...
XizorZarthea Posted March 21, 2013 Share Posted March 21, 2013 Always read. Thanx 4 info. now i know ho to make oblivion more fun ;-} Link to comment Share on other sites More sharing options...
XizorZarthea Posted March 21, 2013 Share Posted March 21, 2013 yes, you can do this to find the codes, i think that you can use TES4Editjust run it on your load order, open the specific plugin that has the items that you want to add, and look for them in the list (it should be pretty organized, so it shouldn't be too hard to find) hope this helps http://www.thenexusforums.com/public/style_emoticons/dark/smile.gifThank you for answering my question! Just tried that and it works. Never used TES4Edit before, but looks like it will help out with a lot of other stuff too. @David Brasher : Thanks for the tip on the fist two hex codes. I had read about that somewhere, but dealing with Nights of the Nine (where the first two deal with special numbers assigned to the plugin). Since Frans is always on top, I don't think I should have to worry too much about them, but I will keep that in mind. Thanks again! Kudos for both of you!please make a youtube video of ho to use the above hint. i am completely lost!!! Link to comment Share on other sites More sharing options...
Recommended Posts