234_bed2 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. # bed2
  2. if $ARGS[0] = 'dosip':
  3. dosip = 1
  4. else
  5. dosip = 0
  6. end
  7. $wokeup = {
  8. if daystart < 10 and StoryLine = 0: 'My first thought was how you woke up, "Damn. This is not a dream, I do now baba."'
  9. if daystart >= 10 and daystart < 30 and StoryLine = 0: 'You sleepy little surprised popyalitsya its female body.'
  10. act 'Get out of bed and get dressed (0:15)':
  11. cla
  12. set InSleep = 0
  13. set numdress = odedosna
  14. set minut += 15
  15. set tanga = 1
  16. set nude = 0
  17. gt 'bed','fin'
  18. end
  19. act 'Get out of bed':
  20. cla
  21. InSleep = 0
  22. gt 'bed','fin'
  23. end
  24. act 'Try to sleep': gt 'bed2','dosip'
  25. }
  26. if numdress ! 0: set odedosna = numdress
  27. set nude = 1
  28. set numdress = 0
  29. '<center><img src="images\pics\son.jpg"></center>'
  30. if mop ! 1 and AutoMakeup = 1: set mop = 1 & 'Before going to bed you washed away your makeup.'
  31. if analplugIN = 1: set analplugIN = 0 & 'Before going to bed you took the butt plug off.'
  32. if vibratorIN = 1: set vibratorIN = 0 & 'Before going to bed you remove the vibrator.'
  33. !if vibratorIN = 1: set vibratorIN = 0 & 'Before going to bed you washed away your makeup.'
  34. if mop > 1: set mop = 0 & set vidageday -= 1 & 'Cosmetics smeared face, you think that looks bad for sleeping with makeup, skin ages faster from it.'
  35. !WD: moved health to sleep loop
  36. !set health += RAND(5,10)
  37. set hapri = 0
  38. InSleep = 1
  39. AEnema = 1
  40. HasWashed = 1
  41. set slep = RAND(0,3)
  42. if StoryLine = 1: slep = 0
  43. if slep = 0: set $slep = 'not dreaming'
  44. if slep = 1: set $slep = 'dream about what it is not clear images from the past'
  45. if slep = 2: set $slep = 'dreaming moon gazing at the world with his one bloody eye'
  46. if slep = 3: set $slep = 'dreaming that you are a man again'
  47. 'You sleep and you <<$slep>>.'
  48. :loop_sleep
  49. set minut += 5
  50. set stime += 5
  51. if stime > 20:
  52. set stime -= 20
  53. set son += 1
  54. !WD: health gain from sleep now dependent on length of sleep
  55. health += RAND(0,1)
  56. end
  57. gs 'stat'
  58. if hour = timer and minut >= timerM:
  59. set manna -= 10
  60. 'You slept. The alarm clock goes off.'
  61. dynamic $wokeup
  62. elseif son > 23 and dosip = 0:
  63. set manna -= 10
  64. 'You slept.'
  65. dynamic $wokeup
  66. elseif son > 47 and dosip = 1:
  67. set manna -= 10
  68. set dosip = 0
  69. set son -= 24
  70. 'You slept.'
  71. dynamic $wokeup
  72. else
  73. jump 'loop_sleep'
  74. end
  75. --- bed2 ---------------------------------