LostData751 Posted September 26, 2020 Posted September 26, 2020 I have been looking for mods or information that point to allowing the player to sleep in any owned bed, or while trespassing. I also looked in the game setting values if there was anything that could help but the only thing I found is being able to change the "message" when trying to sleep on owned beds. Is there anyone that knows if it's even possible to achieve this? I know Setting Ownership of the beds to the player immediately allow sleeping, but is there a way to just bypass this?
fejeena Posted September 26, 2020 Posted September 26, 2020 Simple answer: no If it is not your bed the game engine does not allow you to use the bed. I don't think there is a script that can be changed (disable the owner check) You can use the console "set Ownership" or create and add a "Set Ownership" spell to the player. EDIT: Wait, you found ... only thing I found is being able to change the "message" when trying to sleep on owned beds. Where? A script? Then there should also be the owner check.
LostData751 Posted September 27, 2020 Author Posted September 27, 2020 19 hours ago, fejeena said: Wait, you found ... only thing I found is being able to change the "message" when trying to sleep on owned beds. Where? A script? Then there should also be the owner check. Not a script, a Game Setting with a string value which is the message "You cannot sleep in an owned bed.", the game setting is sNoSleepInOwnedBed, only has the string, no script.
LostData751 Posted October 1, 2020 Author Posted October 1, 2020 So, again the only way to sleep in any bed is to simply SetOwnership to the player, right? Can I just do this through an ESP and change all Beds and Bedrolls to be player owned? (Probably a bad idea, there's hundreds of beds and bedrolls placed in cells which all need to be changed) Making a spell the easiest way? there aren't any conflicts with NPCs and any bed being player owned, or is there?
mma75online Posted October 1, 2020 Posted October 1, 2020 I think the better idea to use any of those portable beds and tents mod .. so u can carry your bed with U & use it any place u like there is many of those mod on nexusmods, check some of those links https://www.nexusmods.com/oblivion/mods/8104 https://www.nexusmods.com/oblivion/mods/28748 https://www.nexusmods.com/oblivion/mods/1805 https://www.nexusmods.com/oblivion/mods/5684 https://www.nexusmods.com/oblivion/mods/24649 https://www.nexusmods.com/oblivion/mods/33787 https://www.nexusmods.com/oblivion/mods/1859 and there is many other stuff like that just use word ( portable ) in nexusmods search & get what u like
fejeena Posted October 1, 2020 Posted October 1, 2020 A tent in a room is a little weird. But the portable bedroll is good. -it's not as big as a bed -You should find a place in every room -And you can also place the bedroll roll on a bed ----------------- But what about he game setting you mentioned? SNoSleepInOwnedBed Have you tried it ? Add it in a esp ( you can use one you have ) and set it to 0 -------------------- If you create a spell: Yes some "good" NPCs does not sleep in beds which do not belong to them. And you have to change every bed you want to use. So if you cast a spell or use the console does not make a difference. I think the console is the better option. But best the game stetting SNoSleepInOwnedBed works. No owner changes, no NPC problems.
LostData751 Posted October 1, 2020 Author Posted October 1, 2020 1 hour ago, fejeena said: But what about he game setting you mentioned? SNoSleepInOwnedBed Have you tried it ? Add it in a esp ( you can use one you have ) and set it to 0 It's not a boolean value, it's a string as a "setting" that shows the message when you try to sleep on an owned bed, If I change the setting it will have the message of "You cannot sleep to an owned bed" to any message I want, it will NOT let me sleep in any bed.
fejeena Posted October 2, 2020 Posted October 2, 2020 Yes I just finished to install my Oblivion again and check it. (My computer was broken some weeks ago, after repairing and Windows new installation I finally installed Oblivion again ) Then use the console. With a spell I am not sure if a bed can be a target for touch and target spells.
LostData751 Posted March 20, 2023 Author Posted March 20, 2023 (edited) Just to randomly necro this post. I would like to say I have been working on a quest script to be able to sleep on just about any bed. For context, the script bellow 'runs' when I press my activate key 'E', at least for my current hotkey to activate: 'E'. Tapping while looking at floors, walls or chests, beds & floors will have it output the printc text. However, I can't seem to have either a SetOwner or SetOwnership script line to run at all, the moment I add it, the script simply stops working. scn zSleepAnyBedQuestScript float fQuestDelayTime float ztimer float Pchange float Bchange ref Bed ref Cell ref Owner ref pz Begin Gamemode set fQuestDelayTime to 0.001 set pz to player set Pchange to 0 set Bchange to 0 if IsKeyPressed2 18 set Bed to GetCrosshairRef set Owner to Bed.GetOwner printc "%n" Owner set Cell to Bed.GetParentCell printc "%n" Cell if IsCellPublic Cell == 0 printc "Cell: %n Not Public" Cell set Pchange to 1 SetCellIsPublic Cell 1 printc "Changed to Public" else printc "Cell already Public" set Pchange to 0 endif if Owner != pz printc "Player does not own: %n, changing owner" Bed ;Script works until trying to change Ownership Bed.SetOwner pz else set Bchange to 0 endif endif End Anybody that can help have more insight on why the Ownership script line just seems to disable the mod altogether? SleepAB.esp Edited March 20, 2023 by LostData751
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now