mirafather.tw 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. :: mirafather[mod mod_gad]
  2. <<set $here = 'mirafather'>>
  3. <<set $ARGS = $location_var[$here]>>
  4. <!-- !2021/05/02-->
  5. <<set $menu_loc = 'mirafather'>>
  6. <<set $menu_arg = ''>>
  7. <<set $menu_off = 0>>
  8. <!-- Boy A64 -->
  9. <<set $harakBoy = 1>>
  10. <<set $tempday = ($npc('A64').dob % 100)>>
  11. <<set $tempmonth = ((($npc('A64').dob % 10000) - $tempday) / 100)>>
  12. <<set $tempyear = (((npc_dob['A64']) - ($npc('A64').dob % 10000)) / 10000)>>
  13. <!-- !Looks like npc_dob is broken, once fixed revert to boyage = year - tempyear-->
  14. <<set $boyage = $pc.age + 34>>
  15. <<if $tempmonth < $time.month or ($tempmonth == $time.month and $tempday <= $time.day)>>
  16. <<setn $boyage -= 1>>
  17. <</if>>
  18. <<if $npc('A64').QW == 0>>
  19. <h2>Mira''s Father</h2>
  20. <</if>>
  21. <<if $npc('A64').QW > 0>>
  22. <h2>Afanasiy</h2>
  23. <</if>>
  24. <<image "characters/shared/headshots_main/big64.jpg">>
  25. Mira''s father is <<boyage>> years old. After his wife died, he started to drink heavily. As a result, he looks much older than he actually is. However, he is still in good shape for a man his age.
  26. <<act 'Leave him be'>>
  27. <<gt 'MiroslavaHome' 'start'>>
  28. <</act>>
  29. <<if getvar("$Mira_no") > 0 and getvar("$mirafathertalk") == 0 and $miraday != $time.daystart>>
  30. <<image "characters/shared/headshots_main/big64.jpg">>
  31. You are passing Mira''s house when you see Mira''s father headed in your direction.
  32. <p>"$pc.name_first, wait. I need to speak with you," he says, coming closer.</p>
  33. <p>You stop and look at him frightfully. "Did Mira tell him what I made her do?" you think as panicked thoughts race through your head.</p>
  34. <p>"$pc.name_nick, do you know what happened to Mira?" Afanasiy asks, looking you in the eye.</p>
  35. <p>"N-no, what happened to her?" you ask in a confused voice, expecting him to start shouting any second.</p>
  36. "I don't know. She is just sitting at home all the time. She doesn''t leave the yard, I'm concerned." Mira''s father answers.
  37. "Oh, ah... I don't know," you say, trying to make it sound believable and make your eyes look innocent. "Maybe she was hurt by some local boy or had a fight with someone..."
  38. "Okay, I think it will pass... soon, I hope. But I want you to come and visit us. I think your company would do Mira a lot of good. It might bring her out of this funk faster." Mira''s father says goodbye and leaves to resume working around his house.
  39. "Close call," you think as you watch his retreating back and exhale with relief.
  40. <<set $MiraLoc = 0>>
  41. <<set $time.minutes += 10>>
  42. <<set $mirafathertalk = 1>>
  43. <<act 'Continue'>>
  44. <<gt 'miroslava' 'Start'>>
  45. <</act>>
  46. <<else>>
  47. <<actCLA 'Ask if Mira is home'>>
  48. <<set $menu_off = 1>>
  49. <<set $mira_temp = rand(1,20)>>
  50. <<if !$weather.isRaining>>
  51. <<if getvar("$mira_temp") > 15 and $npc('A60').QW > 15 and $time.hour >= 16 and $time.hour <= 23>>
  52. <<set $time.minutes += 2>>
  53. <<set $MiraLoc = 8>>
  54. <<image "characters/shared/headshots_main/big64.jpg">>
  55. Mira''s father tells you that she's not home. She left without telling him where she was going.
  56. <<if getvar("$mirapimp") == 1>>
  57. Mira is not home, but you know exactly where to find her. She has been working as your prostitute on the highway.
  58. <<elseif getvar("$miraprost") > 1>>
  59. Mira is not home, but you know exactly where to find her. You have seen her working as a prostitute on the highway.
  60. <<elseif getvar("$miraprost") == 1>>
  61. Mira is not home, but you think you know where to find her. Ever since granting your second wish, you have heard rumours that Mira has been earning money as a prostitute on the highway.
  62. <<else>>
  63. Mira is not home, and you have no idea where she might be. So maybe you should go look around town.
  64. <</if>>
  65. <<act 'Go back to the village center'>>
  66. <<gt 'gadukino'>>
  67. <</act>>
  68. <<if getvar("$miraprost") > 0>>
  69. <<setn $time.minutes += 20>>
  70. <</if>>
  71. <<elseif getvar("$mira_temp") > 10 and $time.month >= 4 and $time.month <= 10 and $time.hour <= 18>>
  72. <<set $time.minutes += 2>>
  73. <<set $MiraLoc = 1>>
  74. <<image "characters/shared/headshots_main/big64.jpg">>
  75. Mira''s father tells you that she's not home. She said she was going to the river.
  76. <<act 'Go back to the village center'>>
  77. <<gt 'gadukino'>>
  78. <</act>>
  79. <<act 'Go to the river'>>
  80. <<gt 'gadriver' 'start'>>
  81. <</act>>
  82. <<else>>
  83. <<set $MiraLoc = 0>>
  84. <<gt 'miroslava' 'Start'>>
  85. <</if>>
  86. <<else>>
  87. <<set $MiraLoc = 0>>
  88. <<gt 'miroslava' 'Start'>>
  89. <</if>>
  90. <</actCLA>>
  91. <<if $MiraFather != $time.daystart>>
  92. <<set $MiraFather = $time.daystart>>
  93. <<if $npc('A64').QW >= 16 and (getvar("$meadow") == 4 or getvar("$meadow") == 5)>>
  94. <<set $meadow = 6>>
  95. <</if>>
  96. <<if $npc('A64').QW < 5>>
  97. <<actCLA 'Ask how he`s doing'>>
  98. <<set $menu_off = 1>>
  99. <<if $npc('A64').QW < 5>>
  100. <<set $npc('A64').QW += 1>>
  101. <</if>>
  102. <<set $time.minutes += 5>>
  103. <<image "characters/shared/headshots_main/big64.jpg">>
  104. <<set 'You are greeted by ' + iif(npc_QW['A64'] = 0, 'Mira''s father','Afanasiy') + ' and politely inquire about his health. He responds with a smile and says, "All is well, little lady."'>>
  105. <<if $npc('A64').QW == 0>>
  106. Mira''s father continues, "I'm glad Mira has finally found a friend here in the village. It will be good for her to have another girl around. By the way, you can call me Afanasiy."
  107. <</if>>
  108. <<act 'Continue'>>
  109. <<gt 'mirafather'>>
  110. <</act>>
  111. <</actCLA>>
  112. <<elseif $npc('A64').QW < 10>>
  113. <<actCLA 'Chat with him'>>
  114. <<set $menu_off = 1>>
  115. <<if $npc('A64').QW < 10>>
  116. <<set $npc('A64').QW += 1>>
  117. <</if>>
  118. <<set $time.minutes += 5>>
  119. <<image "characters/shared/headshots_main/big64.jpg">>
  120. You spend several minutes chatting with Afanasiy about the weather and trivia.
  121. <<act 'Continue'>>
  122. <<gt 'mirafather'>>
  123. <</act>>
  124. <</actCLA>>
  125. <<elseif $npc('A64').QW >= 10 and $npc('A64').QW < 15>>
  126. <<actCLA 'Flirt with him'>>
  127. <<set $menu_off = 1>>
  128. <<if $npc('A64').QW < 15>>
  129. <<set $npc('A64').QW += 1>>
  130. <</if>>
  131. <<arouse 'foreplay' 10 >>
  132. <<image "characters/shared/headshots_main/big64.jpg">>
  133. You spend several minutes with Afanasiy, playful looking him over and smiling meaningfully at him. He is happy with the company of a beautiful young woman. During your conversation, you notice his eyes roving up and down your body appraisingly.
  134. <<act 'Continue'>>
  135. <<gt 'mirafather'>>
  136. <</act>>
  137. <</actCLA>>
  138. <<elseif $npc('A64').QW == 15>>
  139. <<actCLA 'Seduce him'>>
  140. <<set $menu_off = 1>>
  141. <<set $npc('A64').QW = 16>>
  142. <<arouse 'foreplay' 10 >>
  143. <<image "characters/shared/headshots_main/big64.jpg">>
  144. You move over and stand next to Afanasiy. You let your hand start to stroke his thigh and slowly move towards his crotch. Afanasiy looks at you for a while, deep in thought. Eventually, he sighs and then nods to himself as if he has made a decision. He takes you by the hand, leads you into his house, and then down the hall into his room.
  145. <<actCLA 'Enjoy his touch'>>
  146. <<image "locations/gadukino/sex/mira/mirafathersexkuni.jpg">>
  147. Afanasiy is a gentle lover. With practised ease, he gently undresses you and crouches before you. His mouth and fingers play across the lips of your pussy, and he skillfully licks you until he brings you a powerful orgasm.
  148. <<set $orgasm_or = 'yes'>>
  149. <<arouse 'cuni' 10 >>
  150. <<arouse 'vaginal_finger' 10 >>
  151. <<actCLA 'Turn around for him'>>
  152. <<image "locations/gadukino/sex/mira/mirafathersex.jpg">>
  153. <<set $pose = 0>>
  154. <<if getvar("$mesec") == 0 and !$pc.thinksIsVirgin>>
  155. <<gs 'dinsex' 'boy_puts_condom'>>
  156. <<gs 'dinsex' 'vaginal_sex' 10>>
  157. <<gs 'dinsex' 'sexcum'>>
  158. <<arouse 'vaginal' 10 >>
  159. <<else>>
  160. <<gs 'dinSex' 'boy_wants_anal' '' 'lubri'>> <<gs 'dinsex' 'analsex'>>
  161. <<arouse 'anal' 10 >>
  162. <</if>>
  163. <<act 'Continue'>>
  164. <<gt 'mirafather'>>
  165. <</act>>
  166. <</actCLA>>
  167. <</actCLA>>
  168. <</actCLA>>
  169. <<elseif $npc('A64').QW > 15>>
  170. <<actCLA 'Wink at him'>>
  171. <<set $menu_off = 1>>
  172. <<if $npc('A64').QW < 20>>
  173. <<set $npc('A64').QW += 1>>
  174. <</if>>
  175. <<arouse 'foreplay' 5 >>
  176. <<image "characters/shared/headshots_main/big64.jpg">>
  177. You expressly wink at Afanasiy, and he understands your meaning. Then, looking for nosy neighbours, he quickly waves for you to enter the house.
  178. <<actCLA 'Go inside'>>
  179. <<set $pose = 0>>
  180. <<set $temp_mf = rand(0,9)>>
  181. <<if getvar("$temp_mf") == 0>>
  182. <<image "locations/gadukino/sex/mira/mirafathersex.jpg">>
  183. <<elseif getvar("$temp_mf") == 1>>
  184. <<image "locations/gadukino/sex/mira/mirafathersex1.jpg">>
  185. <<elseif getvar("$temp_mf") == 2>>
  186. <<image "locations/gadukino/sex/mira/mirafathersex2.jpg">>
  187. <<elseif getvar("$temp_mf") == 3>>
  188. <<image "locations/gadukino/sex/mira/mirafathersex3.jpg">>
  189. <<elseif getvar("$temp_mf") == 4>>
  190. <<image "locations/gadukino/sex/mira/mirafathersex4.jpg">>
  191. <<elseif getvar("$temp_mf") == 5>>
  192. <<image "locations/gadukino/sex/mira/mirafatherbj.jpg">>
  193. <<elseif getvar("$temp_mf") == 6>>
  194. <<image "locations/gadukino/sex/mira/mirafatherbj1.jpg">>
  195. <<elseif getvar("$temp_mf") == 7>>
  196. <<image "locations/gadukino/sex/mira/mirafatherbj2.jpg">>
  197. <<elseif getvar("$temp_mf") == 8>>
  198. <<image "locations/gadukino/sex/mira/mirafatherbj3.jpg">>
  199. <<elseif getvar("$temp_mf") == 9>>
  200. <<image "locations/gadukino/sex/mira/mirafatherbj4.jpg">>
  201. <</if>>
  202. <<if getvar("$temp_mf") < 5>>
  203. <<if getvar("$mesec") == 0 and !$pc.thinksIsVirgin and rand(0,2) < 2>>
  204. <<gs 'dinsex' 'boy_puts_condom'>>
  205. <<gs 'dinsex' 'vaginal_sex' 10>>
  206. <<gs 'dinsex' 'sexcum'>>
  207. <<arouse 'vaginal' 10 >>
  208. <<else>>
  209. <<gs 'dinSex' 'boy_wants_anal' '' 'lubri'>>
  210. <<gs 'dinsex' 'analsex'>>
  211. <<arouse 'anal' 10 >>
  212. <</if>>
  213. <<act 'Continue'>>
  214. <<gt 'mirafather'>>
  215. <</act>>
  216. <<else>>
  217. <<gs 'oral' 'start'>>
  218. <<arouse 'bj' 10 >>
  219. <<actCLA 'Make him cum'>>
  220. <<set $time.minutes += 5>>
  221. <<image "locations/gadukino/sex/mira/mirafathercum.jpg">>
  222. <<if getvar("$temp_mf") < 5>>
  223. Afanasiy gently pulls away from you, leaving a couple of pearly drops of semen on your lips, and continues cumming on your tits and abdomen.
  224. <<else>>
  225. Afanasiy gently pulls out of you. You kneel before him as he begins cumming on your tits and abdomen.
  226. <</if>>
  227. <<arouse 'bj' -2 >>
  228. <<cum 'stomach' $sex.npcId 1 '' '' 15>>
  229. <<cum 'breasts' $sex.npcId 1 '' '' 20>>
  230. <<cum 'mouth' $sex.npcId 1 '' '' 5>>
  231. <<act 'Continue'>>
  232. <<gt 'mirafather'>>
  233. <</act>>
  234. <</actCLA>>
  235. <</if>>
  236. <</actCLA>>
  237. <</actCLA>>
  238. <</if>>
  239. <</if>>
  240. <</if>>