mitkasex.qsrc 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433
  1. # mitkasex
  2. menu_off = 1
  3. gs 'stat'
  4. !disabled - maybe hook into enema realism?
  5. !$textsexhunter = 'From a member of the unpleasant smells and remains in the mouth tastes foul feces. "-Damn, I had to do an enema." - belatedly dumaeete you.'
  6. $textsexhunter2 = '<<$boydesc>> staring you in the face until your lips slide on his hard dick. Interrupting you, the guy says...'
  7. $textsexhunter3 = '<<$boydesc>> finished and left with a satisfied smile on her face, and you are left to clean myself up...'
  8. $textsexhunter4 = 'Enough to enjoy in this position, the guy says...'
  9. $textsexhunter5 = 'Guys look you in the face while your lips slide on their hard members. Interrupting you, they say...'
  10. $textsexhunter6 = '<<$boydesc>> finished and walked away with a satisfied smile on his face, and you were to continue with the second guy...'
  11. $textsexhunter7 = 'Enough to enjoy in this position, guys....'
  12. $textsexhunter8 = '<<$boydesc>> staring you in the face until your lips slide on his hard dick...'
  13. $textsexhunter9 = 'Guys look you in the face while your lips slide on their hard members...'
  14. $textsexhunter10 = '<<$boydesc>> finished and walked away with a satisfied smile on her face, and you are left with myrrh to freshen up...'
  15. $textsexhunter11 = 'Gradually, a pleasant warmth growing and throbbing in the abdomen, then the sensations crashing down on you and your body cover the hot waves of orgasm.'
  16. $textsexhunter12 = 'You feel nice when <<dick>> cm dick is moving inside of your ass and you moan with pleasure. Gradually, a pleasant warmth growing and throbbing in the abdomen, then the sensations crashing down on you and your body cover the hot waves of orgasm.'
  17. if $ARGS[0] = 'forest1':
  18. *clr & cla
  19. menu_off = 1
  20. minut += 5
  21. boyAsex = 0
  22. dirty_dickA = 0
  23. boyAsexa = 0
  24. mitkaforestsex = 0
  25. gs 'boyStat', $ARGS[1]
  26. horny_boyA = rand(0,90)
  27. gs 'stat'
  28. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsex1.'+rand(1,2)+'.jpg"></center>'
  29. 'Entering deeper into the thicket <<$boydesc>> comes up to you and Mira. He undresses you both and makes you kneel before him...'
  30. huntsexa = rand(1,3)
  31. if huntsexa = 1:act 'Suck':gt 'mitkasex', 'forestOral1_1'
  32. if huntsexa = 2:act 'Suck':gt 'mitkasex', 'forestOral1_2'
  33. if huntsexa = 3:act 'Suck':gt 'mitkasex', 'forestOral1_3'
  34. end
  35. if $ARGS[0] = 'forest2':
  36. *clr & cla
  37. menu_off = 1
  38. boyAsex = 0
  39. boyBsex = 0
  40. dirty_dickA = 0
  41. dirty_dickB = 0
  42. boyAsexa = 0
  43. boyBsexa = 0
  44. minut += 5
  45. mitkaforestsex = 0
  46. gang += 1
  47. temp_ms = rand(1,2)
  48. if ARGS[1] = 1:
  49. if temp_ms = 1:gs 'boyStat', 'A63'
  50. if temp_ms = 2:gs 'boyStat', 'A61'
  51. elseif ARGS[1] = 2:
  52. if temp_ms = 1:gs 'boyStat', 'A63'
  53. if temp_ms = 2:gs 'boyStat', 'A62'
  54. elseif ARGS[1] = 3:
  55. if temp_ms = 1:gs 'boyStat', 'A61'
  56. if temp_ms = 2:gs 'boyStat', 'A62'
  57. end
  58. horny_boyA = rand(0,90)
  59. horny_boyB = rand(0,90)
  60. gs 'stat'
  61. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsex2.jpg"></center>'
  62. 'Entering deeper into the thicket the guys come up to you and Mira. They undress you both and make you kneel before them...'
  63. act 'Suck':gt 'mitkasex', 'forestOral2_1'
  64. end
  65. if $ARGS[0] = 'forest3':
  66. *clr & cla
  67. menu_off = 1
  68. minut += 5
  69. mitkaforestsex = 0
  70. gang += 1
  71. boyAsex = 0
  72. boyBsex = 0
  73. boyCsex = 0
  74. boyAsexa = 0
  75. boyBsexa = 0
  76. boyCsexa = 0
  77. dirty_dickA = 0
  78. dirty_dickB = 0
  79. dirty_dickC = 0
  80. mitboysex = 0
  81. !how much action will last sex
  82. mitboysexrand = rand(1,5)
  83. !did Mira an enema
  84. Mira_enema = rand (0,1)
  85. huntsexa = rand(1,3)
  86. gs 'stat'
  87. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsex3.jpg"></center>'
  88. 'Entering deeper into the thicket the guys come up to you and Mira. They undress you both and make you kneel before them...'
  89. if huntsexa = 1:act 'Suck':gt 'mitkasex', 'forestOral3_1'
  90. if huntsexa = 2:act 'Suck':gt 'mitkasex', 'forestOral3_2'
  91. if huntsexa = 3:act 'Suck':gt 'mitkasex', 'forestOral3_3'
  92. end
  93. if $ARGS[0] = 'gad1':
  94. *clr & cla
  95. menu_off = 1
  96. minut += 5
  97. boyAsex = 0
  98. boyAsexa = 0
  99. dirty_dickA = 0
  100. mitkaforestsex = 0
  101. gs 'boyStat', $ARGS[1]
  102. horny_boyA = rand(0,90)
  103. gs 'stat'
  104. if pcs_horny < 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsex1.1.jpg"></center>'
  105. if pcs_horny >= 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsex1.2.jpg"></center>'
  106. '<<$boydesc>> takes you out to some field, and undresses you. He makes you kneel in front of him...'
  107. act 'Suck':gt 'mitkasex', 'gadsexOral1'
  108. end
  109. if $ARGS[0] = 'gad2':
  110. *clr & cla
  111. menu_off = 1
  112. boyAsex = 0
  113. boyBsex = 0
  114. boyAsexa = 0
  115. boyBsexa = 0
  116. dirty_dickA = 0
  117. dirty_dickB = 0
  118. minut += 5
  119. mitkaforestsex = 0
  120. gang += 1
  121. temp_ms = rand(1,3)
  122. horny_boyA = rand(0,90)
  123. horny_boyB = rand(0,90)
  124. gs 'stat'
  125. if pcs_horny < 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsex2.1.jpg"></center>'
  126. if pcs_horny >= 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsex2.2.jpg"></center>'
  127. 'The guys take you to some field and undress you. You drop to your knees and place your hands on their members...'
  128. act 'Suck':
  129. *clr & cla
  130. huntsexa = rand(1,3)
  131. if pcs_throat <= 15:horny_boyA += 5 & horny_boyB += 5
  132. if pcs_throat > 15:horny_boyA += 10 & horny_boyB += 10
  133. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexoral2.'+rand(1,2)+'.jpg"></center>'
  134. 'You kneel in front of the boys. They are taking your members out and bring them to your lips...'
  135. if temp_ms = 1:
  136. gs 'boyStat', 'A63'
  137. gs 'oral','start'
  138. gs 'boyStat', 'A61'
  139. gs 'oral','start'
  140. elseif temp_ms = 2:
  141. gs 'boyStat', 'A62'
  142. gs 'oral','start'
  143. gs 'boyStat', 'A63'
  144. gs 'oral','start'
  145. elseif temp_ms = 3:
  146. gs 'boyStat', 'A61'
  147. gs 'oral','start'
  148. gs 'boyStat', 'A62'
  149. gs 'oral','start'
  150. end
  151. *pl
  152. '<<$textsexhunter7>>'
  153. gs 'arousal', 'bj', 5, 'sub', 'group'
  154. gs 'stat'
  155. if horny_boyA < 100 and horny_boyB < 100:
  156. if huntsexa = 1:act 'Bend':gt 'mitkasex', 'gadStan'
  157. if huntsexa = 2:act 'Sit down':gt 'mitkasex', 'gadCow2'
  158. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'gadDog2'
  159. elseif horny_boyA < 100 and horny_boyB >= 100:
  160. act 'Suck on':gt 'mitkasex', 'gadOralCum2_2'
  161. elseif horny_boyA >= 100 and horny_boyB < 100:
  162. act 'Suck on':gt 'mitkasex', 'gadOralCum2_1'
  163. elseif horny_boyA >= 100 and horny_boyB >= 100:
  164. act 'Lie on the ground':gt 'mitkasex', 'gadHandsCum2'
  165. end
  166. end
  167. end
  168. if $ARGS[0] = 'gadOralCum2_1':
  169. gs 'cum_call', 'mouth_swallow', $boy, 1
  170. protect = 0
  171. if temp_ms = 1:gs 'boyStat', 'A63'
  172. if temp_ms = 2:gs 'boyStat', 'A62'
  173. if temp_ms = 3:gs 'boyStat', 'A61'
  174. gs 'stat'
  175. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexoralcum2_1.jpg"></center>'
  176. 'Realizing that <<$boydesc>> will soon tire out, you increase tempo, actively working his cock with your lips and tongue...'
  177. gs 'dinsex', 'bj_swallow_random'
  178. ''
  179. '<<$textsexhunter6>>'
  180. if temp_ms = 1:gs 'boyStat', 'A61'
  181. if temp_ms = 2:gs 'boyStat', 'A63'
  182. if temp_ms = 3:gs 'boyStat', 'A62'
  183. *pl
  184. gs 'arousal', 'bj', 5, 'sub', 'group'
  185. gs 'stat'
  186. huntsexa = rand(1,6)
  187. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  188. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  189. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  190. if huntsexa = 4:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  191. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  192. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  193. end
  194. if $ARGS[0] = 'gadOralCum2_2':
  195. gs 'cum_call', 'mouth_swallow', $boy, 1
  196. if temp_ms = 1:gs 'boyStat', 'A61'
  197. if temp_ms = 2:gs 'boyStat', 'A63'
  198. if temp_ms = 3:gs 'boyStat', 'A62'
  199. gs 'stat'
  200. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexoralcum2_2.jpg"></center>'
  201. 'Realizing that <<$boydesc>> will soon tire out, you increase tempo, actively working his cock with your lips and tongue...'
  202. gs 'dinsex', 'bj_swallow_random'
  203. *pl
  204. '<<$textsexhunter6>>'
  205. if temp_ms = 1:gs 'boyStat', 'A63'
  206. if temp_ms = 2:gs 'boyStat', 'A62'
  207. if temp_ms = 3:gs 'boyStat', 'A61'
  208. *pl
  209. gs 'arousal', 'bj', 5, 'sub', 'group'
  210. gs 'stat'
  211. huntsexa = rand(1,6)
  212. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  213. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  214. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  215. if huntsexa = 4:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  216. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  217. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  218. end
  219. if $ARGS[0] = 'gadHandsCum2':
  220. gs 'cum_call', 'stomach', $boy, 1
  221. protect = 0
  222. gs 'stat'
  223. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexhandscum2.'+rand(1,2)+'.jpg"></center>'
  224. 'You are Lie on the ground. The guys feel the approaching orgasm and put your hands on their members, and told to finish them off. You went to work and were soon rewarded for your diligence, they groaned and you felt your body get showered in hot cum.'
  225. gs 'arousal', 'hj', 5, 'sub', 'group'
  226. gs 'stat'
  227. if kosmetica <= 0:'After the guys went about their business and you are left to clean yourself up.'
  228. if kosmetica > 0:
  229. act 'Continue':
  230. *clr & cla
  231. minut += 5
  232. body_write = 1
  233. kosmetica -= 1
  234. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexhandscum2.3.jpg"></center>'
  235. 'When the guys finished, they painted on your body "fuck slut" and writing a couple of other obscene words, and went about their business. You are left to clean yourself up.'
  236. gs 'arousal', 'end'
  237. gs 'stat'
  238. act 'Finish':gt $loc, $loc_arg
  239. end
  240. else
  241. gs 'arousal', 'end'
  242. gs 'stat'
  243. act 'Finish':gt $loc, $loc_arg
  244. end
  245. end
  246. if $ARGS[0] = 'gadDog2':
  247. if boyBsex = 0: boyBsex = 1
  248. huntsexa = rand(1,2)
  249. if pcs_throat <= 25:horny_boyA += 5
  250. if pcs_throat > 25:horny_boyA += 10
  251. if pcs_vag <= 25:horny_boyB += 20
  252. if pcs_vag > 25:horny_boyB += 10
  253. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexdog2.'+rand(1,3)+'.jpg"></center>'
  254. 'You bend over in front of the boys. One is penetrating your pussy from behind while another fucks your mouth.'
  255. if temp_ms = 1:
  256. gs 'boyStat', 'A63'
  257. gs 'oral','start'
  258. gs 'boyStat', 'A61'
  259. gs 'dinsex', 'boy_puts_condom'
  260. gs 'dinsex','vaginal_sex',10
  261. elseif temp_ms = 2:
  262. gs 'boyStat', 'A62'
  263. gs 'oral','start'
  264. gs 'boyStat', 'A63'
  265. gs 'dinsex', 'boy_puts_condom'
  266. gs 'dinsex','vaginal_sex',10
  267. elseif temp_ms = 3:
  268. gs 'boyStat', 'A61'
  269. gs 'oral','start'
  270. gs 'boyStat', 'A62'
  271. gs 'dinsex', 'boy_puts_condom'
  272. gs 'dinsex','vaginal_sex',10
  273. end
  274. *pl
  275. '<<$textsexhunter7>>'
  276. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  277. gs 'arousal', 'bj', 5, 'sub', 'group'
  278. minut -= 5
  279. gs 'stat'
  280. if horny_boyA < 100 and horny_boyB < 100:
  281. if huntsexa = 1:act 'Bend over':gt 'mitkasex', 'gadStan'
  282. if huntsexa = 2:act 'Sit down':gt 'mitkasex', 'gadCow2'
  283. elseif horny_boyA < 100 and horny_boyB >= 100:
  284. act 'Make one of the boys cum':gt 'mitkasex', 'gadDogCum2_2'
  285. elseif horny_boyA >= 100 and horny_boyB < 100:
  286. act 'Make one of the boys cum':gt 'mitkasex', 'gadDogCum2_1'
  287. elseif horny_boyA >= 100 and horny_boyB >= 100:
  288. act 'Lie on the ground':gt 'mitkasex', 'gadHandsCum2'
  289. end
  290. end
  291. if $ARGS[0] = 'gadDogCum2_1':
  292. minut += 5
  293. gs 'cum_call', 'mouth_swallow', $boy, 1
  294. if temp_ms = 1:gs 'boyStat', 'A63'
  295. if temp_ms = 2:gs 'boyStat', 'A62'
  296. if temp_ms = 3:gs 'boyStat', 'A61'
  297. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexdogcum2_1.jpg"></center>'
  298. 'Realizing that <<$boydesc>> will soon tire out, you increase tempo, actively working his cock with your lips and tongue...'
  299. gs 'dinsex', 'bj_swallow_random'
  300. *pl
  301. '<<$textsexhunter6>>'
  302. if temp_ms = 1:gs 'boyStat', 'A61'
  303. if temp_ms = 2:gs 'boyStat', 'A63'
  304. if temp_ms = 3:gs 'boyStat', 'A62'
  305. *pl
  306. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  307. gs 'arousal', 'bj', 5, 'sub', 'group'
  308. minut -= 5
  309. gs 'stat'
  310. huntsexa = rand(1,6)
  311. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  312. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  313. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  314. if huntsexa = 4:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  315. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  316. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  317. end
  318. if $ARGS[0] = 'gadDogCum2_2':
  319. if temp_ms = 1:gs 'boyStat', 'A61'
  320. if temp_ms = 2:gs 'boyStat', 'A63'
  321. if temp_ms = 3:gs 'boyStat', 'A62'
  322. if pcs_horny < 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexdogcum2_2.jpg"></center>'
  323. if pcs_horny >= 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexdogcum2_3.jpg"></center>'
  324. 'You bend over sticking out your ass, and feel <<$boydesc>> starts moving faster...'
  325. if pcs_horny >= 100:'<<$textsexhunter11>>' & orgasm += 1 & vaginalOrgasm += 1 & pcs_horny = 0 & pcs_mood += 15
  326. $orgasm_or = 'yes'
  327. *pl
  328. '<<$textsexhunter6>>'
  329. if temp_ms = 1:gs 'boyStat', 'A63'
  330. if temp_ms = 2:gs 'boyStat', 'A62'
  331. if temp_ms = 3:gs 'boyStat', 'A61'
  332. *pl
  333. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  334. gs 'arousal', 'bj', 5, 'sub', 'group'
  335. minut -= 5
  336. gs 'stat'
  337. huntsexa = rand(1,6)
  338. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  339. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  340. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  341. if huntsexa = 4:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  342. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  343. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  344. end
  345. if $ARGS[0] = 'gadCow2':
  346. if boyBsex = 0: boyBsex = 1
  347. huntsexa = rand(1,2)
  348. if pcs_throat <= 25:horny_boyA += 5
  349. if pcs_throat > 25:horny_boyA += 10
  350. if pcs_vag <= 25:horny_boyB += 20
  351. if pcs_vag > 25:horny_boyB += 10
  352. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexcow2.jpg"></center>'
  353. 'One guy lies on the ground. You mount his cock by climbing on top of him. The second guy raises his cock to your lips...'
  354. if temp_ms = 1:
  355. gs 'boyStat', 'A63'
  356. gs 'oral','start'
  357. gs 'boyStat', 'A61'
  358. gs 'dinsex', 'boy_puts_condom'
  359. gs 'dinsex','vaginal_sex',10
  360. elseif temp_ms = 2:
  361. gs 'boyStat', 'A62'
  362. gs 'oral','start'
  363. gs 'boyStat', 'A63'
  364. gs 'dinsex', 'boy_puts_condom'
  365. gs 'dinsex','vaginal_sex',10
  366. elseif temp_ms = 3:
  367. gs 'boyStat', 'A61'
  368. gs 'oral','start'
  369. gs 'boyStat', 'A62'
  370. gs 'dinsex', 'boy_puts_condom'
  371. gs 'dinsex','vaginal_sex',10
  372. end
  373. *pl
  374. '<<$textsexhunter7>>'
  375. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  376. gs 'arousal', 'bj', 5, 'sub', 'group'
  377. minut -= 5
  378. gs 'stat'
  379. if horny_boyA < 100 and horny_boyB < 100:
  380. if huntsexa = 1:act 'Bend':gt 'mitkasex', 'gadStan'
  381. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'gadDog2'
  382. elseif horny_boyA < 100 and horny_boyB >= 100:
  383. act 'Make one of the boys cum':gt 'mitkasex', 'gadCowCum2_2'
  384. elseif horny_boyA >= 100 and horny_boyB < 100:
  385. act 'Make one of the boys cum':gt 'mitkasex', 'gadCowCum2_1'
  386. elseif horny_boyA >= 100 and horny_boyB >= 100:
  387. act 'Lie on the ground':gt 'mitkasex', 'gadHandsCum2'
  388. end
  389. end
  390. if $ARGS[0] = 'gadCowCum2_1':
  391. gs 'cum_call', 'mouth_swallow', $boy, 1
  392. if temp_ms = 1:gs 'boyStat', 'A63'
  393. if temp_ms = 2:gs 'boyStat', 'A62'
  394. if temp_ms = 3:gs 'boyStat', 'A61'
  395. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexcowcum2_1.jpg"></center>'
  396. 'Realizing that <<$boydesc>> will soon tire out, you increase tempo, actively working his cock with your lips and tongue...'
  397. gs 'dinsex', 'bj_swallow_random'
  398. *pl
  399. '<<$textsexhunter6>>'
  400. if temp_ms = 1:gs 'boyStat', 'A61'
  401. if temp_ms = 2:gs 'boyStat', 'A63'
  402. if temp_ms = 3:gs 'boyStat', 'A62'
  403. *pl
  404. gs 'arousal', 'vaginal', 5, 'sub'
  405. gs 'arousal', 'bj', 5, 'sub'
  406. minut -= 5
  407. gs 'stat'
  408. huntsexa = rand(1,6)
  409. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  410. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  411. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  412. if huntsexa = 4:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  413. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  414. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  415. end
  416. if $ARGS[0] = 'gadCowCum2_2':
  417. if temp_ms = 1:gs 'boyStat', 'A61'
  418. if temp_ms = 2:gs 'boyStat', 'A63'
  419. if temp_ms = 3:gs 'boyStat', 'A62'
  420. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexcowcum2_2.jpg"></center>'
  421. 'You jump on the guys cock gradually speeding up the pace, knowing that he will soon cum...'
  422. if pcs_horny >= 100:'<<$textsexhunter11>>' & orgasm += 1 & vaginalOrgasm += 1 & pcs_horny = 0 & pcs_mood += 15
  423. $orgasm_or = 'yes'
  424. gs 'dinsex','sexcum'
  425. *pl
  426. '<<$textsexhunter6>>'
  427. if temp_ms = 1:gs 'boyStat', 'A63'
  428. if temp_ms = 2:gs 'boyStat', 'A62'
  429. if temp_ms = 3:gs 'boyStat', 'A61'
  430. *pl
  431. gs 'arousal', 'vaginal', 5, 'sub'
  432. gs 'stat'
  433. huntsexa = rand(1,6)
  434. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  435. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  436. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  437. if huntsexa = 4:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  438. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  439. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  440. end
  441. if $ARGS[0] = 'gadStan':
  442. if boyBsex = 0: boyBsex = 1
  443. huntsexa = rand(1,2)
  444. if pcs_throat <= 25:horny_boyA += 5
  445. if pcs_throat > 25:horny_boyA += 10
  446. if pcs_vag <= 25:horny_boyB += 20
  447. if pcs_vag > 25:horny_boyB += 10
  448. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexstan2.jpg"></center>'
  449. 'You bend over in front of the boys. One is penetrating your pussy from behind while another fucks your mouth.'
  450. if temp_ms = 1:
  451. gs 'boyStat', 'A63'
  452. gs 'oral','start'
  453. gs 'boyStat', 'A61'
  454. gs 'dinsex', 'boy_puts_condom'
  455. gs 'dinsex','vaginal_sex',10
  456. elseif temp_ms = 2:
  457. gs 'boyStat', 'A62'
  458. gs 'oral','start'
  459. gs 'boyStat', 'A63'
  460. gs 'dinsex', 'boy_puts_condom'
  461. gs 'dinsex','vaginal_sex',10
  462. elseif temp_ms = 3:
  463. gs 'boyStat', 'A61'
  464. gs 'oral','start'
  465. gs 'boyStat', 'A62'
  466. gs 'dinsex', 'boy_puts_condom'
  467. gs 'dinsex','vaginal_sex',10
  468. end
  469. *pl
  470. '<<$textsexhunter7>>'
  471. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  472. gs 'arousal', 'bj', 5, 'sub', 'group'
  473. minut -= 5
  474. gs 'stat'
  475. if horny_boyA < 100 and horny_boyB < 100:
  476. if huntsexa = 1:act 'Sit down':gt 'mitkasex', 'gadCow2'
  477. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'gadDog2'
  478. elseif horny_boyA < 100 and horny_boyB >= 100:
  479. act 'Make one of the boys cum':gt 'mitkasex', 'gadStanCum2_2'
  480. elseif horny_boyA >= 100 and horny_boyB < 100:
  481. act 'Make one of the boys cum':gt 'mitkasex', 'gadStanCum2_1'
  482. elseif horny_boyA >= 100 and horny_boyB >= 100:
  483. act 'Lie on the ground':gt 'mitkasex', 'gadHandsCum2'
  484. end
  485. end
  486. if $ARGS[0] = 'gadStanCum2_1':
  487. gs 'cum_call', 'mouth_swallow', $boy, 1
  488. if temp_ms = 1:gs 'boyStat', 'A63'
  489. if temp_ms = 2:gs 'boyStat', 'A62'
  490. if temp_ms = 3:gs 'boyStat', 'A61'
  491. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexstancum2_1.jpg"></center>'
  492. 'Realizing that <<$boydesc>> will soon tire out, you increase tempo, actively working his cock with your lips and tongue...'
  493. gs 'dinsex', 'bj_swallow_random'
  494. *pl
  495. '<<$textsexhunter6>>'
  496. if temp_ms = 1:gs 'boyStat', 'A61'
  497. if temp_ms = 2:gs 'boyStat', 'A63'
  498. if temp_ms = 3:gs 'boyStat', 'A62'
  499. *pl
  500. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  501. gs 'arousal', 'bj', 5, 'sub', 'group'
  502. minut -= 5
  503. gs 'stat'
  504. huntsexa = rand(1,6)
  505. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  506. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  507. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  508. if huntsexa = 4:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  509. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  510. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  511. end
  512. if $ARGS[0] = 'gadStanCum2_2':
  513. if temp_ms = 1:gs 'boyStat', 'A61'
  514. if temp_ms = 2:gs 'boyStat', 'A63'
  515. if temp_ms = 3:gs 'boyStat', 'A62'
  516. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexstancum2_2.jpg"></center>'
  517. 'You bend over sticking out your ass, and feel <<$boydesc>> starts moving faster...'
  518. $orgasm_txt = '<<$textsexhunter11>>'
  519. gs 'dinsex','sexcum'
  520. *pl
  521. '<<$textsexhunter6>>'
  522. if temp_ms = 1:gs 'boyStat', 'A63'
  523. if temp_ms = 2:gs 'boyStat', 'A62'
  524. if temp_ms = 3:gs 'boyStat', 'A61'
  525. *pl
  526. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  527. gs 'arousal', 'bj', 5, 'sub', 'group'
  528. $orgasm_txt = ''
  529. minut -= 5
  530. gs 'stat'
  531. huntsexa = rand(1,6)
  532. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  533. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  534. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  535. if huntsexa = 4:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  536. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  537. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  538. end
  539. ! One guy vs GG
  540. if $args[0] = 'gadsexOral1':
  541. huntsexa = rand(1,6)
  542. lubonus += 1
  543. if pcs_throat <= 15:horny_boyA += 5
  544. if pcs_throat > 15:horny_boyA += 10
  545. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexoral1.'+rand(1,2)+'.jpg"></center>'
  546. 'You kneel in front of a boy. <<$boydesc>> takes his <<dick>> cm dick, brings it to your lips...'
  547. gs 'oral','start'
  548. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  549. *pl
  550. '<<$textsexhunter4>>'
  551. gs 'arousal', 'bj', 5, 'sub'
  552. gs 'stat'
  553. if horny_boyA < 100:
  554. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  555. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  556. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  557. if huntsexa = 4:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  558. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  559. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  560. else
  561. act 'Suck on':gt 'mitkasex', 'gadOralCum1'
  562. end
  563. end
  564. if $ARGS[0] = 'gadOralCum1':
  565. minut += 5
  566. gs 'cum_call', 'mouth_swallow', $boy, 1
  567. protect = 0
  568. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexoralcuml1.jpg"></center>'
  569. 'Realizing that <<$boydesc>> will soon tire out, you increase your pace...'
  570. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  571. gs 'dinsex', 'bj_swallow_random'
  572. *pl
  573. '<<$textsexhunter3>>'
  574. gs 'arousal', 'end'
  575. gs 'stat'
  576. act 'Finish':gt $loc, $loc_arg
  577. end
  578. if $ARGS[0] = 'gadSideVag1':
  579. if boyAsex = 0: boyAsex = 1
  580. huntsexa = rand(1,5)
  581. if pcs_vag <= 25:horny_boyA += 20
  582. if pcs_vag > 25:horny_boyA += 10
  583. if pcs_horny < 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexsidevag1.1.jpg"></center>'
  584. if pcs_horny >= 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexsidevag1.2.jpg"></center>'
  585. 'You lie on your side, <<$boydesc>> rubs up against your pussy...'
  586. gs 'dinsex', 'boy_puts_condom'
  587. gs 'dinsex','vaginal_sex',10
  588. *pl
  589. *pl
  590. '<<$textsexhunter4>>'
  591. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  592. gs 'stat'
  593. if horny_boyA < 100:
  594. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  595. if huntsexa = 2:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  596. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  597. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  598. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  599. else
  600. act 'Lie on your side then':gt 'mitkasex', 'gadSideVagCum1'
  601. end
  602. end
  603. if $ARGS[0] = 'gadSideVagCum1':
  604. pose = 1
  605. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexsidevagcum1.jpg"></center>'
  606. 'You lie on your side, feeling that <<$boydesc>> gradually starts to move faster...'
  607. $orgasm_txt = '<<$textsexhunter11>>'
  608. gs 'dinsex','sexcum'
  609. *pl
  610. '<<$textsexhunter3>>'
  611. gs 'arousal', 'vaginal', 5, 'sub'
  612. $orgasm_txt = ''
  613. gs 'arousal', 'end'
  614. gs 'stat'
  615. act 'Finish':gt $loc, $loc_arg
  616. end
  617. if $ARGS[0] = 'gadMisVag1':
  618. if boyAsex = 0: boyAsex = 1
  619. huntsexa = rand(1,5)
  620. if pcs_vag <= 25:horny_boyA += 20
  621. if pcs_vag > 25:horny_boyA += 10
  622. if pcs_horny < 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexmisvag1.1.jpg"></center>'
  623. if pcs_horny >= 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexmisvag1.2.jpg"></center>'
  624. 'You lie on your back, <<$boydesc>> moves to the side that with your exposed pussy waiting for him...'
  625. gs 'dinsex', 'boy_puts_condom'
  626. gs 'dinsex','vaginal_sex',10
  627. *pl
  628. *pl
  629. '<<$textsexhunter4>>'
  630. gs 'arousal', 'vaginal', 5, 'sub'
  631. gs 'stat'
  632. if horny_boyA < 100:
  633. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  634. if huntsexa = 2:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  635. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  636. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  637. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  638. else
  639. act 'Lie on the ground':gt 'mitkasex', 'gadHandsCum1'
  640. end
  641. end
  642. if $ARGS[0] = 'gadDogVag1':
  643. if boyAsex = 0: boyAsex = 1
  644. huntsexa = rand(1,5)
  645. if pcs_vag <= 25:horny_boyA += 20
  646. if pcs_vag > 25:horny_boyA += 10
  647. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexdogvag1.jpg"></center>'
  648. 'You bend over for <<$boydesc>> so he can penetrate your pussy...'
  649. gs 'dinsex', 'boy_puts_condom'
  650. gs 'dinsex','vaginal_sex',10
  651. *pl
  652. *pl
  653. '<<$textsexhunter4>>'
  654. gs 'arousal', 'vaginal', 5, 'sub'
  655. gs 'stat'
  656. if horny_boyA < 100:
  657. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  658. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  659. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  660. if huntsexa = 4:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  661. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  662. else
  663. act 'Suck':gt 'mitkasex', 'gadsexOral1'
  664. end
  665. end
  666. if $ARGS[0] = 'gadCowVag1':
  667. if boyAsex = 0: boyAsex = 1
  668. huntsexa = rand(1,5)
  669. if pcs_vag <= 25:horny_boyA += 20
  670. if pcs_vag > 25:horny_boyA += 10
  671. if pcs_horny < 60:
  672. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexcowvag1.'+rand(1,2)+'.jpg"></center>'
  673. else
  674. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexcowvag1.'+rand(3,4)+'.jpg"></center>'
  675. end
  676. '<<$boydesc>> lays on the ground, and you mount his cock...'
  677. gs 'dinsex', 'boy_puts_condom'
  678. gs 'dinsex','vaginal_sex',10
  679. *pl
  680. '<<$textsexhunter4>>'
  681. gs 'arousal', 'vaginal', 5, 'sub'
  682. gs 'stat'
  683. if horny_boyA < 100:
  684. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  685. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  686. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  687. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  688. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  689. else
  690. act 'Keep riding':gt 'mitkasex', 'gadCowVagCum1'
  691. end
  692. end
  693. if $ARGS[0] = 'gadCowVagCum1':
  694. pose = 0
  695. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexcowvagcum1.jpg"></center>'
  696. 'You jump on the guy''s cock gradually speeding up the pace, knowing that he will soon cum...'
  697. $orgasm_txt = '<<$textsexhunter11>>'
  698. gs 'arousal', 'vaginal', 5, 'sub'
  699. gs 'arousal', 'end'
  700. gs 'dinsex','sexcum'
  701. *pl
  702. '<<$textsexhunter3>>'
  703. gs 'stat'
  704. act 'Finish':gt $loc, $loc_arg
  705. end
  706. if $ARGS[0] = 'gadDogAnal1':
  707. if boyAsexa = 0: boyAsexa = 1
  708. huntsexa = rand(1,5)
  709. if pcs_ass <= 25:horny_boyA += 30
  710. if pcs_ass > 25:horny_boyA += 20
  711. dirty_dickA += 1
  712. if pcs_horny < 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexdoganal1.'+rand(1,2)+'.jpg"></center>'
  713. if pcs_horny >= 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexdoganal1.'+rand(3,4)+'.jpg"></center>'
  714. 'You bend over for <<$boydesc>> so he can penetrate your ass...'
  715. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  716. *pl
  717. *pl
  718. '<<$textsexhunter4>>'
  719. gs 'arousal', 'anal', 5, 'sub'
  720. gs 'stat'
  721. if horny_boyA < 100:
  722. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  723. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  724. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  725. if huntsexa = 4:act 'Sit down':gt 'mitkasex', 'gadCowAnal1'
  726. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  727. else
  728. act 'Make the boy cum':gt 'mitkasex', 'gadDogAnalCum1'
  729. end
  730. end
  731. if $ARGS[0] = 'gadDogAnalCum1':
  732. minut += 5
  733. pcs_horny += rand(5,10)
  734. pose = 1
  735. gs 'cum_call', 'anus', $boy, 1
  736. protect = 0
  737. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexdoganalcum1.jpg"></center>'
  738. 'You bend over, sticking out your ass, and feel <<$boydesc>> starts moving faster...'
  739. $orgasm_or = '<<$textsexhunter12>>'
  740. gs 'arousal', 'anal', 5, 'sub'
  741. $orgasm_or = ''
  742. gs 'arousal', 'end'
  743. 'After a while <<$boydesc>> moaned and you feel your ass fill with warm cum.'
  744. *pl
  745. '<<$textsexhunter3>>'
  746. gs 'stat'
  747. act 'Finish':gt $loc, $loc_arg
  748. end
  749. if $ARGS[0] = 'gadCowAnal1':
  750. if boyAsexa = 0: boyAsexa = 1
  751. huntsexa = rand(1,5)
  752. if pcs_ass <= 25:horny_boyA += 30
  753. if pcs_ass > 25:horny_boyA += 20
  754. dirty_dickA += 1
  755. if pcs_horny < 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexcowanal1.'+rand(1,2)+'.jpg"></center>'
  756. if pcs_horny >= 60:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexcowanal1.'+rand(3,4)+'.jpg"></center>'
  757. '<<$boydesc>> lays on the ground, and you mount his cock...'
  758. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  759. *pl
  760. '<<$textsexhunter4>>'
  761. gs 'arousal', 'anal', 5, 'sub'
  762. gs 'stat'
  763. if horny_boyA < 100:
  764. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'gadSideVag1'
  765. if huntsexa = 2:act 'Lie on your back':gt 'mitkasex', 'gadMisVag1'
  766. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'gadCowVag1'
  767. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'gadDogVag1'
  768. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'gadDogAnal1'
  769. else
  770. act 'Lie on the ground':gt 'mitkasex', 'gadHandsCum1'
  771. end
  772. end
  773. if $ARGS[0] = 'gadHandsCum1':
  774. *clr & cla
  775. protect = 0
  776. gs 'cum_call', 'stomach', $boy, 1
  777. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagadsexhandscum1.'+rand(1,2)+'.jpg"></center>'
  778. 'You are lie on the ground. <<$boydesc>>, feeling the approaching orgasm, pulls out of you tells you to jerk him off. You went to work and were soon rewarded for your diligence, he groaned and you felt hot drops of sperm spray on your body.'
  779. '<<$textsexhunter3>>'
  780. gs 'arousal', 'hj', 5, 'sub'
  781. gs 'arousal', 'end'
  782. gs 'stat'
  783. act 'Finish':gt $loc, $loc_arg
  784. end
  785. ! One guy vs GG and Mira
  786. if $ARGS[0] = 'forestOral1_1':
  787. huntsexa = rand(1,7)
  788. if pcs_throat <= 15:horny_boyA += 5
  789. if pcs_throat > 15:horny_boyA += 10
  790. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoral1_1.jpg"></center>'
  791. 'Mira watches as you kneel in front of a boy. <<$boydesc>> takes his <<dick>>cm dick and brings it to your lips...'
  792. 'Mira stands by your side, not interfering with the process.'
  793. *pl
  794. '<<$textsexhunter4>>'
  795. gs 'arousal', 'bj', 5, 'sub', 'group'
  796. gs 'stat'
  797. if horny_boyA < 100:
  798. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide1_1'
  799. if huntsexa = 2:act 'Watch':gt 'mitkasex', 'forestSide1_2'
  800. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow1_1'
  801. if huntsexa = 4:act 'Watch':gt 'mitkasex', 'forestCow1_2'
  802. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'forestDog1_1'
  803. if huntsexa = 6:act 'Watch':gt 'mitkasex', 'forestDog1_2'
  804. if huntsexa = 7:act 'Doggy':gt 'mitkasex', 'forestDog1_3'
  805. else
  806. act 'Suck on':gt 'mitkasex', 'forestOralCum1_1'
  807. end
  808. end
  809. if $ARGS[0] = 'forestOral1_2':
  810. huntsexa = rand(1,7)
  811. if pcs_throat <= 15:horny_boyA += 5
  812. if pcs_throat > 15:horny_boyA += 10
  813. if mirasextimes < 50:horny_boyA += 5
  814. if mirasextimes >= 50:horny_boyA += 10
  815. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoral1_2.'+rand(1,2)+'.jpg"></center>'
  816. 'You and Mira are on your knees before the guy. <<$boydesc>> takes his <<dick>> cm dick, and brings it to your lips...'
  817. 'Mira is below, caressing his balls with her tongue, giving him extra pleasure.'
  818. *pl
  819. '<<$textsexhunter4>>'
  820. gs 'arousal', 'bj', 5, 'sub', 'group'
  821. gs 'stat'
  822. if horny_boyA < 100:
  823. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide1_1'
  824. if huntsexa = 2:act 'Watch':gt 'mitkasex', 'forestSide1_2'
  825. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow1_1'
  826. if huntsexa = 4:act 'Watch':gt 'mitkasex', 'forestCow1_2'
  827. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'forestDog1_1'
  828. if huntsexa = 6:act 'Watch':gt 'mitkasex', 'forestDog1_2'
  829. if huntsexa = 7:act 'Doggy':gt 'mitkasex', 'forestDog1_3'
  830. else
  831. act 'Suck on':gt 'mitkasex', 'forestOralCum1_1'
  832. end
  833. end
  834. if $ARGS[0] = 'forestOral1_3':
  835. huntsexa = rand(1,7)
  836. if pcs_throat <= 15:horny_boyA += 5
  837. if pcs_throat > 15:horny_boyA += 10
  838. if mirasextimes < 50:horny_boyA += 5
  839. if mirasextimes >= 50:horny_boyA += 10
  840. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoral1_3.'+rand(1,2)+'.jpg"></center>'
  841. 'You see Mira kneel in front of a boy. <<$boydesc>> takes his <<dick>> cm dick, brings it to her lips...'
  842. 'You and Mira hard suck and lick the guy''s dick, your lips and tongues touching and sometimes, merging in this kind of kiss.'
  843. *pl
  844. '<<$textsexhunter4>>'
  845. gs 'arousal', 'bj', 5, 'sub', 'group'
  846. gs 'stat'
  847. if horny_boyA < 100:
  848. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide1_1'
  849. if huntsexa = 2:act 'Watch':gt 'mitkasex', 'forestSide1_2'
  850. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow1_1'
  851. if huntsexa = 4:act 'Watch':gt 'mitkasex', 'forestCow1_2'
  852. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'forestDog1_1'
  853. if huntsexa = 6:act 'Watch':gt 'mitkasex', 'forestDog1_2'
  854. if huntsexa = 7:act 'Doggy':gt 'mitkasex', 'forestDog1_3'
  855. else
  856. act 'Suck on':gt 'mitkasex', 'forestOralCum1_1'
  857. end
  858. end
  859. if $ARGS[0] = 'forestOralCum1_1':
  860. minut += 5
  861. gs 'cum_call', 'mouth_swallow', $boy, 1
  862. protect = 0
  863. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoralcuml1_1.jpg"></center>'
  864. 'Realizing that <<$boydesc>> will soon tire out, you increase your pace. Mira stands by your side, not interfering with the process.'
  865. gs 'oral','start'
  866. gs 'dinsex', 'bj_swallow_random'
  867. *pl
  868. '<<$textsexhunter10>>'
  869. gs 'arousal', 'end'
  870. gs 'stat'
  871. act 'Finish':gt $loc, $loc_arg
  872. end
  873. if $ARGS[0] = 'forestSide1_1':
  874. huntsexa = rand(1,6)
  875. if pcs_vag <= 25:horny_boyA += 20
  876. if pcs_vag > 25:horny_boyA += 10
  877. if boyAsex = 0: boyAsex = 1
  878. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexside1_1.jpg"></center>'
  879. 'You lie on your side, <<$boydesc>> rubs up against your pussy...'
  880. gs 'dinsex', 'boy_puts_condom'
  881. gs 'dinsex','vaginal_sex',10
  882. *pl
  883. 'Mira is lying next to you and watches his <<dick>> centimeter piston hammer in your <<$vaginatipe2>> vagina.'
  884. *pl
  885. '<<$textsexhunter4>>'
  886. gs 'arousal', 'vaginal', 5, 'sub', 'rough', 'group'
  887. gs 'stat'
  888. if horny_boyA < 100:
  889. if huntsexa = 1:act 'Watch':gt 'mitkasex', 'forestSide1_2'
  890. if huntsexa = 2:act 'Sit down':gt 'mitkasex', 'forestCow1_1'
  891. if huntsexa = 3:act 'Watch':gt 'mitkasex', 'forestCow1_2'
  892. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestDog1_1'
  893. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestDog1_2'
  894. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'forestDog1_3'
  895. else
  896. act 'Lie on your side':gt 'mitkasex', 'forestSideCum1_1'
  897. end
  898. end
  899. if $ARGS[0] = 'forestSideCum1_1':
  900. pose = 1
  901. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexsidecum1_1.jpg"></center>'
  902. 'You lie on your side, slightly changing the pose as <<$boydesc>> gradually starts to move faster...'
  903. $orgasm_txt = '<<$textsexhunter11>>'
  904. gs 'arousal', 'vaginal', 5, 'sub', 'rough', 'group'
  905. gs 'arousal', 'end'
  906. gs 'dinsex','sexcum'
  907. *pl
  908. '<<$textsexhunter10>>'
  909. gs 'stat'
  910. act 'Finish':gt $loc, $loc_arg
  911. end
  912. if $ARGS[0] = 'forestSide1_2':
  913. if mirasextimes < 50:horny_boyA += 20
  914. if mirasextimes >= 50:horny_boyA += 10
  915. pose = 1
  916. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexside1_2.jpg"></center>'
  917. if mirasextimes < 50:'You lie next to Mira and watch <<$boydesc>> <<dick>> cm cock ram her developed pussy.'
  918. if mirasextimes >= 50:'You lie next to Mira and watch <<$boydesc>> <<dick>> cm cock rams her gaping vagina.'
  919. '<<$textsexhunter4>>'
  920. gs 'arousal', 'vaginal', 5, 'sub', 'rough', 'group'
  921. gs 'stat'
  922. if horny_boyA < 100:
  923. huntsexa = rand(1,6)
  924. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide1_1'
  925. if huntsexa = 2:act 'Sit down':gt 'mitkasex', 'forestCow1_1'
  926. if huntsexa = 3:act 'Watch':gt 'mitkasex', 'forestCow1_2'
  927. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestDog1_1'
  928. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestDog1_2'
  929. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'forestDog1_3'
  930. else
  931. huntsexa = rand(1,3)
  932. if huntsexa = 1:act 'Suck':gt 'mitkasex', 'forestOral1_1'
  933. if huntsexa = 2:act 'Suck':gt 'mitkasex', 'forestOral1_2'
  934. if huntsexa = 3:act 'Suck':gt 'mitkasex', 'forestOral1_3'
  935. end
  936. end
  937. if $ARGS[0] = 'forestCow1_1':
  938. huntsexa = rand(1,6)
  939. if pcs_vag <= 25:horny_boyA += 20
  940. if pcs_vag > 25:horny_boyA += 10
  941. if boyAsex = 0: boyAsex = 1
  942. if miralesb = 0:
  943. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcow1_1.jpg"></center>'
  944. else
  945. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexccowkiss1_2.jpg"></center>'
  946. pcs_horny += 5
  947. end
  948. '<<$boydesc>> lays on the ground, and you mount his cock...'
  949. gs 'dinsex', 'boy_puts_condom'
  950. gs 'dinsex','vaginal_sex',10
  951. *pl
  952. if miralesb = 0:'Mira lying next to you and watches as you jump on his penis.'
  953. if miralesb > 2:'While you jump on the guy, Mira, kisses your lips, and feels how your body shakes to the rhythmic beats of the member pounding you.'
  954. *pl
  955. '<<$textsexhunter4>>'
  956. gs 'arousal', 'vaginal', 5, 'sub', 'rough', 'group'
  957. gs 'stat'
  958. if horny_boyA < 100:
  959. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide1_1'
  960. if huntsexa = 2:act 'Watch':gt 'mitkasex', 'forestSide1_2'
  961. if huntsexa = 3:act 'Watch':gt 'mitkasex', 'forestCow1_2'
  962. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestDog1_1'
  963. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestDog1_2'
  964. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'forestDog1_3'
  965. else
  966. act 'Keep riding':gt 'mitkasex', 'forestSideCum1_1'
  967. end
  968. end
  969. if $ARGS[0] = 'forestSideCum1_1':
  970. pose = 1
  971. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcowcum1_1.jpg"></center>'
  972. 'You jump on the guy''s cock gradually speeding up the pace, knowing that he will soon cum...'
  973. gs 'dinsex','sexcum'
  974. gs 'arousal', 'vaginal', 5, 'sub', 'rough', 'group'
  975. gs 'arousal', 'end'
  976. *nl
  977. '<<$textsexhunter10>>'
  978. gs 'stat'
  979. act 'Finish':gt $loc, $loc_arg
  980. end
  981. if $ARGS[0] = 'forestCow1_2':
  982. huntsexa = rand(1,6)
  983. if mirasextimes < 50:horny_boyA += 20
  984. if mirasextimes >= 50:horny_boyA += 10
  985. pose = 1
  986. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcow1_1.jpg"></center>'
  987. if mirasextimes < 50:'You sit beside a guy and watch as Mira jumps on his dick. Simultaneously <<$boydesc>>, puts his hand between your legs, and shoves his fingers in your pussy, gradually arousing you.'
  988. if mirasextimes >= 50:'You sit beside a guy and watch as Mira gaping vagina swallows his whole <<dick>> cm dick. Simultaneously <<$boydesc>>, puts his hand between your legs, and shoves his fingers in your pussy, gradually arousing you.'
  989. if miralesb > 0:'You can bend over and kiss <a href="exec:gt ''mitkasex'', ''forestCowKiss1_1''">Mira</a>.'
  990. $orgasm_txt = '<<$textsexhunter11>>'
  991. gs 'arousal', 'bj', 5, 'sub', 'group'
  992. $orgasm_txt = ''
  993. 'You can take the cock out of Mira and <a href="exec:gt ''mitkasex'', ''forestCowOral1_1''">suck</a> it.'
  994. '<<$textsexhunter4>>'
  995. gs 'stat'
  996. if horny_boyA < 100:
  997. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide1_1'
  998. if huntsexa = 2:act 'Watch':gt 'mitkasex', 'forestSide1_2'
  999. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow1_1'
  1000. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestDog1_1'
  1001. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestDog1_2'
  1002. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'forestDog1_3'
  1003. else
  1004. act 'Make him cum':gt 'mitkasex', 'forestCowCum1_2'
  1005. end
  1006. end
  1007. if $ARGS[0] = 'forestCowKiss1_1':
  1008. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexccowkiss1_1.jpg"></center>'
  1009. 'Watching Mira ride on the cock, you suddenly wanted to kiss her. You brought your lips to hers and they merged in a passionate kiss. You can feel the rhythmic tremors of her body as she gets pounded from below.'
  1010. *pl
  1011. '<<$textsexhunter4>>'
  1012. gs 'arousal', 'kiss', 5, 'lesbian'
  1013. gs 'stat'
  1014. if horny_boyA < 100:
  1015. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide1_1'
  1016. if huntsexa = 2:act 'Watch':gt 'mitkasex', 'forestSide1_2'
  1017. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow1_1'
  1018. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestDog1_1'
  1019. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestDog1_2'
  1020. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'forestDog1_3'
  1021. else
  1022. act 'Make him cum':gt 'mitkasex', 'forestCowCum1_2'
  1023. end
  1024. end
  1025. if $ARGS[0] = 'forestCowCum1_2':
  1026. minut += 1
  1027. pcs_horny += 5
  1028. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcowcum1_2.jpg"></center>'
  1029. 'Mira rides on the cock gradually speeding up the pace. Suddenly <<$boydesc>> groaned and realized that he had finished in Mira.'
  1030. *pl
  1031. '<<$textsexhunter10>>'
  1032. gs 'arousal', 'end'
  1033. gs 'stat'
  1034. act 'Finish':gt $loc, $loc_arg
  1035. end
  1036. if $ARGS[0] = 'forestCowOral1_1':
  1037. if pcs_throat <= 15:horny_boyA += 5
  1038. if pcs_throat > 15:horny_boyA += 10
  1039. if horny_boyA < 100:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexccoworal1_1.jpg"></center>'
  1040. if horny_boyA >= 100:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexccoworalcuml1_1.jpg"></center>'
  1041. 'Removing the member from Mira''s vagina of you bring it to your lips...'
  1042. gs 'oral','start'
  1043. if horny_boyA >= 100:
  1044. gs 'cum_call', 'mouth_swallow', $boy, 1
  1045. gs 'dinsex', 'bj_swallow_random'
  1046. end
  1047. *pl
  1048. if horny_boyA < 100:'<<$textsexhunter4>>'
  1049. if horny_boyA >= 100:'<<$textsexhunter10>>'
  1050. *pl
  1051. gs 'arousal', 'bj', 5, 'sub', 'group'
  1052. gs 'stat'
  1053. if horny_boyA < 100:
  1054. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide1_1'
  1055. if huntsexa = 2:act 'Watch':gt 'mitkasex', 'forestSide1_2'
  1056. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow1_1'
  1057. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestDog1_1'
  1058. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestDog1_2'
  1059. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'forestDog1_3'
  1060. else
  1061. act 'Finish':gt $loc, $loc_arg
  1062. end
  1063. end
  1064. if $ARGS[0] = 'forestDog1_1':
  1065. huntsexa = rand(1,6)
  1066. if pcs_vag <= 25:horny_boyA += 20
  1067. if pcs_vag > 25:horny_boyA += 10
  1068. if boyAsex = 0: boyAsex = 1
  1069. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdog1_1.'+rand(1,2)+'.jpg"></center>'
  1070. 'You bend over for <<$boydesc>> so he can penetrate your pussy...'
  1071. gs 'dinsex', 'boy_puts_condom'
  1072. gs 'dinsex','vaginal_sex',10
  1073. *pl
  1074. 'Mira sits on her knees next to you and watches the <<dick>> centimeter piston hammer in your <<$vaginatipe2>> vagina.'
  1075. *pl
  1076. '<<$textsexhunter4>>'
  1077. gs 'arousal', 'vaginal', 5, 'sub', 'rough', 'group'
  1078. gs 'stat'
  1079. if horny_boyA < 100:
  1080. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide1_1'
  1081. if huntsexa = 2:act 'Watch':gt 'mitkasex', 'forestSide1_2'
  1082. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow1_1'
  1083. if huntsexa = 4:act 'Watch':gt 'mitkasex', 'forestCow1_2'
  1084. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestDog1_2'
  1085. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'forestDog1_3'
  1086. else
  1087. act 'Make him cum':gt 'mitkasex', 'forestDogCum1_1'
  1088. end
  1089. end
  1090. if $ARGS[0] = 'forestDogCum1_1':
  1091. pose = 1
  1092. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdogcum1_1.jpg"></center>'
  1093. 'You bend over, sticking out your ass, and feel <<$boydesc>> start moving faster...'
  1094. if pcs_horny >= 100:'<<$textsexhunter11>>' & orgasm += 1 & vaginalOrgasm += 1 & pcs_horny = 0 & pcs_mood += 15
  1095. $orgasm_or = 'yes'
  1096. gs 'stat'
  1097. gs 'dinsex','sexcum'
  1098. *pl
  1099. '<<$textsexhunter10>>'
  1100. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1101. gs 'arousal', 'end'
  1102. gs 'stat'
  1103. act 'Finish':gt $loc, $loc_arg
  1104. end
  1105. if $ARGS[0] = 'forestDog1_2':
  1106. huntsexa = rand(1,6)
  1107. if mirasextimes < 50:horny_boyA += 20
  1108. if mirasextimes >= 50:horny_boyA += 10
  1109. pose = 1
  1110. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdog1_2.'+rand(1,2)+'.jpg"></center>'
  1111. if mirasextimes < 50:'You''re standing near Mira and watch <<$boydesc>> <<dick>> cm cock ram her developed pussy.'
  1112. if mirasextimes >= 50:'You''re standing near Mira and watch <<$boydesc>> <<dick>> cm cock ram her gaping vagina.'
  1113. '<<$textsexhunter4>>'
  1114. gs 'arousal', 'voyeur_sex', 5, 'sub', 'group'
  1115. gs 'stat'
  1116. if horny_boyA < 100:
  1117. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide1_1'
  1118. if huntsexa = 2:act 'Watch':gt 'mitkasex', 'forestSide1_2'
  1119. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow1_1'
  1120. if huntsexa = 4:act 'Watch':gt 'mitkasex', 'forestCow1_2'
  1121. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'forestDog1_1'
  1122. if huntsexa = 6:act 'Doggy':gt 'mitkasex', 'forestDog1_3'
  1123. else
  1124. act 'Make him cum':gt 'mitkasex', 'forestDogCum1_2'
  1125. end
  1126. end
  1127. if $ARGS[0] = 'forestDogCum1_2':
  1128. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdogcum1_2.jpg"></center>'
  1129. 'You see that <<$boydesc>>, in Mira, gradually accelerating his pace. Suddenly <<$boydesc>> groaned and realized that he was came inside her.'
  1130. *pl
  1131. '<<$textsexhunter10>>'
  1132. gs 'arousal', 'voyeur_sex', 1, 'sub', 'group'
  1133. gs 'arousal', 'end'
  1134. gs 'stat'
  1135. act 'Finish':gt $loc, $loc_arg
  1136. end
  1137. if $ARGS[0] = 'forestDog1_3':
  1138. huntsexa = rand(1,6)
  1139. if pcs_vag <= 25:horny_boyA += 20
  1140. if pcs_vag > 25:horny_boyA += 10
  1141. if boyAsex = 0: boyAsex = 1
  1142. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdog1_3.'+rand(1,2)+'.jpg"></center>'
  1143. '<<$boydesc>> bends you over with Mira perched on top on your back, making a kind of sandwich. After this construction he began thrust into your pussy...'
  1144. gs 'dinsex', 'boy_puts_condom'
  1145. gs 'dinsex','vaginal_sex',10
  1146. *pl
  1147. 'After a while he pulled out his cock, he shoved it in Mira. You can feel her body tremble under his rhythmic strokes, rocking you at the same time in sync.'
  1148. *pl
  1149. '<<$textsexhunter4>>'
  1150. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1151. gs 'stat'
  1152. if horny_boyA < 100:
  1153. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide1_1'
  1154. if huntsexa = 2:act 'Watch':gt 'mitkasex', 'forestSide1_2'
  1155. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow1_1'
  1156. if huntsexa = 4:act 'Watch':gt 'mitkasex', 'forestCow1_2'
  1157. if huntsexa = 5:act 'Doggy':gt 'mitkasex', 'forestDog1_1'
  1158. if huntsexa = 6:act 'Watch':gt 'mitkasex', 'forestDog1_2'
  1159. else
  1160. act 'Doggy':gt 'mitkasex', 'forestDogCum1_3'
  1161. end
  1162. end
  1163. if $ARGS[0] = 'forestDogCum1_2':
  1164. minut += 5
  1165. pose = 1
  1166. gs 'cum_call', 'butt', $boy
  1167. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdogcum1_3.'+rand(1,2)+'.jpg"></center>'
  1168. 'Feeling the approaching orgasm <<$boydesc>> puts and Mira next to each other and began stroking his penis. Soon he groaned and you feel warm drops of cum on your ass.'
  1169. '<<$textsexhunter10>>'
  1170. gs 'arousal', 'end'
  1171. gs 'stat'
  1172. act 'Finish':gt $loc, $loc_arg
  1173. end
  1174. ! Two guys vs GG and Mira
  1175. if $ARGS[0] = 'forestOral2_1':
  1176. huntsexa = rand(1,3)
  1177. if pcs_throat <= 15:horny_boyA += 5
  1178. if pcs_throat > 15:horny_boyA += 10
  1179. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoral2_1.'+rand(1,2)+'.jpg"></center>'
  1180. 'You kneel in front of a boy. <<$boydesc>> takes his <<dick>> cm dick and brings it to your lips...'
  1181. gs 'oral','start'
  1182. !'<<$textsexhunter8>>'
  1183. *pl
  1184. '<a href="exec:gt ''mitkasex'', ''forestOral_mira2_1''">Mira</a> is squatting nearby.'
  1185. if mirasextimes < 50:horny_boyB += 5
  1186. if mirasextimes >= 50:horny_boyB += 10
  1187. *pl
  1188. '<<$textsexhunter4>>'
  1189. gs 'arousal', 'bj', 5, 'sub', 'group'
  1190. gs 'stat'
  1191. if horny_boyA < 100:
  1192. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestCow2_1'
  1193. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestDog2_1'
  1194. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestDog2_2'
  1195. else
  1196. act 'Suck on':gt 'mitkasex', 'forestOralCum2_1'
  1197. end
  1198. end
  1199. if $ARGS[0] = 'forestDog2_1':
  1200. if pcs_vag <= 25:horny_boyA += 20
  1201. if pcs_vag > 25:horny_boyA += 10
  1202. if mirasextimes < 50:horny_boyB += 5
  1203. if mirasextimes >= 50:horny_boyB += 10
  1204. if boyAsex = 0: boyAsex = 1
  1205. pose = 1
  1206. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdog2_1.'+rand(1,2)+'.jpg"></center>'
  1207. 'You bend over before the guy, so he can penetrate you from behind...'
  1208. gs 'dinsex', 'boy_puts_condom'
  1209. gs 'dinsex','vaginal_sex',10
  1210. *pl
  1211. 'You hear Mira, slightly moaning and swaying to the beat of the thrusts of the second guy fucking her next to you.'
  1212. if horny_boyB >= 100:'Suddenly the guy grabs her hair and setting himself on his knees, starts to masturbate in front of her face.'
  1213. *pl
  1214. '<<$textsexhunter4>>'
  1215. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1216. gs 'stat'
  1217. if horny_boyA < 100 and horny_boyB < 100:
  1218. huntsexa = rand(1,2)
  1219. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide2_1'
  1220. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestDog2_2'
  1221. elseif horny_boyA < 100 and horny_boyB >= 100:
  1222. huntsexa = rand(1,3)
  1223. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide2_2'
  1224. if huntsexa = 2:act 'Lie on your side':gt 'mitkasex', 'forestSide2_3'
  1225. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow2_1'
  1226. else
  1227. act 'Kneel':gt 'mitkasex', 'forestOralCum2_1'
  1228. end
  1229. end
  1230. if $ARGS[0] = 'forestDog2_2':
  1231. if pcs_vag <= 25:horny_boyA += 20
  1232. if pcs_vag > 25:horny_boyA += 10
  1233. if mirasextimes < 50:horny_boyB += 20
  1234. if mirasextimes >= 50:horny_boyB += 10
  1235. pose = 1
  1236. if boyAsex = 0: boyAsex = 1
  1237. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdog2_2.'+rand(1,2)+'.jpg"></center>'
  1238. 'You bend over before the guy, so he can penetrate you from behind...'
  1239. gs 'dinsex', 'boy_puts_condom'
  1240. gs 'dinsex','vaginal_sex',10
  1241. *pl
  1242. 'Near you the second guy rides Mira.'
  1243. if horny_boyB >= 100:'Suddenly the guy rudely pushes her off and setting himself on his knees, starts to masturbate in front of her face.'
  1244. *pl
  1245. '<<$textsexhunter4>>'
  1246. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1247. gs 'stat'
  1248. if horny_boyA < 100 and horny_boyB < 100:
  1249. huntsexa = rand(1,2)
  1250. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestCow2_1'
  1251. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestDog2_1'
  1252. elseif horny_boyA < 100 and horny_boyB >= 100:
  1253. huntsexa = rand(1,3)
  1254. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide2_2'
  1255. if huntsexa = 2:act 'Lie on your side':gt 'mitkasex', 'forestSide2_3'
  1256. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow2_1'
  1257. else
  1258. act 'Kneel':gt 'mitkasex', 'forestOralCum2_1'
  1259. end
  1260. end
  1261. if $ARGS[0] = 'forestDogSide2_1':
  1262. if pcs_vag <= 25:horny_boyA += 20
  1263. if pcs_vag > 25:horny_boyA += 10
  1264. if mirasextimes < 50:horny_boyB += 20
  1265. if mirasextimes >= 50:horny_boyB += 10
  1266. pose = 1
  1267. if boyAsex = 0: boyAsex = 1
  1268. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexside2_1.'+rand(1,2)+'.jpg"></center>'
  1269. 'You lie on your side, <<$boydesc>> rubs up against your pussy...'
  1270. gs 'dinsex', 'boy_puts_condom'
  1271. gs 'dinsex','vaginal_sex',10
  1272. *pl
  1273. 'Right in front of you Mira is enthusiastically sucking the second guy.'
  1274. if horny_boyB >= 100:'Suddenly the guy pops his cock out of her mouth and starts to jerk off in front of her face.'
  1275. *pl
  1276. '<<$textsexhunter4>>'
  1277. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1278. gs 'stat'
  1279. if horny_boyA < 100 and horny_boyB < 100:
  1280. huntsexa = rand(1,2)
  1281. if huntsexa = 1:act 'Doggy':gt 'mitkasex', 'forestDog2_1'
  1282. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestDog2_2'
  1283. elseif horny_boyA < 100 and horny_boyB >= 100:
  1284. !boyB_cum = 1
  1285. huntsexa = rand(1,3)
  1286. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide2_2'
  1287. if huntsexa = 2:act 'Lie on your side':gt 'mitkasex', 'forestSide2_3'
  1288. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow2_1'
  1289. else
  1290. act 'Kneel':gt 'mitkasex', 'forestOralCum2_1'
  1291. end
  1292. end
  1293. if $ARGS[0] = 'forestOralCum2_1':
  1294. minut += 5
  1295. gs 'cum_call', 'mouth_swallow', $boy, 1
  1296. gs 'cum_call', 'face', $boy, 1
  1297. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoralcum2_1.jpg"></center>'
  1298. 'You are on your knees before a guy, his cock in front of your face...'
  1299. gs 'oral','start'
  1300. !'<<$textsexhunter8>>'
  1301. gs 'dinsex', 'bj_swallow_random'
  1302. '<<$textsexhunter3>>'
  1303. *pl
  1304. if horny_boyB < 100 and boyB_cum = 0:
  1305. temp_ms = rand(1,2)
  1306. if temp_ms = 1:'Near you moaning <a href="exec:gt ''mitkasex'', ''forestDog_mira2_1''">Mira</a>.'
  1307. if temp_ms = 2:'Near you moaning <a href="exec:gt ''mitkasex'', ''forestCow_mira2_1''">Mira</a>.'
  1308. elseif horny_boyB >= 100 and boyB_cum = 0:
  1309. 'Near you is on her knees with her mouth open is <a href="exec:gt ''mitkasex'', ''forestOralCum_mira2_1''">Mira</a>.'
  1310. else
  1311. 'Mira is sitting on the ground near you, waiting for you to finish, and occasionally throwing glances in your direction.'
  1312. end
  1313. protect = 0
  1314. *pl
  1315. if boyB_cum = 0:
  1316. gs 'arousal', 'end'
  1317. gs 'stat'
  1318. act 'Continue':gt 'mitkasex', 'forestRelax2'
  1319. else
  1320. gs 'arousal', 'end'
  1321. gs 'stat'
  1322. boyB_cum = 0
  1323. act 'Finish':gt $loc, $loc_arg
  1324. end
  1325. end
  1326. if $ARGS[0] = 'forestRelax2':
  1327. minut += 5
  1328. gs 'stat'
  1329. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexrelax2.jpg"></center>'
  1330. 'You are done for now and watch as Mira contines to get fucked.'
  1331. if horny_boyB < 100:
  1332. temp_ms = rand(1,2)
  1333. if temp_ms = 1:act 'Watch':gt 'mitkasex', 'forestDog_mira2_1'
  1334. if temp_ms = 2:act 'Watch':gt 'mitkasex', 'forestCow_mira2_1'
  1335. else
  1336. act 'Watch':gt 'mitkasex', 'forestOralCum_mira2_1'
  1337. end
  1338. end
  1339. if $ARGS[0] = 'forestSide2_2':
  1340. temp_ms = rand(1,3)
  1341. huntsexa = rand(1,5)
  1342. if pcs_vag <= 25:horny_boyA += 20
  1343. if pcs_vag > 25:horny_boyA += 10
  1344. pose = 1
  1345. if boyAsex = 0: boyAsex = 1
  1346. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexside2_2.'+rand(1,2)+'.jpg"></center>'
  1347. 'You lie on your side, <<$boydesc>> rubs up against your pussy...'
  1348. gs 'dinsex', 'boy_puts_condom'
  1349. gs 'dinsex','vaginal_sex',10
  1350. *pl
  1351. if horny_boyA < 100 and boyB_cum = 0:'Near you on her knees with her mouth open is <a href="exec:gt ''mitkasex'', ''forestOralCum_mira2_1''">Mira</a>.'
  1352. if horny_boyA >= 100 and boyB_cum = 0:'Near you the second guy cums straight into Mira''s wide open mouth.'
  1353. if boyB_cum = 1:'Mira is sitting on the ground near you, waiting for you to finish, and occasionally throwing glances in your direction.'
  1354. *pl
  1355. '<<$textsexhunter4>>'
  1356. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1357. gs 'stat'
  1358. boyB_cum = 1
  1359. if horny_boyA < 100:
  1360. huntsexa = rand(1,2)
  1361. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide2_3'
  1362. if huntsexa = 2:act 'Sit down':gt 'mitkasex', 'forestCow2_1'
  1363. else
  1364. act 'Kneel':gt 'mitkasex', 'forestOralCum2_1'
  1365. end
  1366. end
  1367. if $ARGS[0] = 'forestSide2_3':
  1368. temp_ms = rand(1,3)
  1369. huntsexa = rand(1,5)
  1370. if pcs_vag <= 25:horny_boyA += 20
  1371. if pcs_vag > 25:horny_boyA += 10
  1372. pose = 1
  1373. if boyAsex = 0: boyAsex = 1
  1374. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexside2_3.'+rand(1,2)+'.jpg"></center>'
  1375. 'You lie on your side, <<$boydesc>> rubs up against your pussy...'
  1376. gs 'dinsex', 'boy_puts_condom'
  1377. gs 'dinsex','vaginal_sex',10
  1378. *pl
  1379. if horny_boyA < 100 and boyB_cum = 0:'Near you on her knees with her mouth open is <a href="exec:gt ''mitkasex'', ''forestOralCum_mira2_1''">Mira</a>.'
  1380. if horny_boyA >= 100 and boyB_cum = 0:'Near you the second guy cums straight into Mira''s wide open mouth.'
  1381. if boyB_cum = 1:'Mira is sitting on the ground near you, waiting for you to finish, and occasionally throwing glances in your direction.'
  1382. *pl
  1383. '<<$textsexhunter4>>'
  1384. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1385. gs 'stat'
  1386. boyB_cum = 1
  1387. if horny_boyA < 100:
  1388. huntsexa = rand(1,2)
  1389. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide2_2'
  1390. if huntsexa = 2:act 'Sit down':gt 'mitkasex', 'forestCow2_1'
  1391. else
  1392. act 'Kneel':gt 'mitkasex', 'forestOralCum2_1'
  1393. end
  1394. end
  1395. if $ARGS[0] = 'forestCow2_1':
  1396. temp_ms = rand(1,3)
  1397. huntsexa = rand(1,5)
  1398. if pcs_vag <= 25:horny_boyA += 20
  1399. if pcs_vag > 25:horny_boyA += 10
  1400. pose = 1
  1401. if boyAsex = 0: boyAsex = 1
  1402. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcow2_1.'+rand(1,2)+'.jpg"></center>'
  1403. '<<$boydesc>> lies down you, throwing a leg across his body while he gets on top of you...'
  1404. gs 'dinsex', 'boy_puts_condom'
  1405. gs 'dinsex','vaginal_sex',10
  1406. *pl
  1407. if horny_boyA < 100 and boyB_cum = 0:'Near you on her knees with her mouth open is <a href="exec:gt ''mitkasex'', ''forestOralCum_mira2_1''">Mira</a>.'
  1408. if horny_boyA >= 100 and boyB_cum = 0:'Near you the second guy cums straight into Mira''s wide open mouth.'
  1409. if boyB_cum = 1:'Mira is sitting on the ground near you, waiting for you to finish, and occasionally throwing glances in your direction.'
  1410. *pl
  1411. '<<$textsexhunter4>>'
  1412. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1413. gs 'stat'
  1414. boyB_cum = 1
  1415. if horny_boyA < 100:
  1416. huntsexa = rand(1,2)
  1417. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide2_2'
  1418. if huntsexa = 2:act 'Lie on your side':gt 'mitkasex', 'forestSide2_3'
  1419. else
  1420. act 'Kneel':gt 'mitkasex', 'forestOralCum2_1'
  1421. end
  1422. end
  1423. if $ARGS[0] = 'forestOral_mira2_1':
  1424. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoral_mira2_1.'+rand(1,2)+'.jpg"></center>'
  1425. 'Stealing a gaze to the side, you see Mira, diligently sucking the second guy.'
  1426. '<<$textsexhunter4>>'
  1427. gs 'arousal', 'voyeur_sex', 1, 'sub', 'group'
  1428. gs 'stat'
  1429. if horny_boyA < 100:
  1430. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestCow2_1'
  1431. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestDog2_1'
  1432. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestDog2_2'
  1433. else
  1434. act 'Suck on':gt 'mitkasex', 'forestOralCum2_1'
  1435. end
  1436. end
  1437. if $ARGS[0] = 'forestRelax2':
  1438. boyB_cum = 1
  1439. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoralcum_mira2_1.jpg"></center>'
  1440. 'Looking towards Mira, you see the guy cum in her open mouth while she kneels before him.'
  1441. gs 'arousal', 'voyeur_sex', 1
  1442. gs 'stat'
  1443. if horny_boyA < 100:
  1444. '<<$textsexhunter4>>'
  1445. huntsexa = rand(1,3)
  1446. if huntsexa = 1:act 'Lie on your side':gt 'mitkasex', 'forestSide2_2'
  1447. if huntsexa = 2:act 'Lie on your side':gt 'mitkasex', 'forestSide2_3'
  1448. if huntsexa = 3:act 'Sit down':gt 'mitkasex', 'forestCow2_1'
  1449. else
  1450. gs 'arousal', 'end'
  1451. gs 'stat'
  1452. act 'Finish':gt $loc, $loc_arg
  1453. end
  1454. end
  1455. if $ARGS[0] = 'forestDog_mira2_1':
  1456. if mirasextimes < 50:horny_boyB += 20
  1457. if mirasextimes >= 50:horny_boyB += 10
  1458. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcow_mira2_1.'+rand(1,2)+'.jpg"></center>'
  1459. 'Mira moaning loadly rides on the dick of the second guy.'
  1460. gs 'arousal', 'voyeur_sex', 1
  1461. gs 'stat'
  1462. if horny_boyB >= 100:'Suddenly the guy grabs Mira by the hair and setting himself on his knees, starts to masturbate in front of her face.'
  1463. if horny_boyB < 100:
  1464. act 'Continue':gt 'mitkasex', 'forestRelax2'
  1465. else
  1466. gs 'arousal', 'end'
  1467. gs 'stat'
  1468. act 'Make him cum':gt 'mitkasex', 'forestOralCum_mira2_1'
  1469. end
  1470. end
  1471. if $ARGS[0] = 'forestCow_mira2_1':
  1472. if mirasextimes < 50:horny_boyB += 20
  1473. if mirasextimes >= 50:horny_boyB += 10
  1474. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdog_mira2_1.'+rand(1,2)+'.jpg"></center>'
  1475. 'You see Mira bending over. She is moaning slightly and swinging to the beat of the thrusts of the second guy.'
  1476. gs 'arousal', 'voyeur_sex', 1
  1477. gs 'stat'
  1478. if horny_boyB >= 100:'Suddenly the guy rudely pushes her off and setting himself on his knees, starts to masturbate in front of the face.'
  1479. if horny_boyB < 100:
  1480. act 'Continue':gt 'mitkasex', 'forestRelax2'
  1481. else
  1482. gs 'arousal', 'end'
  1483. gs 'stat'
  1484. act 'Make him cum':gt 'mitkasex', 'forestOralCum_mira2_1'
  1485. end
  1486. end
  1487. !Three guys vs GG and Mira
  1488. if $ARGS[0] = 'forestRelax':
  1489. temp_ms = rand(1,3)
  1490. huntsexa = rand(1,4)
  1491. mitboysex += 1
  1492. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexrelax1.'+rand(1,2)+'.jpg"></center>'
  1493. 'You sit on the ground, and relax for a moment...'
  1494. *pl
  1495. !Mira with Mitka, Kolyamba and Vasyan
  1496. mirarand = rand(1,2)
  1497. if mirarand = 1 and mitboysex < mitboysexrand:'Not far from you three guys gangbang <a href="exec:gt ''mitkasex'', ''forestDP_mira3''">Mira</a>.'
  1498. if mirarand = 2 and mitboysex < mitboysexrand:'Not far from you three guys gangbang <a href="exec:gt ''mitkasex'', ''forestCow_mira3''">Mira</a>.'
  1499. '<<$textsexhunter7>>'
  1500. gs 'arousal', 'voyeur_sex', 5
  1501. gs 'stat'
  1502. if mitboysex < mitboysexrand:
  1503. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  1504. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  1505. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  1506. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  1507. else
  1508. act 'Look at Mira':gt 'mitkasex', 'forestCum_mira3'
  1509. end
  1510. end
  1511. if $ARGS[0] = 'forestOral3_3':
  1512. huntsexa = rand(1,5)
  1513. mitboysex += 1
  1514. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoral3.'+rand(5,6)+'.jpg"></center>'
  1515. 'You kneel in front of the boys and suck their dicks, taking turns and paying attention to each one...'
  1516. gs 'boyStat', 'A63'
  1517. gs 'oral','start'
  1518. gs 'boyStat', 'A61'
  1519. gs 'oral','start'
  1520. gs 'boyStat', 'A62'
  1521. gs 'oral','start'
  1522. *pl
  1523. !Mira is resting
  1524. 'Near you sitting on the ground is <a href="exec:gt ''mitkasex'', ''forestRelax_mira''">Mira</a>.'
  1525. *pl
  1526. '<<$textsexhunter5>>'
  1527. gs 'arousal', 'bj', 5, 'sub', 'group'
  1528. gs 'stat'
  1529. if mitboysex < mitboysexrand:
  1530. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  1531. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  1532. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  1533. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  1534. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  1535. else
  1536. act 'Suck on':gt 'mitkasex', 'forestCum3_3'
  1537. end
  1538. end
  1539. if $ARGS[0] = 'forestOral3_2':
  1540. temp_ms = rand(1,3)
  1541. huntsexa = rand(1,5)
  1542. mitboysex += 1
  1543. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoral3.'+rand(3,4)+'.jpg"></center>'
  1544. 'You kneel in front of the boys and suck their dicks, taking turns and paying attention to each one...'
  1545. if temp_ms = 1:
  1546. gs 'boyStat', 'A63'
  1547. gs 'oral','start'
  1548. gs 'boyStat', 'A61'
  1549. gs 'oral','start'
  1550. elseif temp_ms = 2:
  1551. gs 'boyStat', 'A62'
  1552. gs 'oral','start'
  1553. gs 'boyStat', 'A63'
  1554. gs 'oral','start'
  1555. elseif temp_ms = 3:
  1556. gs 'boyStat', 'A61'
  1557. gs 'oral','start'
  1558. gs 'boyStat', 'A62'
  1559. gs 'oral','start'
  1560. end
  1561. *pl
  1562. gs 'arousal', 'bj', 5, 'sub', 'group'
  1563. gs 'stat'
  1564. mirarand = rand(1,5)
  1565. if mitboysex < mitboysexrand:
  1566. if mirarand = 1:'You hear <a href="exec:gt ''mitkasex'', ''forestOral_mira1''">Mira</a> moaning nearby.'
  1567. if mirarand = 2:'You hear <a href="exec:gt ''mitkasex'', ''forestThroat_mira1''">Mira</a> moaning nearby.'
  1568. if mirarand = 3:'You hear <a href="exec:gt ''mitkasex'', ''forestCow_mira1''">Mira</a> moaning nearby.'
  1569. if mirarand = 4:'You hear <a href="exec:gt ''mitkasex'', ''forestDogV_mira1''">Mira</a> moaning nearby.'
  1570. if mirarand = 5:'You hear <a href="exec:gt ''mitkasex'', ''forestDogA_mira1''">Mira</a> moaning nearby.'
  1571. else
  1572. 'Near you is <a href="exec:gt ''mitkasex'', ''forestCum_mira1''">Mira</a>.'
  1573. end
  1574. *pl
  1575. '<<$textsexhunter5>>'
  1576. if mitboysex < mitboysexrand:
  1577. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  1578. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  1579. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  1580. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  1581. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  1582. else
  1583. act 'Suck on':gt 'mitkasex', 'forestCum3_2'
  1584. end
  1585. end
  1586. if $ARGS[0] = 'forestOral3_1':
  1587. temp_ms = rand(1,3)
  1588. huntsexa = rand(1,5)
  1589. mitboysex += 1
  1590. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoral3.'+rand(1,2)+'.jpg"></center>'
  1591. 'You are on your knees before a guy, his cock in front of your face...'
  1592. if temp_ms = 1:
  1593. gs 'boyStat', 'A63'
  1594. gs 'oral','start'
  1595. elseif temp_ms = 2:
  1596. gs 'boyStat', 'A61'
  1597. gs 'oral','start'
  1598. elseif temp_ms = 3:
  1599. gs 'boyStat', 'A62'
  1600. gs 'oral','start'
  1601. end
  1602. !'<<$textsexhunter8>>'
  1603. *pl
  1604. gs 'arousal', 'bj', 5, 'sub', 'group'
  1605. gs 'stat'
  1606. mirarand = rand(1,4)
  1607. if mitboysex < mitboysexrand:
  1608. if mirarand = 1:'Nearby you hear a loud moan from <a href="exec:gt ''mitkasex'', ''forestCow_mira2''">Mira</a>.'
  1609. if mirarand = 2:'Nearby you hear a loud moan from <a href="exec:gt ''mitkasex'', ''forestSide_mira2''">Mira</a>.'
  1610. if mirarand = 3:'Nearby you hear a loud moan from <a href="exec:gt ''mitkasex'', ''forestMis_mira2''">Mira</a>.'
  1611. if mirarand = 4:'Nearby you hear a loud moan from <a href="exec:gt ''mitkasex'', ''forestDog_mira2''">Mira</a>.'
  1612. else
  1613. 'Near you is <a href="exec:gt ''mitkasex'', ''forestCum_mira2''">Mira</a>.'
  1614. end
  1615. *pl
  1616. '<<$textsexhunter4>>'
  1617. if mitboysex < mitboysexrand:
  1618. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  1619. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  1620. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  1621. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  1622. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  1623. else
  1624. act 'Suck on':gt 'mitkasex', 'forestCum3_1'
  1625. end
  1626. end
  1627. if $ARGS[0] = 'forestVag3':
  1628. temp_ms = rand(1,3)
  1629. huntsexa = rand(1,5)
  1630. mitboysex += 1
  1631. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexvag3.'+rand(1,2)+'.jpg"></center>'
  1632. 'You lie on the ground. One guy perched between your legs and the second member brings his cock to your lips...'
  1633. if temp_ms = 1:
  1634. gs 'boyStat', 'A63'
  1635. gs 'oral','start'
  1636. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1637. if klismaday = daystart and Mira_enema = 0 and dirty_dickA > 0:
  1638. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1639. pcs_mood -= 5
  1640. pcs_horny -= 20
  1641. end
  1642. *pl
  1643. if boyBsex = 0: boyBsex = 1
  1644. gs 'boyStat', 'A61'
  1645. gs 'dinsex', 'boy_puts_condom'
  1646. gs 'dinsex','vaginal_sex',10
  1647. elseif temp_ms = 2:
  1648. gs 'boyStat', 'A62'
  1649. gs 'oral','start'
  1650. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1651. if klismaday = daystart and Mira_enema = 0 and dirty_dickC > 0:
  1652. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1653. pcs_mood -= 5
  1654. pcs_horny -= 20
  1655. end
  1656. *pl
  1657. if boyAsex = 0: boyAsex = 1
  1658. gs 'boyStat', 'A63'
  1659. gs 'dinsex', 'boy_puts_condom'
  1660. gs 'dinsex','vaginal_sex',10
  1661. elseif temp_ms = 3:
  1662. gs 'boyStat', 'A61'
  1663. gs 'oral','start'
  1664. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1665. if klismaday = daystart and Mira_enema = 0 and dirty_dickB > 0:
  1666. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1667. pcs_mood -= 5
  1668. pcs_horny -= 20
  1669. end
  1670. *pl
  1671. if boyCsex = 0: boyCsex = 1
  1672. gs 'boyStat', 'A62'
  1673. gs 'dinsex', 'boy_puts_condom'
  1674. gs 'dinsex','vaginal_sex',10
  1675. end
  1676. *pl
  1677. gs 'arousal', 'bj', 5, 'sub', 'group'
  1678. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1679. minut -= 5
  1680. gs 'stat'
  1681. mirarand = rand(1,5)
  1682. mirarand = rand(1,5)
  1683. if mitboysex < mitboysexrand:
  1684. if mirarand = 1:'You hear <a href="exec:gt ''mitkasex'', ''forestOral_mira1''">Mira</a> moaning nearby.'
  1685. if mirarand = 2:'You hear <a href="exec:gt ''mitkasex'', ''forestThroat_mira1''">Mira</a> moaning nearby.'
  1686. if mirarand = 3:'You hear <a href="exec:gt ''mitkasex'', ''forestCow_mira1''">Mira</a> moaning nearby.'
  1687. if mirarand = 4:'You hear <a href="exec:gt ''mitkasex'', ''forestDogV_mira1''">Mira</a> moaning nearby.'
  1688. if mirarand = 5:'You hear <a href="exec:gt ''mitkasex'', ''forestDogA_mira1''">Mira</a> moaning nearby.'
  1689. else
  1690. 'Near you is <a href="exec:gt ''mitkasex'', ''forestCum_mira1''">Mira</a>.'
  1691. end
  1692. *pl
  1693. '<<$textsexhunter5>>'
  1694. if mitboysex < mitboysexrand:
  1695. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  1696. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  1697. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  1698. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  1699. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  1700. else
  1701. act 'Kneel':gt 'mitkasex', 'forestCum3_2'
  1702. end
  1703. end
  1704. if $ARGS[0] = 'forestAnal3_3':
  1705. temp_ms = rand(1,3)
  1706. huntsexa = rand(1,5)
  1707. mitboysex += 1
  1708. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexanal3.'+rand(5,6)+'.jpg"></center>'
  1709. 'You bend over in front of the boys. One moves to penetrate your ass while the others shove their dicks in your face.'
  1710. '<<$textsexhunter5>>'
  1711. if temp_ms = 1:
  1712. gs 'boyStat', 'A62'
  1713. gs 'oral','start'
  1714. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1715. if klismaday = daystart and Mira_enema = 0 and dirty_dickC > 0:
  1716. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1717. pcs_mood -= 5
  1718. pcs_horny -= 20
  1719. end
  1720. gs 'boyStat', 'A63'
  1721. gs 'oral','start'
  1722. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1723. if klismaday = daystart and Mira_enema = 0 and dirty_dickA > 0:
  1724. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1725. pcs_mood -= 5
  1726. pcs_horny -= 20
  1727. end
  1728. *pl
  1729. if boyBsexa = 0: boyBsexa = 1
  1730. gs 'boyStat', 'A61' & dirty_dickB += 1
  1731. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  1732. elseif temp_ms = 2:
  1733. gs 'boyStat', 'A61'
  1734. gs 'oral','start'
  1735. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1736. if klismaday = daystart and Mira_enema = 0 and dirty_dickB > 0:
  1737. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1738. pcs_mood -= 5
  1739. pcs_horny -= 20
  1740. end
  1741. gs 'boyStat', 'A62'
  1742. gs 'oral','start'
  1743. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1744. if klismaday = daystart and Mira_enema = 0 and dirty_dickC > 0:
  1745. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1746. pcs_mood -= 5
  1747. pcs_horny -= 20
  1748. end
  1749. *pl
  1750. if boyAsexa = 0: boyAsexa = 1
  1751. gs 'boyStat', 'A63' & dirty_dickA += 1
  1752. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  1753. elseif temp_ms = 3:
  1754. gs 'boyStat', 'A63'
  1755. gs 'oral','start'
  1756. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1757. if klismaday = daystart and Mira_enema = 0 and dirty_dickA > 0:
  1758. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1759. pcs_mood -= 5
  1760. pcs_horny -= 20
  1761. end
  1762. gs 'boyStat', 'A61'
  1763. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1764. if klismaday = daystart and Mira_enema = 0 and dirty_dickB > 0:
  1765. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1766. pcs_mood -= 5
  1767. pcs_horny -= 20
  1768. end
  1769. gs 'oral','start'
  1770. *pl
  1771. if boyCsexa = 0: boyCsexa = 1
  1772. gs 'boyStat', 'A62' & dirty_dickC += 1
  1773. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  1774. end
  1775. *pl
  1776. gs 'arousal', 'bj', 5, 'sub', 'group'
  1777. gs 'arousal', 'anal', 5, 'sub', 'group'
  1778. minut -= 5
  1779. gs 'stat'
  1780. !Mira is resting
  1781. 'Near you sitting on the ground is <a href="exec:gt ''mitkasex'', ''forestRelax_mira''">Mira</a>.'
  1782. *pl
  1783. '<<$textsexhunter7>>'
  1784. lubonus += 1
  1785. if mitboysex < mitboysexrand:
  1786. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  1787. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  1788. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  1789. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  1790. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  1791. else
  1792. act 'Kneel':gt 'mitkasex', 'forestCum3_3'
  1793. end
  1794. end
  1795. if $ARGS[0] = 'forestAnal3_2':
  1796. temp_ms = rand(1,3)
  1797. huntsexa = rand(1,5)
  1798. mitboysex += 1
  1799. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexanal3.'+rand(3,4)+'.jpg"></center>'
  1800. 'You bend over in front of the boys. One moves to penetrate your ass while the others shove their dicks in your face.'
  1801. if temp_ms = 1:
  1802. gs 'boyStat', 'A63'
  1803. gs 'oral','start'
  1804. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1805. if klismaday = daystart and Mira_enema = 0 and dirty_dickA > 0:
  1806. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1807. pcs_mood -= 5
  1808. pcs_horny -= 20
  1809. end
  1810. *pl
  1811. if boyBsexa = 0: boyBsexa = 1
  1812. gs 'boyStat', 'A61' & dirty_dickB += 1
  1813. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  1814. elseif temp_ms = 2:
  1815. gs 'boyStat', 'A62'
  1816. gs 'oral','start'
  1817. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1818. if klismaday = daystart and Mira_enema = 0 and dirty_dickC > 0:
  1819. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1820. pcs_mood -= 5
  1821. pcs_horny -= 20
  1822. end
  1823. *pl
  1824. if boyAsexa = 0: boyAsexa = 1
  1825. gs 'boyStat', 'A63' & dirty_dickA += 1
  1826. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  1827. elseif temp_ms = 3:
  1828. gs 'boyStat', 'A61'
  1829. gs 'oral','start'
  1830. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1831. if klismaday = daystart and Mira_enema = 0 and dirty_dickB > 0:
  1832. 'The member smells quite unpleasant and tastes of feces. You should have done an enema. Maybe remember that for next time?'
  1833. pcs_mood -= 5
  1834. pcs_horny -= 20
  1835. end
  1836. *pl
  1837. if boyCsexa = 0: boyCsexa = 1
  1838. gs 'boyStat', 'A62' & dirty_dickC += 1
  1839. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  1840. end
  1841. *pl
  1842. gs 'arousal', 'bj', 5, 'sub', 'group'
  1843. gs 'arousal', 'anal', 5, 'sub', 'group'
  1844. minut -= 5
  1845. gs 'stat'
  1846. mirarand = rand(1,5)
  1847. if mitboysex < mitboysexrand:
  1848. if mirarand = 1:'You hear <a href="exec:gt ''mitkasex'', ''forestOral_mira1''">Mira</a> moaning nearby.'
  1849. if mirarand = 2:'You hear <a href="exec:gt ''mitkasex'', ''forestThroat_mira1''">Mira</a> moaning nearby.'
  1850. if mirarand = 3:'You hear <a href="exec:gt ''mitkasex'', ''forestCow_mira1''">Mira</a> moaning nearby.'
  1851. if mirarand = 4:'You hear <a href="exec:gt ''mitkasex'', ''forestDogV_mira1''">Mira</a> moaning nearby.'
  1852. if mirarand = 5:'You hear <a href="exec:gt ''mitkasex'', ''forestDogA_mira1''">Mira</a> moaning nearby.'
  1853. else
  1854. 'Near you is <a href="exec:gt ''mitkasex'', ''forestCum_mira1''">Mira</a>.'
  1855. end
  1856. *pl
  1857. '<<$textsexhunter5>>'
  1858. if mitboysex < mitboysexrand:
  1859. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  1860. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  1861. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  1862. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  1863. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  1864. else
  1865. act 'Kneel':gt 'mitkasex', 'forestCum3_2'
  1866. end
  1867. end
  1868. if $ARGS[0] = 'forestAnal3_1':
  1869. temp_ms = rand(1,3)
  1870. huntsexa = rand(1,5)
  1871. mitboysex += 1
  1872. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexanal3.'+rand(1,2)+'.jpg"></center>'
  1873. 'You bend over as the guys jockey to fuck you ass first...'
  1874. if temp_ms = 1:
  1875. if boyAsexa = 0: boyAsexa = 1
  1876. gs 'boyStat', 'A63' & dirty_dickA += 1
  1877. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  1878. elseif temp_ms = 2:
  1879. if boyBsexa = 0: boyBsexa = 1
  1880. gs 'boyStat', 'A61' & dirty_dickB += 1
  1881. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  1882. elseif temp_ms = 3:
  1883. if boyCsexa = 0: boyCsexa = 1
  1884. gs 'boyStat', 'A62' & dirty_dickC += 1
  1885. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  1886. end
  1887. !'<<$textsexhunter8>>'
  1888. *pl
  1889. gs 'arousal', 'bj', 5, 'sub', 'group'
  1890. gs 'arousal', 'anal', 5, 'sub', 'group'
  1891. minut -= 5
  1892. gs 'stat'
  1893. mirarand = rand(1,4)
  1894. if mitboysex < mitboysexrand:
  1895. if mirarand = 1:'You hear <a href="exec:gt ''mitkasex'', ''forestCow_mira2''">Mira</a> moaning nearby.'
  1896. if mirarand = 2:'You hear <a href="exec:gt ''mitkasex'', ''forestSide_mira2''">Mira</a> moaning nearby.'
  1897. if mirarand = 3:'You hear <a href="exec:gt ''mitkasex'', ''forestMis_mira2''">Mira</a> moaning nearby.'
  1898. if mirarand = 4:'You hear <a href="exec:gt ''mitkasex'', ''forestDog_mira2''">Mira</a> moaning nearby.'
  1899. else
  1900. 'Near you is <a href="exec:gt ''mitkasex'', ''forestCum_mira2''">Mira</a>.'
  1901. end
  1902. *pl
  1903. '<<$textsexhunter4>>'
  1904. if mitboysex < mitboysexrand:
  1905. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  1906. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  1907. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  1908. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  1909. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  1910. else
  1911. act 'Kneel':gt 'mitkasex', 'forestCum3_1'
  1912. end
  1913. end
  1914. if $ARGS[0] = 'forestCum3_3':
  1915. minut += 3
  1916. swallow += 1
  1917. gs 'cum_call', 'face', $boy, 1
  1918. if $clothingworntype = 'nude':gs 'cum_call', 'stomach', $boy, 1
  1919. if ($clothingworntype ! 'nude' and $clothingworntype ! 'swimwear'):gs 'cum_call', 'clothes_hidden', $boy, 1
  1920. mitboysex = 0
  1921. protect = 0
  1922. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcum3.3.jpg"></center>'
  1923. 'You kneel in front of the boys and suck their dicks, taking turns and paying attention to each one...'
  1924. gs 'boyStat', 'A63'
  1925. gs 'oral','start'
  1926. gs 'boyStat', 'A61'
  1927. gs 'oral','start'
  1928. gs 'boyStat', 'A62'
  1929. gs 'oral','start'
  1930. !'<<$textsexhunter9>>'
  1931. 'Soon, unable to withstand your skill the guys start to finish. Jets of sperm hit you in the mouth and face. There was so much sperm your mouth can''t hold it all and it runs down your chin and onto your breasts. The guys have you clean their dicks before going about their business. You are left alone to clean up.'
  1932. gs 'arousal', 'end'
  1933. gs 'stat'
  1934. act 'Finish':gt $loc, $loc_arg
  1935. end
  1936. if $ARGS[0] = 'forestCum3_2':
  1937. minut += 2
  1938. swallow += 1
  1939. gs 'cum_call', 'face', $boy, 1
  1940. if $clothingworntype = 'nude':gs 'cum_call', 'stomach', $boy, 1
  1941. if ($clothingworntype ! 'nude' and $clothingworntype ! 'swimwear'):gs 'cum_call', 'clothes_hidden', $boy, 1
  1942. mitboysex = 0
  1943. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcum3.2.jpg"></center>'
  1944. 'You kneel in front of the boys and suck their dicks, taking turns and paying attention to each one...'
  1945. if temp_ms = 1:
  1946. gs 'boyStat', 'A63'
  1947. gs 'oral','start'
  1948. gs 'boyStat', 'A61'
  1949. gs 'oral','start'
  1950. elseif temp_ms = 2:
  1951. gs 'boyStat', 'A62'
  1952. gs 'oral','start'
  1953. gs 'boyStat', 'A63'
  1954. gs 'oral','start'
  1955. elseif temp_ms = 3:
  1956. gs 'boyStat', 'A61'
  1957. gs 'oral','start'
  1958. gs 'boyStat', 'A62'
  1959. gs 'oral','start'
  1960. end
  1961. *nl
  1962. 'Soon, unable to withstand your skill the guys start to finish. Jets of sperm hit you in the mouth and face. There was so much sperm your mouth can''t hold it all and it runs down your chin and onto your breasts. The guys have you clean their dicks before going about their business. You are left alone to clean up.'
  1963. gs 'arousal', 'end'
  1964. gs 'stat'
  1965. act 'Finish':gt $loc, $loc_arg
  1966. end
  1967. if $ARGS[0] = 'forestCum3_1':
  1968. minut += 1
  1969. gs 'cum_call', 'mouth_swallow', $boy, 1
  1970. mitboysex = 0
  1971. protect = 0
  1972. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcum3.1.jpg"></center>'
  1973. 'You are on your knees before a guy, his cock in front of your face...'
  1974. if temp_ms = 1:
  1975. gs 'boyStat', 'A63'
  1976. gs 'oral','start'
  1977. !'<<$textsexhunter8>>'
  1978. gs 'dinsex', 'bj_swallow_random'
  1979. elseif temp_ms = 2:
  1980. gs 'boyStat', 'A61'
  1981. gs 'oral','start'
  1982. !'<<$textsexhunter8>>'
  1983. gs 'dinsex', 'bj_swallow_random'
  1984. elseif temp_ms = 3:
  1985. gs 'boyStat', 'A62'
  1986. gs 'oral','start'
  1987. !'<<$textsexhunter8>>'
  1988. gs 'dinsex', 'bj_swallow_random'
  1989. end
  1990. '<<$textsexhunter3>>'
  1991. gs 'arousal', 'end'
  1992. gs 'stat'
  1993. act 'Finish':gt $loc, $loc_arg
  1994. end
  1995. if $ARGS[0] = 'forestRelax_mira':
  1996. minut += 1
  1997. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexrelax_mira'+rand(1,2)+'.jpg"></center>'
  1998. 'Mira is sitting next to you while the boys are not up to it, watching as you fuck...'
  1999. *pl
  2000. if mitboysex < mitboysexrand:
  2001. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2002. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2003. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2004. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2005. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  2006. else
  2007. act 'Suck':gt 'mitkasex', 'forestCum3_3'
  2008. end
  2009. end
  2010. if $ARGS[0] = 'forestDP_mira3':
  2011. mirarand = rand(1,3)
  2012. if mirarand = 1:dirty_dickA += 1
  2013. if mirarand = 2:dirty_dickB += 1
  2014. if mirarand = 3:dirty_dickC += 1
  2015. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdp_mira3.jpg"></center>'
  2016. 'You see Mira as the boys pull Mira onto their three members, filling all of her holes. Mira is only moaning and breathing hard as she gets fucked from all angles.'
  2017. '<<$textsexhunter7>>'
  2018. gs 'arousal', 'voyeur_sex', 1
  2019. gs 'stat'
  2020. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2021. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2022. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2023. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2024. end
  2025. if $ARGS[0] = 'forestCow_mira3':
  2026. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcow_mira3.jpg"></center>'
  2027. 'You look at Mira, moaning loudly, jumping on the penis of one boy and serving the other two with her mouth.'
  2028. '<<$textsexhunter7>>'
  2029. gs 'arousal', 'voyeur_sex', 1
  2030. gs 'stat'
  2031. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2032. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2033. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2034. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2035. end
  2036. if $ARGS[0] = 'forestCow_mira2':
  2037. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcow_mira2.'+rand(1,3)+'.jpg"></center>'
  2038. 'Turning your head to look at Mira, you can see her, moaning loudly, riding on the penis of one boy at the same time sucking a second cock.'
  2039. '<<$textsexhunter4>>'
  2040. gs 'arousal', 'voyeur_sex', 1
  2041. gs 'stat'
  2042. if mitboysex < mitboysexrand:
  2043. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2044. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2045. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2046. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2047. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  2048. else
  2049. act 'Suck':gt 'mitkasex', 'forestCum3_1'
  2050. end
  2051. end
  2052. if $ARGS[0] = 'forestSide_mira2':
  2053. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexside_mira2.jpg"></center>'
  2054. 'Turning your head to look at Mira, you can see her, moaning loudly, while lying on her side. She fucks one of the guys while she sucks second.'
  2055. '<<$textsexhunter4>>'
  2056. gs 'arousal', 'voyeur_sex', 1
  2057. gs 'stat'
  2058. if mitboysex < mitboysexrand:
  2059. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2060. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2061. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2062. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2063. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  2064. else
  2065. act 'Suck':gt 'mitkasex', 'forestCum3_1'
  2066. end
  2067. end
  2068. if $ARGS[0] = 'forestMis_mira2':
  2069. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexmis_mira2.jpg"></center>'
  2070. 'Turning your head to look at Mira, you can see her, moaning loudly, while lying on her back. She fucks one of the guys while she sucks second.'
  2071. '<<$textsexhunter4>>'
  2072. gs 'arousal', 'voyeur_sex', 1
  2073. gs 'stat'
  2074. if mitboysex < mitboysexrand:
  2075. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2076. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2077. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2078. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2079. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  2080. else
  2081. act 'Suck':gt 'mitkasex', 'forestCum3_1'
  2082. end
  2083. end
  2084. if $ARGS[0] = 'forestDog_mira2':
  2085. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdog_mira2.jpg"></center>'
  2086. 'Turning your head to look at Mira, you can see her, moaning loudly, while bending over. She fucks one of the guys while she sucks second.'
  2087. '<<$textsexhunter4>>'
  2088. gs 'arousal', 'voyeur_sex', 1
  2089. gs 'stat'
  2090. if mitboysex < mitboysexrand:
  2091. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2092. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2093. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2094. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2095. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  2096. else
  2097. act 'Suck':gt 'mitkasex', 'forestCum3_1'
  2098. end
  2099. end
  2100. if $ARGS[0] = 'forestCow_mira1':
  2101. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcow_mira1.jpg"></center>'
  2102. 'Turning your head to look at Mira, you can see her, moaning loudly, riding on the penis of one boy.'
  2103. '<<$textsexhunter5>>'
  2104. gs 'arousal', 'voyeur_sex', 1
  2105. gs 'stat'
  2106. if mitboysex < mitboysexrand:
  2107. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2108. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2109. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2110. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2111. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  2112. else
  2113. act 'Suck':gt 'mitkasex', 'forestCum3_2'
  2114. end
  2115. end
  2116. if $ARGS[0] = 'forestDogV_mira1':
  2117. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdogv_mira1.jpg"></center>'
  2118. 'Turning your head to look at Mira, you can see her, moaning loudly, bending over while one guy hammers her pussy.'
  2119. '<<$textsexhunter5>>'
  2120. gs 'arousal', 'voyeur_sex', 1
  2121. gs 'stat'
  2122. if mitboysex < mitboysexrand:
  2123. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2124. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2125. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2126. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2127. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  2128. else
  2129. act 'Suck':gt 'mitkasex', 'forestCum3_2'
  2130. end
  2131. end
  2132. if $ARGS[0] = 'forestDogA_mira1':
  2133. mirarand = rand(1,3)
  2134. if mirarand = 1:dirty_dickA += 1
  2135. if mirarand = 2:dirty_dickB += 1
  2136. if mirarand = 3:dirty_dickC += 1
  2137. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexdoga_mira1.jpg"></center>'
  2138. 'Turning your head to look at Mira, you can see her, moaning loudly, bending over while one guy hammers her ass.'
  2139. '<<$textsexhunter5>>'
  2140. gs 'arousal', 'voyeur_sex', 1
  2141. gs 'stat'
  2142. if mitboysex < mitboysexrand:
  2143. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2144. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2145. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2146. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2147. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  2148. else
  2149. act 'Suck':gt 'mitkasex', 'forestCum3_2'
  2150. end
  2151. end
  2152. if $ARGS[0] = 'forestThroat_mira1':
  2153. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexthroat_mira1.jpg"></center>'
  2154. 'Turning your head to look at Mira, you can see her, moaning loudly, while deepthroating a cock.'
  2155. '<<$textsexhunter5>>'
  2156. gs 'arousal', 'voyeur_sex', 1
  2157. gs 'stat'
  2158. if mitboysex < mitboysexrand:
  2159. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2160. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2161. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2162. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2163. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  2164. else
  2165. act 'Suck':gt 'mitkasex', 'forestCum3_2'
  2166. end
  2167. end
  2168. if $ARGS[0] = 'forestOral_mira1':
  2169. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexoral_mira1.jpg"></center>'
  2170. 'Turning your head to look at Mira, you can see her, moaning loudly, while sucking a cock.'
  2171. '<<$textsexhunter5>>'
  2172. gs 'arousal', 'voyeur_sex', 1
  2173. gs 'stat'
  2174. if mitboysex < mitboysexrand:
  2175. if huntsexa = 1:act 'Lie on your back':gt 'mitkasex', 'forestVag3'
  2176. if huntsexa = 2:act 'Doggy':gt 'mitkasex', 'forestAnal3_1'
  2177. if huntsexa = 3:act 'Doggy':gt 'mitkasex', 'forestAnal3_2'
  2178. if huntsexa = 4:act 'Doggy':gt 'mitkasex', 'forestAnal3_3'
  2179. if huntsexa = 5:act 'Watch':gt 'mitkasex', 'forestRelax'
  2180. else
  2181. act 'Suck':gt 'mitkasex', 'forestCum3_2'
  2182. end
  2183. end
  2184. if $ARGS[0] = 'forestCum_mira1':
  2185. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcum_mira1.jpg"></center>'
  2186. 'Turning your head to look at Mira, you can see her, moaning loudly, as she plays with the cum covering her face and body.'
  2187. '<<$textsexhunter5>>'
  2188. gs 'arousal', 'voyeur_sex', 1
  2189. gs 'stat'
  2190. act 'Suck':gt 'mitkasex', 'forestCum3_2'
  2191. end
  2192. if $ARGS[0] = 'forestCum_mira2':
  2193. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcum_mira2.jpg"></center>'
  2194. 'Turning your head to look at Mira, you can see her, moaning loudly, as she plays with the cum covering her face and body.'
  2195. '<<$textsexhunter4>>'
  2196. gs 'arousal', 'voyeur_sex', 1
  2197. gs 'stat'
  2198. act 'Suck':gt 'mitkasex', 'forestCum3_2'
  2199. end
  2200. if $ARGS[0] = 'forestCum_mira3':
  2201. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkaforestsexcum_mira3.jpg"></center>'
  2202. 'Turning your head to look at Mira, you can see her, moaning loudly, as she plays with the cum covering her face and body.'
  2203. gs 'arousal', 'voyeur_sex', 1
  2204. gs 'stat'
  2205. act 'Finish':gt $loc, $loc_arg
  2206. end
  2207. --- mitkasex ---------------------------------