I borrowed the blankets from Clearsky Hideout and attached a script to the basemodels of some beds. Currently only the commoner's single-user beds(say the guards barracks in Whiterun). It's not nice, blankets just appear out of thin air, but it works, see the attached screenshot. However I can't find a nice "on deactivate"-Event. So while I can get a loop-free snippet that places the blanket, I can't remove it, without looking every X seconds for "Still in use?". Looks like a receipe for desaster. Does anybody know a better way for this than RegisterforSingleupdate?
Scriptname furniture_autoBlanketSingle extends ObjectReference
{Usage for Single Beds}
Import MiscUtil; For debugging purposes
ObjectReference Property User Auto
; Reference to a Misc item created from Clearsky-hideout Blanket Nif
MiscObject Property sheetBaseObj auto
; The container for the actual Sheet
ObjectReference Property sheet=None auto
Event OnActivate(ObjectReference akActionRef)
if (akActionRef!=None)
PrintConsole(Self +" activated by " + akActionRef)
setup(akActionRef)
EndIf
EndEvent
function setup(ObjectReference akActionRef)
User=akActionRef
(User as Actor).UnequipAll() ; <-Don not sleep in Armor
sheet=Self.placeatme(sheetBaseObj)
float xR=Self.GetAngleX()
float yR=Self.GetAngleY()
float zR=Self.GetAngleZ()
; NIF-Model seems to be facing the opposite z-direction:
sheet.setAngle(xR,yR,zR+180.0)
float xP=Self.GetPositionX()
float yP=Self.GetPositionY()
float zP=Self.GetPositionZ()
; z-Coord Needs to be adujusted per Bed-Type, I guess:
sheet.setPosition(xP,yP,zP+40)
RegisterForSingleUpdate(1)
EndFunction
Event OnUpdate()
if(Self.IsFurnitureInUse())
PrintConsole(Self +" still in use by "+User)
RegisterForSingleUpdate(3)
else
PrintConsole(Self +" no longer in use")
cleanup()
endif
EndEvent
function cleanup()
UnregisterForUpdate()
User=None
PrintConsole("Trying to remove sheet")
if (sheet!=None)
PrintConsole("Yep, sheet is still there, so disable and delete it")
sheet.DisableNoWait()
sheet.delete()
sheet=None
EndIf
EndFunction
Event OnCellAttach()
PrintConsole(Self +" attached")
if(Self.IsFurnitureInUse() && User!=None)
OnActivate(User)
EndIf
EndEvent
event OnCellDetach()
PrintConsole(Self +" detached")
cleanup()
EndEvent