ats011086 Posted August 6, 2021 Share Posted August 6, 2021 I'm planning to make a mod that changes how the sleep process works in Skyrim. To do so I want to edit the Sleep Menu that pops up when you click on any bed/bedroll asking how many hours do you want to sleep, but unfortunately I couldn't find the way to find it in the Creation Kit. It doesn't seem to work as a Message Box and there's no script in the bed/bedroll furniture objects, so I hope you could help me get access in that Sleep Menu and how to edit it as well. Link to comment Share on other sites More sharing options...
IsharaMeradin Posted August 7, 2021 Share Posted August 7, 2021 All I know is that like all other UI menus it is governed by a SWF file. How to edit those and which one it might be? No idea. Link to comment Share on other sites More sharing options...
DavideMitra Posted August 9, 2021 Share Posted August 9, 2021 Like IsharaMeradin said, it should be a SWF file Two weeks ago I tried to alter a SWF file, but without success.Some specific SWF Editing softwares require you to pay some money. A small number of them allow you a free trial with limited functionalities....That's not even the problem!The problem is: SWF files were developed to work with Adobe Flash technology...which is very obsolete at the present day. And, of course, you need Flash in order to view SFW files! In the internet, there's an old version of Flash that should work in 2021. In my case, it didn't.Even if that version will work on your pc, I'm warning you: your computer will become vulnerable against malware. Make sure to use a virtual machine instead. That's what I know about SWF files, which isn't that much.You should contact competent modders like the one who created SkyUI. I'm sure they will share with you a deeper knowledge. And - since these modders are the experts - maybe editing SWF files is easier than I think! Link to comment Share on other sites More sharing options...
NexusComa2 Posted August 9, 2021 Share Posted August 9, 2021 data\interface\sleepwaitmenu.swf Link to comment Share on other sites More sharing options...
Kevek53215 Posted August 12, 2021 Share Posted August 12, 2021 (edited) I'm planning to make a mod that changes how the sleep process works in Skyrim. To do so I want to edit the Sleep Menu that pops up when you click on any bed/bedroll asking how many hours do you want to sleep, but unfortunately I couldn't find the way to find it in the Creation Kit. It doesn't seem to work as a Message Box and there's no script in the bed/bedroll furniture objects, so I hope you could help me get access in that Sleep Menu and how to edit it as well. 1) Adobe Flash ( its Paid program... or just pirate it... idc )2) Papyrus You need FLA and AS Files FLA is Flash Work file, thats where You can edit animation and elements on Aniamtion AS is ActionScript file, thats where is Animation behavior You can communicate with SWF file by Papyrus with UI Functions That looks like this: UI.InvokeBool(HUD_MENU, WidgetRoot + ".setVisible", true ) To make Your UI element visible on Screenor for example: UI.InvokeInt( HUD_MENU, WidgetRoot + ".setSomeValue", SomeValue ) To change some value... But lets start with that... You need Adobe Flash... You need FLA and AS Files... get them first... Edited August 12, 2021 by Kevek53215 Link to comment Share on other sites More sharing options...
dylbill Posted August 13, 2021 Share Posted August 13, 2021 You can write and compile .swf files for free with Flash Develope. https://www.flashdevelop.org/ Also, the SkyUI team uploaded an unofficial source to skyrim menu's here: https://github.com/Mardoxx/skyrimui/tree/master/src Link to comment Share on other sites More sharing options...
NexusComa2 Posted August 13, 2021 Share Posted August 13, 2021 (edited) I'm planning to make a mod that changes how the sleep process works in Skyrim. To do so I want to edit the Sleep Menu that pops up when you click on any bed/bedroll asking how many hours do you want to sleep, but unfortunately I couldn't find the way to find it in the Creation Kit. It doesn't seem to work as a Message Box and there's no script in the bed/bedroll furniture objects, so I hope you could help me get access in that Sleep Menu and how to edit it as well. After looking around a bit and re-reading what you were asking for ... There are many mods that do this in many different ways. The one I use lets you sleep as long as you like ... even for months.But, they all let you pick how long you wish to sleep when you click on the bed roll. Just pick one ... Edited August 13, 2021 by NexusComa2 Link to comment Share on other sites More sharing options...
ServantOfSin Posted August 14, 2021 Share Posted August 14, 2021 Look up jpexs. The actionscript decompiler doesn't work on all skyrim UI files. PCode will always work if you have any experience with assembly. Link to comment Share on other sites More sharing options...
Recommended Posts