ТРЕБУЕТ ПРОВЕРКИ
iNumberCreatures - количество существ которые могут появиться когда отдых прерван.
Значение по умолчанию: 1
Код из OpenMW:
if resting in an exterior cell and the region has a sleep creature leveled list:
x = roll hoursRested
y = fSleepRandMod * hoursRested
if x < y:
interruptAtHoursRemaining = int(fSleepRestMod * hoursRested)
interruptingCreatures = max(1, roll iNumberCreatures)
sleep will only last (hoursRested - interruptAtHoursRemaining) hours
unless interruptAtHoursRemaining == 0, then no interruption occurs # contains bug
sleep will be interrupted with 1 creature from the region leveled list # contains bug