mitkabuh_group.qsrc 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673
  1. # mitkabuh_group
  2. !MiaLoc tells us where Mira is Located
  3. !----------------------------------------------
  4. !MiraLoc = 0 (Mira at home)
  5. !MiraLoc = 1 (Mira at river)
  6. !MiraLoc = 2 (Mira at meadow)
  7. !MiraLoc = 3 (Mira at forest)
  8. !MiraLoc = 4 (Mira at field)
  9. !MiraLoc = 5 (Mira with gop)
  10. !---------------------------------------------
  11. !! default entry point
  12. if $ARGS[0] = '':
  13. '<center><img <<$set_imgh>> src="images/locations/gadukino/village/drunk.jpg"></center>'
  14. 'Sitting in a secluded place, three village youths - Mitka Kingpin, Vasya Package and Kolyamba - drink vodka without snacks. You with Mira approach them and ask them if to join them. The boys immediately brightened up and actively nodding you heads. Mitya immediately begins to pour the moonshine into the glasses, then passes one of them to you, saying that, as they don''t have enough cups, so you will have to drink one to two turns.'
  15. !! repeat until drunk
  16. if alko < 8:
  17. if alko <4: act 'Leave': gt'Gaddvor'
  18. if temp_mb = 0:
  19. act 'You take the liquor and swallow it quickly':
  20. *clr & cla
  21. '<center><img <<$set_imgh>> src="images/locations/gadukino/village/drinking.jpg"></center>'
  22. 'You take a glass of moonshine and quickly gulp it down, you cough and suck in your breath. Mira meanwhile holds her drink and slowly sips on it, while the local youths encourage her to slug it down like you did.'
  23. minut += 15
  24. alko += rand (3,5)
  25. if pcs_hydra >= 100:
  26. pcs_hydra -= 10
  27. else
  28. pcs_hydra -= 20
  29. end
  30. temp_mb = 2
  31. gs 'stat'
  32. act 'Breathe':gt $curloc
  33. end
  34. else
  35. act 'You pass the shot glass of liquor to Mira':
  36. *clr & cla
  37. npc_drunk['A60'] += rand (1,4)
  38. minut += 15
  39. temp_mb = 0
  40. mirapiss = RAND(0,10)
  41. gs 'stat'
  42. if npc_QW['A60'] >= 15 and mirapiss <= 2:
  43. gt 'mitkabuh_group','mirapiss_1'
  44. elseif npc_QW['A60'] >= 15 and mirapiss >= 3 and mirapiss < 6:
  45. gt 'mitkabuh_group','mirapiss_2'
  46. elseif npc_QW['A60'] >= 15 and mirapiss = 6:
  47. gt 'mitkabuh_group','mirapiss_3'
  48. else
  49. '<center><img <<$set_imgh>> src="images/locations/gadukino/village/drinking.jpg"></center>'
  50. 'You pass Mira a shot glass full of liquor, she examines the glass''s contents for a moment, then gulps down the entire glass with a single tose of her head. Her eyes wided and she coughs a little, sucking in her breath with a smile. You talk lively with the guys as they drink as well.'
  51. act 'Further':gt $curloc
  52. end
  53. end
  54. end
  55. else
  56. *clr & cla
  57. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/drunkgirl1.jpg"></center>'
  58. 'You got so drunk on the swill they served you, your legs can barely hold you upright. The guys notice your condition. They immediately grabbed you and Mira by the hands and lead you both over to Mitya''s house.'
  59. mitkadaybuh = daystart
  60. temp_mb = RAND(0,5)
  61. if temp_mb = 0:
  62. xgt 'mitkabuh_group','mirafuck_0'
  63. elseif temp_mb = 1:
  64. xgt 'mitkabuh_group','mirafuck_1'
  65. elseif temp_mb = 2:
  66. xgt 'mitkabuh_group','mirafuck_2'
  67. elseif temp_mb = 3:
  68. xgt 'mitkabuh_group','mirafuck_3'
  69. elseif temp_mb = 4:
  70. xgt 'mitkabuh_group','mirafuck_4'
  71. elseif temp_mb = 5:
  72. xgt 'mitkabuh_group','mirafuck_5'
  73. end
  74. end
  75. else
  76. end
  77. if $ARGS[0] = 'mirapiss_1':
  78. *clr & cla
  79. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/drunk1.jpg"></center>'
  80. 'You pass Mira a shot glass full of liquor, she examines the glass''s contents for a moment, then gulps down the entire glass with a single tose of her head. Her eyes wided and she coughs a little, sucking in her breath with a smile.'
  81. 'After she drank the liquor, Vasya jokingly says that you both look incredible, but would look even better with cocks in your mouths.'
  82. 'Mira, already pretty drunk, just giggles in response and nods. You shrug, nod in agreement as well. Kolyamba immediately stands up and crushed Mira in a bear hug, while Vasya approachs you. Mira, continues to giggle drunkenly as Kolyamba finished his hug and forces her to her knees. You smile at Vasya as you see him slowly unzipping his pants and lowering them to his anckles. You then follow Mira''s example and get on your knees before Vasya.'
  83. minut += 5
  84. if npc_QW['A60'] < 20: npc_QW['A60'] += 1
  85. gs 'stat'
  86. act 'Suck':
  87. *clr & cla
  88. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuh0.'+rand(1,5)+'.jpg"></center>'
  89. 'You, drunkenly smack your lips on and obediently start to suck the guy''s cock.'
  90. gs 'boyStat', 'A62'
  91. npc_sex[$boy] += 1
  92. gs 'oral','start'
  93. gs 'stat'
  94. act 'Swallow':
  95. *clr & cla
  96. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhcum0.'+rand(1,5)+'.jpg"></center>'
  97. 'You tightly squeeze Vasya''s cock in your hand and without taking it out of your mouth, he starts to fiercely slam his cock into your gaping mouth until he finally erupts into your mouth. You taste his warm sticky sperm in your mouth and sliding down your throat as you swallow it all.'
  98. swallow += 1
  99. gs 'cum_call', 'mouth', $boy, 1
  100. gs 'stat'
  101. act 'Suck':
  102. *clr & cla
  103. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuh0.'+rand(3,5)+'.jpg"></center>'
  104. '"Well, now it`s my turn," Kolyamba says and stumbles over to you.'
  105. gs 'boyStat', 'A61'
  106. npc_sex[$boy] += 1
  107. gs 'oral','start'
  108. gs 'stat'
  109. act 'Swallow':
  110. *clr & cla
  111. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhcum0.'+rand(1,5)+'.jpg"></center>'
  112. 'You enthusiastically suck him, until he releases a torrant of cum into your mouth. He holds you mouth closed until you swallow it all.'
  113. swallow += 1
  114. minut += 5
  115. gs 'cum_call', 'mouth', $boy, 1
  116. gs 'stat'
  117. act 'Bend over':
  118. *clr & cla
  119. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkasexpublic0.'+rand(1,2)+'.jpg"></center>'
  120. 'Mitka, who had already drunk a couple more glasses of liquor as he watched the others getting blowjobs from you and Mira, silently walked over to you and tells you to bend over. You can barely stand on your feet approach a nearby log and bend over it resting your hands on the rough bark. Feeling his lust surging, Mitya pulls down your pants and bares your ass before he lowers his own pants, he then starts to roughly fuck you.'
  121. gs 'boyStat', 'A63'
  122. npc_sex[$boy] += 1
  123. if mesec = 0:
  124. gs 'dinsex', 'boy_puts_condom'
  125. gs 'dinsex','vaginal_sex',10,'gangbang'
  126. gs 'dinsex','sexcum'
  127. else
  128. gs 'dinSex','boy_wants_anal','lubri'
  129. gs 'dinsex','analsex',10,'gangbang'
  130. end
  131. gs 'arousal', 'end'
  132. gs 'stat'
  133. act 'Leave': MiraLoc = 0 & minut += 10 & gt'Gaddvor'
  134. end
  135. end
  136. end
  137. end
  138. end
  139. end
  140. if $ARGS[0] = 'mirapiss_2':
  141. if npc_drunk['A60'] >= 4:
  142. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhshow1.jpg"></center>'
  143. '"Bitches," Mitka yelled at both you and Mira. "I want to see a show, how about you bitches play with those holes? Show us how truely nasty you are!" The rest of the drunken guys yell their approval.'
  144. 'Mirka smiled as you both willingly comply with his demands.'
  145. minut += 5
  146. if npc_QW['A60'] < 30: npc_QW['A60'] += 1
  147. gs 'stat'
  148. act 'Sit on the bench':
  149. *clr & cla
  150. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagroup.jpg"></center>'
  151. 'You plunk you bare ass down on a bench and the youths immediately start to paw your breasts and pussy. Several fingers get shoved into your pussy and ass.'
  152. pcs_horny += 20
  153. minut += 5
  154. gs 'stat'
  155. act 'Give the boys':
  156. *clr & cla
  157. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagroupcum.jpg"></center>'
  158. 'You lie back on a wooden bench...'
  159. pose = 0
  160. gang += 1
  161. minut += 10
  162. gs 'stat'
  163. act 'Moan':
  164. *clr & cla
  165. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagroupcum.jpg"></center>'
  166. gs 'boyStat', 'A61'
  167. npc_sex[$boy] += 1
  168. gs 'dinSex','boy_wants_anal','lubri'
  169. gs 'dinsex','analsex',10,'gangbang'
  170. gs 'cum_call', 'anus', $boy, 1
  171. gs 'stat'
  172. act 'Moan':
  173. *clr & cla
  174. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagroupcum1.jpg"></center>'
  175. gs 'boyStat', 'A63'
  176. npc_sex[$boy] += 1
  177. gs 'dinsex', 'boy_puts_condom'
  178. gs 'dinsex','vaginal_sex',10,'gangbang'
  179. gs 'dinsex','sexcum'
  180. gs 'stat'
  181. act 'Suck':
  182. *clr & cla
  183. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitkagroupcum2.jpg"></center>'
  184. gs 'boyStat', 'A62'
  185. npc_sex[$boy] += 1
  186. gs 'oral','start'
  187. 'exhausted, you hear, Vasya straining as he fucks your mouth. You immediately tighten your grip around his cock and squeeze it and guides it into your mouth. A few seconds later you feel the tart taste of semen...'
  188. gs 'cum_call', 'mouth', $boy, 1
  189. gs 'arousal', 'end'
  190. gs 'stat'
  191. act 'Leave': MiraLoc = 0 & minut += 10 & gt'Gaddvor'
  192. end
  193. end
  194. end
  195. end
  196. end
  197. else
  198. '<center><img <<$set_imgh>> src="images/characters/village/mira/miraqw11_4.jpg"></center>'
  199. '"Alright girls," Mitka yelled. "Its time to pay us back for all the boose you have be drinking. Get on your knees and show us how much you like cock!" - The rest of the drunken guys yell their approval.'
  200. 'You and Mira both nod together and obediently knell down right where you stood.'
  201. minut += 5
  202. if npc_QW['A60'] < 20: npc_QW['A60'] += 1
  203. gs 'stat'
  204. act 'Suck':
  205. *clr & cla
  206. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuh0.'+rand(1,5)+'.jpg"></center>'
  207. 'You, drunkenly smack your lips on and obediently start to suck the guy''s cock.'
  208. gs 'boyStat', 'A62'
  209. npc_sex[$boy] += 1
  210. gs 'oral','start'
  211. gs 'stat'
  212. act 'Swallow':
  213. *clr & cla
  214. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhcum0.'+rand(1,5)+'.jpg"></center>'
  215. 'You tightly squeeze Vasya''s cock in your hand and without taking it out of your mouth, he starts to fiercely slam his cock into your gaping mouth until he finally erupts into your mouth. You taste his warm sticky sperm in your mouth and sliding down your throat as you swallow it all.'
  216. swallow += 1
  217. minut += 5
  218. gs 'cum_call', 'mouth', $boy, 1
  219. gs 'stat'
  220. act 'Suck':
  221. *clr & cla
  222. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuh0.'+rand(1,5)+'.jpg"></center>'
  223. 'You dutifully continue to suck, occasionally glancing at Mira doing the same.'
  224. gs 'boyStat', 'A61'
  225. npc_sex[$boy] += 1
  226. gs 'oral','start'
  227. gs 'stat'
  228. act 'Swallow':
  229. *clr & cla
  230. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhcum0.'+rand(1,5)+'.jpg"></center>'
  231. 'You quickly begin moving bobbing your head up and down the cock in your mouth, until finally you fill your mouth filled with his warm sticky cum...'
  232. minut += 5
  233. swallow += 1
  234. gs 'cum_call', 'mouth', $boy, 1
  235. gs 'stat'
  236. act 'Suck':
  237. *clr & cla
  238. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuh0.'+rand(1,5)+'.jpg"></center>'
  239. 'You`re tired, but obediently begin to suck...'
  240. gs 'boyStat', 'A63'
  241. npc_sex[$boy] += 1
  242. gs 'oral','start'
  243. gs 'stat'
  244. act 'Swallow':
  245. *clr & cla
  246. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhcum0.'+rand(1,5)+'.jpg"></center>'
  247. 'You compress the Mitka''s large cock between your lips and increase the tempo, until you are rewarded with a mouthful of cum, which you greedily swallow.'
  248. minut += 5
  249. swallow += 1
  250. gs 'cum_call', 'mouth', $boy, 1
  251. gs 'arousal', 'end'
  252. gs 'stat'
  253. act 'Leave': MiraLoc = 0 & minut += 10 & gt'Gaddvor'
  254. end
  255. end
  256. end
  257. end
  258. end
  259. end
  260. end
  261. end
  262. if $ARGS[0] = 'mirapiss_3':
  263. if npc_drunk['A60'] >= 4:
  264. '<center><img <<$set_imgh>> src="images/characters/village/mira/sex/miraqw15.jpg"></center>'
  265. '"I''m bored!" Kolyamba yells. "Mira get your ass down and give us a show to remember!" he snorts like a pig. "Show us how how lose your holes are whore..."'
  266. 'Mira grunts affirmatively, and undresses. She gets down on all hours and stickis out her ass in the direction of the party. She begins to fuck many of her fingers into both holes. Mira grunts like an animal as she forces more fingers into her painfully stretched holes. She moans and continues to awkwardly thrust her fingers deep into both her pussy and ass. Vasya, looks over at you appraisingly and says, "<<$pcs_nickname>>, why don''t you join her" - and starts cheering you on. '
  267. minut += 5
  268. if npc_QW['A60'] < 30: npc_QW['A60'] += 1
  269. if npc_QW['A63'] < 20:npc_QW['A63'] += 1
  270. gs 'stat'
  271. act 'You join Mira':
  272. *clr & cla
  273. if anus <= 15:'<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhshow2.jpg"></center>'
  274. 'You drunkenly drop down next to Mira as she wantenly continues to masterbate before the group of guys. At first, you are a little uncomfortable masterbating before the guys, but the excitement takes over and you join Mira as a sexual beast. You are moaning and thrusting your fingers as deep as you can into both your holes, you rapidly bring yourself to raging orgasm.'
  275. if anus > 15:'<center><video autoplay loop src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhshow2.mp4"></video></center>'
  276. 'You drunkenly drop down next to Mira as she wantenly continues to masterbate before the group of guys. At first, you are a little uncomfortable masterbating before the guys, but the excitement takes over and you join Mira as a sexual beast. You are moaning and thrusting your fingers as deep as you can into both your holes. Eventually get on your knees and thrust your entire hand into your ass, which rapidly bring yourself to screaming orgasm. The guys stand and cheer your efforts.'
  277. gs 'arousal','masturbate',15,'exhibitionism', 'sub', 'group'
  278. gs 'stat'
  279. act 'Further':gt $curloc
  280. end
  281. else
  282. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/drunk1.jpg"></center>'
  283. '"Okay girls, get off your asses and give us a show!" - Kolyamba demands. "I want to see you dance..."'
  284. 'Mira and you laughingly strip off your clothes...'
  285. gs 'clothing', 'strip', 'Gaddvor'
  286. gs 'underwear', 'remove'
  287. inhib_exp += rand(0,1)
  288. minut += 5
  289. if npc_QW['A60'] < 25: npc_QW['A60'] += 1
  290. gs 'stat'
  291. act 'Dance':
  292. *clr & cla
  293. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhdance0.'+rand(0,3)+'.jpg"></center>'
  294. 'You whirl and dance around the fire completely naked. You are drunk, but yours having fun and it cool to dance with Mira...'
  295. gs 'arousal','flash', 10, 'sub', 'group'
  296. gs 'stat'
  297. act 'Further':gt $curloc
  298. end
  299. end
  300. end
  301. if $ARGS[0] = 'mirafuck_0':
  302. act 'Suck':
  303. *clr & cla
  304. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhoral0.'+rand(1,8)+'.jpg"></center>'
  305. 'The guys roughly undress both you and Mira. They fall upon you both and start to fuck you both in the mouth at the same time. You think to yourself, "<i>Damn, but they lacked imagination</i>"'
  306. gs 'clothing', 'strip', 'gadukino'
  307. gs 'underwear', 'remove'
  308. minut += 10
  309. if npc_QW['A60'] < 20: npc_QW['A60'] += 1
  310. gs 'boyStat', 'A63'
  311. npc_sex[$boy] += 1
  312. gs 'oral','start'
  313. gs 'boyStat', 'A62'
  314. npc_sex[$boy] += 1
  315. gs 'oral','start'
  316. gs 'cum_call', 'mouth', $boy, 1
  317. gs 'boyStat', 'A61'
  318. npc_sex[$boy] += 1
  319. gs 'oral','start'
  320. gs 'stat'
  321. act 'Swallow':
  322. *clr & cla
  323. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhoralcum0.'+rand(1,5)+'.jpg"></center>'
  324. 'The youths quickly reach the peak of excitement and start dumping their cum all over both of your faces.'
  325. minut += 10
  326. swallow += 1
  327. gs 'cum_call', 'face', $boy, 1
  328. gs 'arousal', 'end'
  329. gs 'stat'
  330. gs 'underwear', 'wear'
  331. gs 'clothing', 'recover_lost_clothes', 'gadukino', 1
  332. act 'Leave': MiraLoc = 0 & minut += 10 & gt'gadukino'
  333. end
  334. end
  335. end
  336. if $ARGS[0] = 'mirafuck_1':
  337. act 'Given Mitka':
  338. *clr & cla
  339. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhgroup1.'+rand(1,5)+'.jpg"></center>'
  340. 'You go with Mirka and he quickly undresses and begins to roughly fuck you. While Mira get simular treatment just a couple feet away by Vasya.'
  341. gs 'clothing', 'strip', 'gadukino'
  342. gs 'underwear', 'remove'
  343. gs 'boyStat', 'A63'
  344. npc_sex[$boy] += 1
  345. pose = 1
  346. if npc_QW['A60'] < 30: npc_QW['A60'] += 1
  347. if mesec = 0:
  348. gs 'dinsex', 'boy_puts_condom'
  349. gs 'dinsex','vaginal_sex',10,'gangbang'
  350. gs 'dinsex','sexcum'
  351. else
  352. gs 'dinSex','boy_wants_anal','lubri'
  353. gs 'dinsex','analsex',10,'gangbang'
  354. end
  355. gs 'stat'
  356. act 'Given Kolyamba':
  357. *clr & cla
  358. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhgroup1.'+rand(1,5)+'.jpg"></center>'
  359. 'Once Mitka has finished with you he passes you over to Kolyamba. He is even more rough in his treatment as he fucks you hard. Mitka moves over to Mira and fucks her with wild abandon.'
  360. gs 'boyStat', 'A61'
  361. npc_sex[$boy] += 1
  362. pose = 1
  363. gs 'stat'
  364. if mesec = 0:
  365. gs 'dinsex', 'boy_puts_condom'
  366. gs 'dinsex','vaginal_sex',10,'gangbang'
  367. gs 'dinsex','sexcum'
  368. else
  369. gs 'dinsex','analsex',10,'gangbang'
  370. end
  371. act 'Given Vasya':
  372. *clr & cla
  373. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhgroup1.'+rand(1,5)+'.jpg"></center>'
  374. 'Finally, Vasya takes his turn with your sore pussy, while Kolyamba grabs Mira and slams his cock balls deep in her abused pussy.'
  375. gs 'boyStat', 'A62'
  376. npc_sex[$boy] += 1
  377. pose = 1
  378. if mesec = 0:
  379. gs 'dinsex', 'boy_puts_condom'
  380. gs 'dinsex','vaginal_sex',10,'gangbang'
  381. gs 'dinsex','sexcum'
  382. else
  383. gs 'dinsex','analsex',10,'gangbang'
  384. end
  385. gs 'stat'
  386. act 'Swallow':
  387. *clr & cla
  388. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhoralcum0.'+rand(1,5)+'.jpg"></center>'
  389. 'In the end they sit you and Mira on your knees and release all the pent up cum upon your faces.'
  390. minut += 10
  391. swallow += 1
  392. facial +=1
  393. gs 'cum_call', 'mouth', $boy, 1
  394. gs 'boyStat', 'A61'
  395. gs 'cum_call', 'face', $boy, 1
  396. gs 'arousal', 'end'
  397. gs 'stat'
  398. gs 'underwear', 'wear'
  399. gs 'clothing', 'recover_lost_clothes', 'gadukino', 1
  400. act 'Leave': MiraLoc = 0 & minut += 10 & gt'gadukino'
  401. end
  402. end
  403. end
  404. end
  405. end
  406. if $ARGS[0] = 'mirafuck_2':
  407. act 'Suck':
  408. *clr & cla
  409. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuh1.'+rand(1,5)+'.jpg"></center>'
  410. 'You are fully clothed and on your knees before the youths cocks. You open your mouth wide and slowly began to serve them.'
  411. if npc_QW['A60'] < 20: npc_QW['A60'] += 1
  412. gs 'boyStat', 'A63'
  413. npc_sex[$boy] += 1
  414. gs 'oral','start'
  415. gs 'cum_call', 'face', $boy, 1
  416. gs 'boyStat', 'A62'
  417. npc_sex[$boy] += 1
  418. gs 'oral','start'
  419. gs 'cum_call', 'face', $boy, 1
  420. gs 'boyStat', 'A61'
  421. npc_sex[$boy] += 1
  422. gs 'oral','start'
  423. gs 'cum_call', 'face', $boy, 1
  424. 'Soon they start cumming on your face, seaming to have balls full of cum. Once they finish, they walk back to their drinks and lose all interest to you...'
  425. gs 'arousal', 'end'
  426. act 'Leave': MiraLoc = 0 & minut += 10 & gt'gadukino'
  427. end
  428. end
  429. if $ARGS[0] = 'mirafuck_3':
  430. act 'To flop on the bed':
  431. *clr & cla
  432. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuh2.'+rand(3,4)+'.jpg"></center>'
  433. 'You and Mira both flop down on the bed and the boys immediately begin to touch you both and push there fingers into all your cracks.'
  434. gs 'clothing', 'strip', 'gadukino'
  435. gs 'underwear', 'remove'
  436. npc_QW['A63'] += 1
  437. if npc_QW['A60'] < 30: npc_QW['A60'] += 1
  438. gs 'stat'
  439. act 'Give the boys':
  440. *clr & cla
  441. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuh2.'+rand(1,2)+'.jpg"></center>'
  442. 'You are not given time to get fully into the bed before a cock is shoved into your mouth. You start to suck on the guys cock.'
  443. gang += 1
  444. minut += 10
  445. gs 'stat'
  446. act 'Moan':
  447. *clr & cla
  448. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhanal0.'+rand(1,5)+'.jpg"></center>'
  449. gs 'boyStat', 'A61'
  450. npc_sex[$boy] += 1
  451. gs 'dinSex','boy_wants_anal','lubri'
  452. gs 'dinsex','analsex',10,'gangbang'
  453. gs 'cum_call', 'anus', $boy, 1
  454. gs 'stat'
  455. act 'Moan':
  456. *clr & cla
  457. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhgroup0.'+rand(1,5)+'.jpg"></center>'
  458. gs 'boyStat', 'A63'
  459. npc_sex[$boy] += 1
  460. gs 'dinsex', 'boy_puts_condom'
  461. gs 'dinsex','vaginal_sex',10,'gangbang'
  462. gs 'dinsex','sexcum'
  463. gs 'stat'
  464. act 'Suck':
  465. *clr & cla
  466. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhoralcum0.'+rand(1,3)+'.jpg"></center>'
  467. gs 'boyStat', 'A62'
  468. npc_sex[$boy] += 1
  469. gs 'oral','start'
  470. 'exhausted, you hear, Vasya straining as he fucks your mouth. You immediately tighten your grip around his cock and squeeze it and guides it into your mouth. A few seconds later you feel the tart taste of semen...'
  471. gs 'cum_call', 'mouth', $boy, 1
  472. gs 'arousal', 'end'
  473. gs 'stat'
  474. gs 'underwear', 'wear'
  475. gs 'clothing', 'recover_lost_clothes', 'gadukino', 1
  476. act 'Leave': MiraLoc = 0 & minut += 10 & gt'gadukino'
  477. end
  478. end
  479. end
  480. end
  481. end
  482. end
  483. if $ARGS[0] = 'mirafuck_4':
  484. act 'Go with the boys':
  485. *clr & cla
  486. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhgroup.jpg"></center>'
  487. 'The two youths wave goodbye to Mitya and Mirka before they take you to Vasya''s home, where they quickly begin to remove your clothes...'
  488. gs 'clothing', 'strip', 'gadukino'
  489. gs 'underwear', 'remove'
  490. temp_mb = RAND(0,5)
  491. minut += 15
  492. gs 'boyStat', 'A61'
  493. npc_sex[$boy] += 1
  494. if npc_QW['A63'] < 20:npc_QW['A63'] += 1
  495. if npc_QW['A60'] < 30: npc_QW['A60'] += 1
  496. gs 'stat'
  497. if temp_mb < 4:
  498. act 'Moan':
  499. *clr & cla
  500. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhgroup0.'+rand(1,5)+'.jpg"></center>'
  501. gs 'boyStat', 'A62'
  502. npc_sex[$boy] += 1
  503. gs 'dinsex', 'boy_puts_condom'
  504. gs 'dinsex','vaginal_sex',10,'gangbang'
  505. gs 'dinsex','sexcum'
  506. gs 'stat'
  507. act 'Suck':
  508. *clr & cla
  509. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhoralcum0.'+rand(4,5)+'.jpg"></center>'
  510. gs 'boyStat', 'A61'
  511. gs 'oral','start'
  512. 'exhausted, you hear, Vasya straining as he fucks your mouth. You immediately tighten your grip around his cock and squeeze it and guides it into your mouth. A few seconds later you feel the tart taste of semen...'
  513. gs 'cum_call', 'mouth', $boy, 1
  514. gs 'arousal', 'end'
  515. gs 'stat'
  516. gs 'underwear', 'wear'
  517. gs 'clothing', 'recover_lost_clothes', 'gadukino', 1
  518. act 'Leave': MiraLoc = 0 & minut += 10 & gt'gadukino'
  519. end
  520. end
  521. else
  522. act 'Moan':
  523. *clr & cla
  524. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhanal0.'+rand(1,5)+'.jpg"></center>'
  525. gs 'boyStat', 'A61'
  526. gs 'dinSex','boy_wants_anal','lubri'
  527. gs 'dinsex','analsex',10,'gangbang'
  528. gs 'cum_call', 'anus', $boy, 1
  529. gs 'stat'
  530. act 'Suck':
  531. *clr & cla
  532. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhoralcum0.'+rand(4,5)+'.jpg"></center>'
  533. gs 'boyStat', 'A62'
  534. npc_sex[$boy] += 1
  535. gs 'oral','start'
  536. 'exhausted, you hear, Vasya straining as he fucks your mouth. You immediately tighten your grip around his cock and squeeze it and guides it into your mouth. A few seconds later you feel the tart taste of semen...'
  537. gs 'cum_call', 'mouth', $boy, 1
  538. gs 'arousal', 'end'
  539. gs 'stat'
  540. gs 'underwear', 'wear'
  541. gs 'clothing', 'recover_lost_clothes', 'gadukino', 1
  542. act 'Leave': MiraLoc = 0 & minut += 10 & gt'gadukino'
  543. end
  544. end
  545. end
  546. end
  547. end
  548. if $ARGS[0] = 'mirafuck_5':
  549. act 'Get in position':
  550. *clr & cla
  551. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuh2.4.jpg"></center>'
  552. 'You and Mira obediently get up on all fours. The youths immediately begin to be have fun with your gaping holes...'
  553. gs 'clothing', 'strip', 'gadukino'
  554. gs 'underwear', 'remove'
  555. temp_mb = RAND(0,5)
  556. minut += 15
  557. pose = 1
  558. if npc_QW['A60'] < 30: npc_QW['A60'] += 1
  559. gs 'stat'
  560. if temp_mb < 4:
  561. act 'Moan':
  562. *clr & cla
  563. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhgroup1.'+rand(1,5)+'.jpg"></center>'
  564. gs 'boyStat', 'A62'
  565. npc_sex[$boy] += 1
  566. gs 'dinsex', 'boy_puts_condom'
  567. gs 'dinsex','vaginal_sex',10,'gangbang'
  568. gs 'dinsex','sexcum'
  569. act 'Suck':
  570. *clr & cla
  571. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhoralcum0.'+rand(4,5)+'.jpg"></center>'
  572. gs 'boyStat', 'A61'
  573. npc_sex[$boy] += 1
  574. gs 'oral','start'
  575. 'exhausted, you hear, Vasya straining as he fucks your mouth.You immediately tighten your grip around his cock and squeeze it and guides it into your mouth. A few seconds later you feel the tart taste of semen...'
  576. gs 'cum_call', 'mouth', $boy, 1
  577. gs 'arousal', 'end'
  578. gs 'stat'
  579. gs 'underwear', 'wear'
  580. gs 'clothing', 'recover_lost_clothes', 'gadukino', 1
  581. act 'Leave': MiraLoc = 0 & minut += 10 & gt'gadukino'
  582. end
  583. end
  584. else
  585. act 'Moan':
  586. *clr & cla
  587. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhgroup1.'+rand(1,5)+'.jpg"></center>'
  588. gs 'boyStat', 'A61'
  589. npc_sex[$boy] += 1
  590. gs 'dinSex','boy_wants_anal','lubri'
  591. gs 'dinsex','analsex',10,'gangbang'
  592. gs 'cum_call', 'anus', $boy, 1
  593. gs 'stat'
  594. act 'Suck':
  595. *clr & cla
  596. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/mitka/mitka_group/mitkabuhoralcum0.'+rand(4,5)+'.jpg"></center>'
  597. gs 'boyStat', 'A62'
  598. npc_sex[$boy] += 1
  599. gs 'oral','start'
  600. 'exhausted, you hear, Vasya straining as he fucks your mouth. You immediately tighten your grip around his cock and squeeze it and guides it into your mouth. A few seconds later you feel the tart taste of semen...'
  601. gs 'cum_call', 'mouth', $boy, 1
  602. gs 'arousal', 'end'
  603. gs 'stat'
  604. gs 'underwear', 'wear'
  605. gs 'clothing', 'recover_lost_clothes', 'gadukino', 1
  606. act 'Leave': MiraLoc = 0 & minut += 10 & gt'gadukino'
  607. end
  608. end
  609. end
  610. end
  611. end
  612. --- mitkabuh_group ---------------------------------