1
0

mitkasex.qsrc 89 KB

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