I am having a seemingly random issue where I place certain items in the bag and they are lost from the bag and my inventory. Two specific items are the Staff of Indarys and the Shield of insulation. I tried emptying the bag. disabling the bag of holding, copying the downloaded files back to the Data directory, loading the game while the bag is disabled, then saving, quitting, enabling the bag, reloading the bag and using the "startquest bohgive" command to get the bag again but it made no difference. Do you have any suggestions?
Wait, do you mean that in the standard version available here a chest manifests in front of the player without these changes? If so, would you be willing to upload a fixed version of this mod? Thank you!
Edit: Also, would there theoretically be a way to get rid of the "you cannot equip this item" message through a work-around or script?
to install just delete the old ESP file then place this new ESP in the Data Folder, OR if you are already using the Bag, Maybe follow the Upgrading Steps too just incase
Hi there, first of all, I want to point out that I am playing using the “Last Seed” mod pack and this mod works perfectly with it I used MO2 to install this mod and I invite everyone to do so as well, no need to put anything inside the Data folder, you just need to download the original mod from the Files tab and change the old .ESP file with the new one uploaded by TwistedLemonade.
Moving on to the “thanks”, thank you Venomes for the changes you wrote in your message above and thank you TwistedLemonade for the updated file you uploaded to Google Drive, I confirm that your additional changes made with your phone using remote desktop (lol) really work, that message doesn't appear anymore!
Ok, so I did have an issue with this mod, which I have had in the past but thought was just my system. Sometimes the menu freezes and I can't get out. This happened recently which was the first such *silent crash* so much that I ended up getting Blue Screened for my PC. IDK if others had this issue but I have removed it now.
Actually this mod can't cause such a crash. It just creates a container in an new cell, and an miscitem with script that allows you to access this container by reference Freezing in the menu occurs because you put too many items in this container. This is a problem of any container in oblivion or skyrim, the mod has nothing to do with it
scn BoHScript Short OpenBag Short Button Short Choice Begin OnActivate if IsActionRef Player if GetStageDone BoHQuest 10 == 1 MessageBox "What would you like to do?" "Open", "Pickup", "Cancel" Set Choice to 1 else Activate SetStage BoHQuest 10 endif endif End Begin OnEquip Player set OpenBag to 1 BoHStorageRef.MoveTo Player BoHStorageRef.Activate Player SetQuestObject BoH 1 End Begin GameMode if OpenBag == 1 set OpenBag to 0 if BoHQI == 0 SetQuestObject BoH 0 endif endif if Choice == 1 Set Button to GetButtonPressed if Button > -1 Set Choice to 0 if Button == 0 BoHStorageRef.MoveTo Player BoHStorageRef.Activate Player Return elseif Button == 1 Activate endif endif endif if BoHStorageRef.GetInCell BoHZone == 0 BoHStorageRef.PositionCell 0 0 0 0 BoHZone endif End Begin MenuMode 1002 if OpenBag == 1 if BoHQI == 0 SetQuestObject BoH 0 endif set OpenBag to 0 Message " " Message " " Player.EquipItem BoH endif End
It shouldn't. As I understand it, though I could be wrong, it simply links the Bag of Holding to a chest somewhere hidden like a merchant's inventory. That's why it has the same issues as normal storage items and no weight on you.
168 comments
BoHStorageRef.MoveTo Player
- this need to be changed toBoHStorageRef.MoveTo Player 0 0 -100
- so that the summoned container is undergroundSyntax
[Object].MoveTo MarkerID:ref OffsetX:float OffsetY:float OffsetZ:float
Edit: Also, would there theoretically be a way to get rid of the "you cannot equip this item" message through a work-around or script?
Heres the Fixed ESP File with the Changes Above, also added workaround for the "You cannot equip this Item" message Let me know if it works since i did this through my phone using remote desktop
to install just delete the old ESP file then place this new ESP in the Data Folder,
OR if you are already using the Bag, Maybe follow the Upgrading Steps too just incase
I used MO2 to install this mod and I invite everyone to do so as well, no need to put anything inside the Data folder, you just need to download the original mod from the Files tab and change the old .ESP file with the new one uploaded by TwistedLemonade.
Moving on to the “thanks”, thank you Venomes for the changes you wrote in your message above and thank you TwistedLemonade for the updated file you uploaded to Google Drive, I confirm that your additional changes made with your phone using remote desktop (lol) really work, that message doesn't appear anymore!
Freezing in the menu occurs because you put too many items in this container. This is a problem of any container in oblivion or skyrim, the mod has nothing to do with it
scn BoHScript
Short OpenBag
Short Button
Short Choice
Begin OnActivate
if IsActionRef Player
if GetStageDone BoHQuest 10 == 1
MessageBox "What would you like to do?" "Open", "Pickup", "Cancel"
Set Choice to 1
else
Activate
SetStage BoHQuest 10
endif
endif
End
Begin OnEquip Player
set OpenBag to 1
BoHStorageRef.MoveTo Player
BoHStorageRef.Activate Player
SetQuestObject BoH 1
End
Begin GameMode
if OpenBag == 1
set OpenBag to 0
if BoHQI == 0
SetQuestObject BoH 0
endif
endif
if Choice == 1
Set Button to GetButtonPressed
if Button > -1
Set Choice to 0
if Button == 0
BoHStorageRef.MoveTo Player
BoHStorageRef.Activate Player
Return
elseif Button == 1
Activate
endif
endif
endif
if BoHStorageRef.GetInCell BoHZone == 0
BoHStorageRef.PositionCell 0 0 0 0 BoHZone
endif
End
Begin MenuMode 1002
if OpenBag == 1
if BoHQI == 0
SetQuestObject BoH 0
endif
set OpenBag to 0
Message " "
Message " "
Player.EquipItem BoH
endif
End
Hint #2
Hint #3
Hint #4
Hint #5