123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- # bed2
- if $args[0] = '':
- gs 'stat'
- cla
- if $clothingworntype ! 'nude':
- '<center><img src="images/pics/bed.jpg"></center>'
- else
- '<center><img src="images/pics/son.jpg"></center>'
- end
- dynamic $budilnikOn
- if mop ! 1:'<b><font color="red">You need to wash off your makeup before going to bed.</font></b>'
- if son > 80:
- 'You are not tired.'
- else
- act 'Undress and go to sleep':
- if disable_autosave = 0:
- if StoryLine = 0:
- savegame 'autosave.sav'
- else
- savegame 'autosave_alt.sav'
- end
- end
- gs 'clothing', 'strip'
- gt 'bed2', 'sleep'
- end
- end
- act 'Options':dynamic $sopts
- act 'Get out of bed':gt $locM, $metkaM
- end
- if $args[0] = 'sleep':
- cls
- '<center><img src="images/pics/son.jpg"></center>'
- hapri = 0
- InSleep = 1
- cloth_vid = 0
- if analplugIN = 1 and bedanal = 0:analplugIN = 0 & 'Before going to bed you remove your butt plug.'
- if vibratorIN = 1 and bedvibrator = 0:vibratorIN = 0 & 'Before going to bed you remove your vibrator'
- if mop > 1:mop = 0 & vidageday = vidageday - 1 & 'Makeup smears your face, you think that it looks bad sleeping in makeup, and your skin will age faster from this.'
- if fat > 5 and stringimplant = 1:silicone += 1 & fat -= 5
- wait 450
- *clr
- gs 'dreams', 'start'
- :loopson
- minut += 1
- stime += 1
- health += 5
- if vibratorIn = 1:
- vtime += 1
- if vtime >= 5:
- horny +=1
- vtime = 0
- end
- if horny = 100:
- *clr
- cla
- horny = 0
- orgasm += 1
- minut += 5
- '<center><img src="images/pic/o_face.jpg"></center>'
- 'You abruptly wake up in the throes of an orgasm.'
- act 'Go back to sleep':
- *clr
- cla
- gt 'bed2', 'sleep'
- end
- act 'Give up trying to sleep':
- $waketext = 'Maybe trying to sleep with a vibrator in your pussy wasn''t such a good idea.'
- gt 'bed2', 'wake'
- end
- end
- end
- if stime = 60:
- stime = 0
- son += 15
- gs 'stat'
- end
-
- alarm_now = hour * 60 + minut
- alarm_time = timer * 60 + timerM
- alarm_set = alarm_time - rand(1,5)
- if budilnikOn = 1 and alarm_now = alarm_time:
- manna -= 10
- $waketext = 'Your alarm goes off.'
- gs 'bed2', 'wake'
- elseif son >= 100 and budilnikOn = 1 and alarm_now >= alarm_set:
- $waketext = 'You wake up just before your alarm goes off.'
- gs 'bed2', 'wake'
- elseif son > 100 and budilnikOn = 0:
- $waketext = 'You wake up, no longer tired.'
- gs 'bed2', 'wake'
- else
- jump 'loopson'
- end
- end
- if $args[0] = 'wake':
- '<<$waketext>>'
- gs 'stat'
-
- if daystart < 10 and StoryLine = 0:'The first thing you think as you wake up is, "Damn! It''s is not a dream, I really am a woman now."'
- if daystart >= 10 and daystart < 30 and StoryLine = 0:'Looking at your female body, you are still a little surprised it''s actually you.'
- if kanikuli = 0 and SchoolAtestat = 0 and week < 6 and hour >= 4 and hour < 9:
- act 'Get up out of bed and get dressed for school (0:15)':
- if schtype = 0:schtype = 6
- if schoolH[schtype] = 0:schtype = 6
- gs 'clothing', 'wear', 'school', schtype
- minut += 15
- dynamic $wakepar
- end
- end
- act 'Get out of bed and get dressed (0:15)':
- gs 'clothing', 'wear_last_worn'
- minut += 15
- dynamic $wakepar
- end
- act 'Get out of bed (0:10)':
- minut += 10
- dynamic $wakepar
- end
- end
- --- bed2 ---------------------------------
|