bed2 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. # bed2
  2. if $args[0] = '':
  3. gs 'stat'
  4. cla
  5. if $clothingworntype ! 'nude':
  6. '<center><img src="images/pics/bed.jpg"></center>'
  7. else
  8. '<center><img src="images/pics/son.jpg"></center>'
  9. end
  10. dynamic $budilnikOn
  11. if mop ! 1:'<b><font color="red">You need to wash off your makeup before going to bed.</font></b>'
  12. if son > 80:
  13. 'You are not tired.'
  14. else
  15. act 'Undress and go to sleep':
  16. if disable_autosave = 0:
  17. if StoryLine = 0:
  18. savegame 'autosave.sav'
  19. else
  20. savegame 'autosave_alt.sav'
  21. end
  22. end
  23. gs 'clothing', 'strip'
  24. gt 'bed2', 'sleep'
  25. end
  26. end
  27. act 'Options':dynamic $sopts
  28. act 'Get out of bed':gt $locM, $metkaM
  29. end
  30. if $args[0] = 'sleep':
  31. cls
  32. '<center><img src="images/pics/son.jpg"></center>'
  33. hapri = 0
  34. InSleep = 1
  35. cloth_vid = 0
  36. if analplugIN = 1 and bedanal = 0:analplugIN = 0 & 'Before going to bed you remove your butt plug.'
  37. if vibratorIN = 1 and bedvibrator = 0:vibratorIN = 0 & 'Before going to bed you remove your vibrator'
  38. 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.'
  39. if fat > 5 and stringimplant = 1:silicone += 1 & fat -= 5
  40. wait 450
  41. *clr
  42. gs 'dreams', 'start'
  43. :loopson
  44. minut += 1
  45. stime += 1
  46. health += 5
  47. if vibratorIn = 1:
  48. vtime += 1
  49. if vtime >= 5:
  50. horny +=1
  51. vtime = 0
  52. end
  53. if horny = 100:
  54. *clr
  55. cla
  56. horny = 0
  57. orgasm += 1
  58. minut += 5
  59. '<center><img src="images/pic/o_face.jpg"></center>'
  60. 'You abruptly wake up in the throes of an orgasm.'
  61. act 'Go back to sleep':
  62. *clr
  63. cla
  64. gt 'bed2', 'sleep'
  65. end
  66. act 'Give up trying to sleep':
  67. $waketext = 'Maybe trying to sleep with a vibrator in your pussy wasn''t such a good idea.'
  68. gt 'bed2', 'wake'
  69. end
  70. end
  71. end
  72. if stime = 60:
  73. stime = 0
  74. son += 15
  75. gs 'stat'
  76. end
  77. alarm_now = hour * 60 + minut
  78. alarm_time = timer * 60 + timerM
  79. alarm_set = alarm_time - rand(1,5)
  80. if budilnikOn = 1 and alarm_now = alarm_time:
  81. manna -= 10
  82. $waketext = 'Your alarm goes off.'
  83. gs 'bed2', 'wake'
  84. elseif son >= 100 and budilnikOn = 1 and alarm_now >= alarm_set:
  85. $waketext = 'You wake up just before your alarm goes off.'
  86. gs 'bed2', 'wake'
  87. elseif son > 100 and budilnikOn = 0:
  88. $waketext = 'You wake up, no longer tired.'
  89. gs 'bed2', 'wake'
  90. else
  91. jump 'loopson'
  92. end
  93. end
  94. if $args[0] = 'wake':
  95. '<<$waketext>>'
  96. gs 'stat'
  97. 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."'
  98. if daystart >= 10 and daystart < 30 and StoryLine = 0:'Looking at your female body, you are still a little surprised it''s actually you.'
  99. if kanikuli = 0 and SchoolAtestat = 0 and week < 6 and hour >= 4 and hour < 9:
  100. act 'Get up out of bed and get dressed for school (0:15)':
  101. if schtype = 0:schtype = 6
  102. if schoolH[schtype] = 0:schtype = 6
  103. gs 'clothing', 'wear', 'school', schtype
  104. minut += 15
  105. dynamic $wakepar
  106. end
  107. end
  108. act 'Get out of bed and get dressed (0:15)':
  109. gs 'clothing', 'wear_last_worn'
  110. minut += 15
  111. dynamic $wakepar
  112. end
  113. act 'Get out of bed (0:10)':
  114. minut += 10
  115. dynamic $wakepar
  116. end
  117. end
  118. --- bed2 ---------------------------------