More elegant sleeping NOM

Post » Tue Feb 07, 2017 2:20 pm

Necessities of Morrowind is a marvelous mod, but it also has it's flaws IMO. For example: every time you activate a bed to sleep, it first pops up a menu which makes you alter your eating and drinking schedule. I find this pretty anoying and therefore I'm wondering if there's a patch somewhere that changes the behaviour of beds back to vanilla (with maybe an alternative method to change your schedule)?

User avatar
Ice Fire
 
Posts: 3394
Joined: Fri Nov 16, 2007 3:27 am

Post » Tue Feb 07, 2017 2:52 pm

change the lines in script Bed_Standard e.g.
from
if ( state == 0 )
if ( OnActivate )
if ( NoM_config_done == 1 )
set button to -1
set state to 10
messagebox "What do you want to do?" "Sleep in this bed" "Change your eating and drinking schedule" "- Nothing -"
else
ShowRestMenu
endif
endif
return
to
if ( state == 0 )
if ( OnActivate )
if (GetPCSneaking )
if ( NoM_config_done == 1 )
set button to -1
set state to 10
messagebox "What do you want to do?" "Sleep in this bed" "Change your eating and drinking schedule" "- Nothing -"
return
endif
endif
ShowRestMenu
endif
return
this way the messagebox should appear only if sneaking
User avatar
carla
 
Posts: 3345
Joined: Wed Aug 23, 2006 8:36 am

Post » Wed Feb 08, 2017 4:46 am

Hmm, that might be an even better idea. Thanks for the suggestion ;)

User avatar
Lindsay Dunn
 
Posts: 3247
Joined: Sun Sep 10, 2006 9:34 am


Return to III - Morrowind