1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- # bedPar
- gs 'stat'
- if nude = 0:'<center><img src="images/pics/bed.jpg"></center>'
- if nude = 1:'<center><img src="images/pics/son.jpg"></center>'
- 'You lie on the bed. Clock wound <<timer>> hours <<timerM>> minutes.'
- act 'Set Alarm Clock':gt 'budilnik', 'start'
- !!if son < 10:
- act 'Undress and go to bed':
- if disable_autosave = 0:
- if StoryLine = 0:
- savegame 'autosave.sav'
- else
- savegame 'autosave_alt.sav'
- end
- end
- cls
- health += 5
- hapri = 0
- InSleep = 1
- :loopson
- minut += 1
- stime += 1
- if stime = 60:stime = 0 & son += 3
- clr
- cls
- gs 'stat'
- '<center><img src="images/pics/son.jpg"></center>'
- if analplugIN = 1:analplugIN = 0 & 'Before going to bed you remove your butt plug.'
- if vibratorIN = 1:vibratorIN = 0 & 'Before going to bed you remove your vibrator'
- if mop > 1:mop = 0 & vidageday = vidageday - 1 & 'Makeup smeared on the face, you think, that looks bad for sleeping with makeup, skin aging faster from this.'
- 'You sleep and you dream about nothing.'
- if hour = timer and minut = timerM:
- manna -= 10
- 'Alarm goes off'
- act 'Get out of bed and get dressed (0:15)':
- cla
- !!numdress = odedosna
- InSleep = 0
- minut += 15
- tanga = 1
- !!nude = 0
- gt $locM, $metkaM
- end
- exit
- end
- if son > 23 and dosip = 0:
- 'You woke up on, that slept'
- act 'Get out of bed and get dressed (0:15)':
- cla
- !!numdress = odedosna
- InSleep = 0
- minut += 15
- tanga = 1
- !!nude = 0
- gt $locM, $metkaM
- end
- exit
- end
- jump 'loopson'
- end
- !!end
- act 'Get out of bed':
- cla
- gt $locM, $metkaM
- end
- --- bedPar ---------------------------------
|