ADragonCalledGeorge Posted September 2, 2013 Share Posted September 2, 2013 So basically I have a couple of mod requests that would be awesome if someone could make them. The first one is for a "Store All" button on ANY container you find in Skyrim. It could even be a spell or power or something to make it easier. Like a spell that you cast on the container and it automatically stores all your stuff in it. Thing is, I am a major pack rat and have TONS of stuff. I want to minimize what I have in my inventory but it would take hours to do that. So a store all option would be epic. I looked up the automatic storage mods but that did not include ones for armor and weapons as well and I really need that since I cheated for my carry-weight so I have a HUGE amount of stuff. Thus, a 'store all' button would be greatly appreciated. Secondly, I would love to use a mod that allows time travel although it's really just a fast respawn. Basically, you are able to choose how many days you want to travel forward in time (it could only work forward) and it's basically an ultra-quick version of waiting. Normally, this would have no effect but it's useful for farming mines and dragon lairs and the dremora, for example. So thing is, I am crap at modding and cannot mod to save my life. So if anyone could make a mod that does these two things (or two separate mods for each of them) I would be overjoyed and very grateful. Many thanks in advance!! Link to comment Share on other sites More sharing options...
gizmologist Posted September 2, 2013 Share Posted September 2, 2013 (edited) How about this - a small object, like an "attunement sphere" or a special diamond or something, that you carry around with you. When you want to unload all your crap, you just put the object into a container, and close the container. Suddenly, you're naked... Give me a few minutes and I'll upload a mod. EDIT: http://skyrim.nexusmods.com/mods/41491/? Edited September 2, 2013 by gizmologist Link to comment Share on other sites More sharing options...
IsharaMeradin Posted September 2, 2013 Share Posted September 2, 2013 @gizmologistI had a similar idea but didn't like the idea of depositing equipped items. So thought to include a check against equipped items, but then didn't like the idea of depositing secondary weapon sets (i.e. melee weapons if carrying ranged and vice versa). So thought to build a list of any item as it was equipped and check against those but didn't like being stuck carrying any item that had ever been equipped. So yet another process pops in my head of rebuilding the equipped list whenever an item on that list is removed completely from the player. That might actually work. Overly complicated... probably... But hey, I'm sure the OP would prefer the nice and simple. :P Link to comment Share on other sites More sharing options...
gizmologist Posted September 2, 2013 Share Posted September 2, 2013 Yea, getting naked is a bit annoying, especially in Skyrim where something might freeze off. :laugh: How did you check against equipped items? I was thinking that favorite items might also be avoided ... if I could figure out how. Link to comment Share on other sites More sharing options...
IsharaMeradin Posted September 2, 2013 Share Posted September 2, 2013 Favorite items cannot be checked against... unless SKSE has done something in that department. IsEquipped In this case it would be a convoluted process... but in the case where I was using it... I was having items picked up by the player automatically be stored in a bag of holding. I would pass the item added to the player inventory thru a If !(akBaseItem.IsEquipped) check before tossing it into the bag of holding. That kept picked up items which had an existing equipped item from being stored. So for this case, one would need to use the OnItemAdded event on the player and build a list of items NOT equipped as they are added. Build another two lists of items using the OnObjectEquipped event to list items that have been equipped (One list is a master, the other list is a working list). When transferring to the designated container, transfer the list of not equipped items with a check against the working list of equipped items. Rebuild the working list of equipped items whenever an item on that list is completely removed from the player inventory. It is easy to rebuild if you assume that the once equipped item is still wanted if it is still present in the inventory, revert the working list, parse the master list and re-add to the working list any item still in player inventory. As I said, overly complicated and it would not work for an immediate dump of items in a mid-game scenario. Would work best from game start so that the form lists could build for the life of the game. Link to comment Share on other sites More sharing options...
ADragonCalledGeorge Posted September 2, 2013 Author Share Posted September 2, 2013 So basically I have a couple of mod requests that would be awesome if someone could make them. The first one is for a "Store All" button on ANY container you find in Skyrim. It could even be a spell or power or something to make it easier. Like a spell that you cast on the container and it automatically stores all your stuff in it. Thing is, I am a major pack rat and have TONS of stuff. I want to minimize what I have in my inventory but it would take hours to do that. So a store all option would be epic. I looked up the automatic storage mods but that did not include ones for armor and weapons as well and I really need that since I cheated for my carry-weight so I have a HUGE amount of stuff. Thus, a 'store all' button would be greatly appreciated. Secondly, I would love to use a mod that allows time travel although it's really just a fast respawn. Basically, you are able to choose how many days you want to travel forward in time (it could only work forward) and it's basically an ultra-quick version of waiting. Normally, this would have no effect but it's useful for farming mines and dragon lairs and the dremora, for example. So thing is, I am crap at modding and cannot mod to save my life. So if anyone could make a mod that does these two things (or two separate mods for each of them) I would be overjoyed and very grateful. Many thanks in advance!!Thank you ever so freaking much!!!! You have literally saved my game...apart from the naked part which I never considered, lol. Perhaps you could make an option that it excludes the armor you are wearing and the weapons you have equipped as well as your gold? That would be sheer genius! But the mod alone is epic and I downloaded it. I will install it, try it out, and endorse as soon as possible!!! :) Thanks a million for this brilliance!! You are a life-saver!! Link to comment Share on other sites More sharing options...
ADragonCalledGeorge Posted September 2, 2013 Author Share Posted September 2, 2013 @gizmologistI had a similar idea but didn't like the idea of depositing equipped items. So thought to include a check against equipped items, but then didn't like the idea of depositing secondary weapon sets (i.e. melee weapons if carrying ranged and vice versa). So thought to build a list of any item as it was equipped and check against those but didn't like being stuck carrying any item that had ever been equipped. So yet another process pops in my head of rebuilding the equipped list whenever an item on that list is removed completely from the player. That might actually work. Overly complicated... probably... But hey, I'm sure the OP would prefer the nice and simple. :tongue: I am not sure how that would work since I cannot mod to save my life! :) However, I have some sad news. I have installed it properly with the Nexus Mod Manager and made sure it is checked in the Skyrim Data file which it is. However, I typed it up into the game console code place and could not get the item code. I even copied it from your screen shot and could not get the code to work. It said that it was invalid or something. Real sorry about that as I appreciate the work you have done. Maybe I am doing something wrong? Link to comment Share on other sites More sharing options...
ADragonCalledGeorge Posted September 2, 2013 Author Share Posted September 2, 2013 Never mind! I got the mod to work since I was just using the wrong spelling. However, it caused my game to crash when I unloaded all my crap into one chest. However, that chest was from a mod so I will try again in a different place perhaps. Link to comment Share on other sites More sharing options...
ADragonCalledGeorge Posted September 2, 2013 Author Share Posted September 2, 2013 Maybe to avoid crashes you could have different stones for different things? Like one stone for armor, one for weapons, one for potions, and one for misc? And even further, one for two handed weapons, one for one-handed, etc? Or would that be too complicated? It's real cool though but I don't think my game can handle all my crap, hehe. I think that is why Bethesda did not include that option since they knew us hoarders would keep WAY to much crap and crash the game. I will try again though. Link to comment Share on other sites More sharing options...
ADragonCalledGeorge Posted September 2, 2013 Author Share Posted September 2, 2013 Yeah, my game right away crashes even though I finally went and bought Breezehome. I have been putting that off for ages (buying vanilla houses) since I have been using Pocket Empire Builder to make my own and other great, free house mods. I will try some other automatic storage mods though to minimize what i own bit by bit and then see if it works. Link to comment Share on other sites More sharing options...
Recommended Posts