Page 1 of 1

More elegant sleeping NOM

PostPosted: Tue Feb 07, 2017 2:20 pm
by Ice Fire

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)?


More elegant sleeping NOM

PostPosted: Tue Feb 07, 2017 2:52 pm
by carla
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

More elegant sleeping NOM

PostPosted: Wed Feb 08, 2017 4:46 am
by Lindsay Dunn

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