shulgakuh 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. # shulgakuh
  2. CLOSE ALL
  3. $metka = $ARGS[0]
  4. $loc = $CURLOC
  5. $metkaM = $ARGS[0]
  6. $locM = $CURLOC
  7. cls
  8. minut += 1
  9. gs'stat'
  10. gs'kit_din'
  11. '<center><b><font color = maroon>Kitchen</font></b></center>'
  12. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh.jpg"></center>'
  13. if hour >= 18 and hour < 21:
  14. if rand(1,100) < 10:
  15. 'In the kitchen, sitting at the table <<$serg_obr>> <a href="exec:gt ''Serge_kuh'',''kuh_buh''">Sergei</a> and drinking vodka.'
  16. else
  17. 'The kitchen prepares food <<$serg_obr>> <a href="exec:gt ''Serge_kuh''">Sergei</a>.'
  18. end
  19. end
  20. act 'Look in the fridge': dynamic $holodil
  21. dynamic $driwater
  22. act 'Leave the kitchen': gt'shulgahall'
  23. !Launch Event with gopotoy kitchen
  24. if RAND(0,100) <= 5 and GorSlut >= 3 and gangsexroom_count > 0 and week < 6 and hour >= 0 and hour < 3:
  25. dynamic $gang_sex_ev1
  26. end
  27. !===========!
  28. !FRIDGE!
  29. !-----------!
  30. !filling the refrigerator:
  31. !count-bottles of beer in a day
  32. if beer_day ! daystart: beer_count = 2
  33. !count-of glasses in a bottle of vodka
  34. if vodka_day ! daystart: vodka_count = 3
  35. !count-in soup plates in kostryule
  36. if sup_day ! daystart: sup_count = 2
  37. !open fridge:
  38. $holodil = {
  39. cls
  40. minut += 1
  41. gs'stat'
  42. if beer_count = 2:
  43. $r_beer = ' 2 beer bottles,'
  44. elseif beer_count = 1:
  45. $r_beer = ' 1 a bottle of beer,'
  46. else
  47. $r_beer = ''
  48. end
  49. if vodka_count = 3:
  50. $r_vodka = ' full bottle of vodka,'
  51. elseif vodka_count = 2:
  52. $r_vodka = ' half-empty bottle of vodka,'
  53. elseif vodka_count = 1:
  54. $r_vodka = ' a nearly empty bottle of vodka,'
  55. else
  56. $r_vodka = ''
  57. end
  58. if sup_count >= 1:
  59. $r_sup = ' a large pot of soup'
  60. else
  61. $r_sup = ''
  62. end
  63. if beer_count = 0 and vodka_count = 0 and sup_count = 0:$r_pusto = '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/holodpusto.jpg"></center><br><font color = red>empty shelves.</font>'
  64. if beer_count > 0 and vodka_count > 0 and sup_count > 0:$r_pusto = '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/holod'+rand(1,3)+'.jpg"></center>'
  65. 'You open the fridge and see:<<$r_vodka>><<$r_beer>><<$r_sup>><<$r_pusto>>'
  66. !drink beer
  67. if beer_count > 0:
  68. act 'Drink beer':
  69. cls
  70. minut += 5
  71. alko += 1
  72. cumspclnt = 2
  73. gs 'cum_cleanup'
  74. fbreath = 0
  75. beer_day = daystart
  76. beer_count -= 1
  77. gs'stat'
  78. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/beer'+rand(1,3)+'.jpg"></center>'
  79. 'You drank a bottle of beer'
  80. act 'Further': dynamic $holodil
  81. end
  82. end
  83. !drink vodka
  84. if vodka_count > 0:
  85. act 'Drink vodka':
  86. cls
  87. minut += 1
  88. alko +=2
  89. cumspclnt = 2
  90. gs 'cum_cleanup'
  91. fbreath = 0
  92. vodka_day = daystart
  93. vodka_count -= 1
  94. gs'stat'
  95. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/vodka'+rand(1,2)+'.jpg"></center>'
  96. 'You drank a glass of vodka'
  97. act 'Remove the bottle': dynamic $holodil
  98. act 'More zhahnut':
  99. if vodka_count = 0: '<font color = red>No more vodka</font><center><img src="images/zsoft/pod_ezd/shulgahome/kuh/vodka0.jpg"></center>'
  100. if vodka_count > 0:
  101. minut += 1
  102. alko +=2
  103. cumspclnt = 2
  104. gs 'cum_cleanup'
  105. fbreath = 0
  106. vodka_day = daystart
  107. vodka_count -= 1
  108. gs'stat'
  109. 'You poured himself another glass and drained it in one gulp'
  110. end
  111. end
  112. end
  113. end
  114. !Chava soup
  115. if sup_count > 0:
  116. act 'Eat a bowl of soup':
  117. cls
  118. minut += 5
  119. sup_day = daystart
  120. sup_count -= 1
  121. gs'stat'
  122. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/sup.jpg"></center>'
  123. health += 10
  124. manna += 20
  125. fat += 2
  126. energy += 20
  127. water += 40
  128. cumspclnt = 2
  129. gs 'cum_cleanup'
  130. fbreath = 0
  131. 'You happily eat a bowl of soup.'
  132. act 'Further': dynamic $holodil
  133. end
  134. end
  135. act 'Close the refrigerator': gt 'shulgakuh'
  136. }
  137. !Event in the kitchen with gopotoy:
  138. $gang_sex_ev1 = {
  139. cls
  140. minut += 2
  141. gangsexroom_day = daystart
  142. gangsexroom_count -= 1
  143. gs'stat'
  144. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/event/gang1.jpg"></center>'
  145. 'When you come to the kitchen, There waiting for you three drunken boys. Seeing you, they were glad, and were about to be expanded on your desk, but you have to kind of resist.'
  146. act 'Further':
  147. cls
  148. minut += 3
  149. gs'stat'
  150. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/event/gang2.jpg"></center>'
  151. 'Vitek hold your hair, <<$shulga_name_rnd>> I am trying to cope with your hands.
  152. -"Fuck, <<$gop_name_gg>> do not build ourselves out of hymen, Spreading Legs", said Dan.
  153. He wanted to study the condition of your gap and you put his hand into her panties and began to explore your pussy.
  154. Defenseless situation you a little excited, so she opened pussy, and from it flowed juice, and the ass ring also opened slightly in anticipation of a member.'
  155. act 'Further':
  156. cls
  157. minut += 5
  158. gs'stat'
  159. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/event/gang3.jpg"></center>'
  160. 'You squatted, but you still tried to resist.
  161. - "<<$gop_name_gg>> Stop faces here we build, Attend to normal, not the first time the...", Dan said and ordered the boys be from different sides, and you suck all the good.'
  162. act 'Further':
  163. cls
  164. minut += 5
  165. gs'stat'
  166. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/event/gang4.jpg"></center>'
  167. 'Yes, you do not suck against their mighty sausages, obsosyvat started with at the beginning of Vic, Once in your mouth cock began to grow rapidly and you`re barely able to swallow it.
  168. Suck it a little, Dan pulled you by the hair of his friend and you`re sucking the second term. Dan was more unfettered, therefore I wanted to push his friend to you on the eggs, and he began to peck.
  169. But you it was already no stranger to you safely, expertly took his dick the entire length in the mouth. Later in the game you joined Bob and everyone turns sucking dick.'
  170. act 'Further':
  171. cls
  172. minut += 10
  173. gs'stat'
  174. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/event/gang5.jpg"></center>'
  175. 'Gradually, the guys started to undress and now your body is put on the table and you feel his forage cap, in you that-something breaks. Bob immersing dick in pussy began to fuck measured, the other guys you masturbate and do not forget to suck.
  176. Vitek says: - "<<$shulga_name_rnd>>, Fall place for me, I want it in the ass!"'
  177. act 'Further':
  178. cls
  179. minut += 10
  180. gs'stat'
  181. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/event/gang6.jpg"></center>'
  182. 'You throw on the floor and Vitek enters your ass.
  183. - "There, she, narrowish!", says Victor
  184. - "Yes, Che you drive, submerge normal member, here you see, and I said narrow", Dan chuckled komentiruet simultaneously thrusting his dick in your mouth.'
  185. act 'Further':
  186. cls
  187. minut += 10
  188. gs'stat'
  189. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/event/gang7.jpg"></center>'
  190. '<<$shulga_name_rnd>> speaks: - "You until it spiers, and I`ll masturbate, I do not want to wait until someone-it frees a place for me. Deng her well Waffles, We have three holes, and she, too, three. So let`s expand on the couch ok, all of it will be convenient".
  191. Guys did not argue, as the arguments of Basil were undeniable and you dragged him into the room on the sofa.
  192. You last twenty minutes continuously in three holes fucked. You were so good and you can easily take on the eggs whose-the member, not being afraid of what`s behind you fuck in two holes and your head from bumps all the time flies forward-ago.
  193. The pussy and ass members climbed easily and not forced. You just went mad and enjoyed their members.
  194. The holes between the legs were so rastrahany, that easily takes members, especially ass. She had not closed, even if you try to squeeze the muscles ringlet.'
  195. if horny >=70:
  196. orgasm += 1
  197. horny = 0
  198. 'Having an orgasm, guys give you respite for a couple of minutes, but then begin to clatter furiously all your slots.'
  199. end
  200. act 'Further':
  201. cls
  202. minut += 10
  203. gs'stat'
  204. '<center><img src="images/zsoft/pod_ezd/shulgahome/kuh/event/gang8.jpg"></center>'
  205. 'Dan is already tired of it all, he proposes to end and builds all around you. Before your face three dick, that you drochat. Some of you are helping your mouth, and who-Fingering the hands, on the machine waiting for their portion of the seed.
  206. The first pours into your mouth his sperm Dan, You eagerly swallow it and then to have fires Vitek. Sperm are so many, that you hardly have time to swallow it.
  207. Following the ready <<$shulga_name_rnd>>, you do not always have time to catch all the cum, so it gets you in the face and even on tits.
  208. - "Videsh how fucking fuck, and you show off!", says Dan.
  209. You said nothing, cute smile.'
  210. act 'Escape': gt 'shulgakuh'
  211. end
  212. end
  213. end
  214. end
  215. end
  216. end
  217. end
  218. }
  219. --- shulgakuh ---------------------------------