huntersex.qsrc 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733
  1. # huntersex
  2. if $ARGS[0] = 'sexafterstrip1':
  3. !disabled - maybe hook into enema realism?
  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. !sex after of Striptease if she`s not a whore
  6. gs 'boyStat', 'A172','1' &! Andrei
  7. gs 'boyStat', 'A173','2' &! Igor
  8. gs 'boyStat', 'A174','3' &! Sergei
  9. gang +=1
  10. npc_sex[$boy[1]] += 1
  11. npc_sex[$boy[2]] += 1
  12. npc_sex[$boy[3]] += 1
  13. minut += 5
  14. gs 'shortgs','smoker'
  15. pcs_mood = 100
  16. dirty_dickA = 0
  17. dirty_dickB = 0
  18. dirty_dickC = 0
  19. boyAsex = 0
  20. boyBsex = 0
  21. boyCsex = 0
  22. boyAsexa = 0
  23. boyBsexa = 0
  24. boyCsexa = 0
  25. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dance5.jpg"></center>'
  26. 'You tiredly sit down on the edge of the table to rest and have a smoke. During the dance you captivated the guys attention, but when you are approached by Igor, you notice that they are now completely naked.'
  27. '-<<$pcs_nickname>>, we demand to continue the activities, " he said, smiling and pointing to his dick.'
  28. gs 'stat'
  29. act 'Stroke him':
  30. *clr & cla
  31. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi.jpg"></center>'
  32. 'The alcohol had dulled your sense of shame and you quickly took his cock your in hand and began to stroke it...'
  33. act 'Put his cock in your mouth':
  34. *clr & cla
  35. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi1.jpg"></center>'
  36. 'You slowly wrap your mouth around his member...'
  37. 'Sensing his chance, Igor suddenly shoves his entire dick down your throat before you can protest. Tears begin to well up in your eyes...'
  38. gs 'arousal', 'bj',5, 'dick[2]', 'sub', 'deepthroat'
  39. gs 'stat'
  40. act 'Suck on':
  41. *clr & cla
  42. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi2.jpg"></center>'
  43. 'Igor continues to batter your mouth, while Andrei and Sergei watch and even help him, pushing your head deeper on his cock...'
  44. gs 'arousal', 'bj', 5, 'dick[2]', 'sub', 'deepthroat'
  45. gs 'stat'
  46. act 'Suck them all':
  47. *clr & cla
  48. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoasi1.'+rand(1,3)+'.jpg"></center>'
  49. 'Andrei and Sergei aren''t content to just watch you all night and put hands on their dicks as well. You began to suck and stroke the circle of guys around you, alternating attention to each member.'
  50. gs 'arousal', 'bj', 5,'dick[1]', 'sub', 'gangbang'
  51. gs 'arousal', 'bj', 5,'dick[3]', 'sub', 'gangbang'
  52. gs 'stat'
  53. act 'Lie down on your back':
  54. *clr & cla
  55. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvaosi1.'+rand(1,2)+'.jpg"></center>'
  56. 'The guys put you on the bed and Andrei settles down between your legs, while Igor and Sergei hover over you and put their members in front of your face...'
  57. gs 'arousal', 'bj', 5, 'dick[2]', 'sub', 'gangbang'
  58. gs 'arousal', 'bj', 5, 'dick[3]', 'sub', 'gangbang'
  59. gs 'arousal', 'vaginal', 10, 'dick[1]', 'sub', 'gangbang'
  60. minut -= 10
  61. gs 'stat'
  62. act 'Lie on your side':
  63. *clr & cla
  64. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrv2aosi1.'+rand(1,3)+'.jpg"></center>'
  65. 'Andrei rolls you to the side and without even moving from between your legs, and Igor and Sergei reposition to put their dicks in the face again...'
  66. gs 'arousal', 'bj', 5, 'dick[3]', 'sub', 'gangbang'
  67. gs 'arousal', 'bj', 5, 'dick[2]', 'sub', 'gangbang'
  68. gs 'arousal', 'vaginal', 10, 'dick[1]', 'sub', 'gangbang'
  69. minut -= 10
  70. gs 'stat'
  71. act 'Get on all fours':
  72. *clr & cla
  73. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvioas1.'+rand(1,4)+'.jpg"></center>'
  74. 'Igor pushes you down on all fours and then moves behind you. He begins to pound you from behind with increasing frequency. Sergei and Andrei refuse to give you a rest and shove their dicks in your mouth...'
  75. gs 'arousal', 'bj', 5, 'dick[3]', 'sub', 'gangbang'
  76. gs 'arousal', 'bj', 5, 'dick[1]', 'sub', 'gangbang'
  77. gs 'arousal', 'vaginal', 10, 'dick[2]', 'sub', 'gangbang'
  78. minut -= 10
  79. gs 'stat'
  80. act 'Sit down':
  81. *clr & cla
  82. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvsoia1.'+rand(1,3)+'.jpg"></center>'
  83. 'Sergei sits on the bed, and pulls you on top of him. Igor and Andrei adjust to this new position accordingly...'
  84. gs 'arousal', 'bj', 5, 'dick[2]', 'sub', 'gangbang'
  85. gs 'arousal', 'bj', 5, 'dick[1]', 'sub', 'gangbang'
  86. gs 'arousal', 'vaginal', 10, 'dick[3]', 'sub', 'gangbang'
  87. minut -= 10
  88. gs 'stat'
  89. act 'Further':
  90. *clr & cla
  91. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi3.jpg"></center>'
  92. 'You continue to suck Igor, but then you feel someone''s finger begins to penetrate your ass...'
  93. gs 'arousal', 'bj', 5, 'dick[2]','sub', 'gangbang'
  94. gs 'arousal', 'anal_finger', 2, 'sub', 'gangbang'
  95. minut -= 2
  96. gs 'stat'
  97. act 'Further':
  98. *clr & cla
  99. pcs_mood += 25
  100. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi4.jpg"></center>'
  101. 'Andrei greased your ass with vaseline...'
  102. '- Well, even so, not dry, " you thought with relief.'
  103. lubri +=1
  104. gs 'arousal', 'anal_finger', 5,'lube', 'gangbang'
  105. gs 'stat'
  106. act 'Lie down on the ground':
  107. *clr & cla
  108. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrdpvaaios1.'+rand(1,2)+'.jpg"></center>'
  109. 'Andrei gets on the ground and pulls you down with him. You feel his dick pop into your ass.'
  110. 'Igor moves in front of you and lines up on your second exposed hole.'
  111. 'You think, "At least I only have to suck one dick at a time now..."'
  112. gs 'arousal', 'bj', 5, 'dick[3]', 'sub', 'gangbang'
  113. gs 'arousal', 'anal', 5, 'dick[2]', 'sub', 'gangbang'
  114. gs 'arousal', 'vaginal', 10, 'dick[1]', 'sub', 'gangbang'
  115. minut -= 10
  116. gs 'stat'
  117. act 'Kneel in front of the guys':
  118. *clr & cla
  119. minut += 1
  120. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi5.jpg"></center>'
  121. 'Without a word all three guys pull out of you and drag you to your knees.'
  122. 'They all begin to masturbate in front of your face, and you prepare yourself for the amount of cum that is about to cover you...'
  123. act 'Wait patiently':
  124. *clr & cla
  125. minut += 1
  126. gs 'cum_call', 'face', $boy[1],1,'','',20
  127. gs 'cum_call', 'face', $boy[2],1,'','',20
  128. gs 'cum_call', 'face', $boy[3],1,'','',20
  129. gs 'cum_call', 'stomach', $boy[2],1,'','',20
  130. gs 'cum_call', 'mouth', $boy[1],1,'','',20
  131. gs 'cum_call','breasts',$boy[3],1,'','',20
  132. swallow += 1
  133. gs 'stat'
  134. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi6.jpg"></center>'
  135. 'Finally, the guys started to cum. Jets of sperm struck your face, some got in your mouth and dripped onto your breast and stomach as well...'
  136. act 'Pass out':
  137. *clr & cla
  138. minut += 1
  139. gs 'stat'
  140. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/dancesexson.jpg"></center>'
  141. 'As soon as the guys moved away from you, you passed out on the floor from exhaustion...'
  142. 'Before you totally lost consciousness you hear the guys talking about you...'
  143. if huntersIgorLove > 0:'" - I told you Igor, that she was a whore, and you didn`t believe me. Well, now you know..." says Andrei.'
  144. if huntersIgorLove = 1 or huntersIgorLove = 2:'" - and I thought she really was the one." replies Igor. You realize that your relationship with him is now over.'
  145. if huntersIgorLove = 3:'" - and I thought she really was the one." replies Igor. You realize that your marriage with him is now over.'
  146. if huntersSergeiLove > 0:'" - I told you Sergei, that she was a whore, and you didn`t believe me," says Andrei.'
  147. if huntersSergeiLove > 0:'" - Yeah, you were right all along." relies Sergei. You realize that your relationship with him is now over.'
  148. if huntersAndreiLove > 0:'" - Yeah, I thought you were different, but in the end you were just a slut like all the other girls" says Andrei. He spits on you before walking away. You realize that your relationship with him is now over.'
  149. act 'Wake up':
  150. *clr & cla
  151. minut += 600
  152. pcs_sleep += 60
  153. pcs_health += 50
  154. pcs_mood += 50
  155. huntdanceslut = 1
  156. if huntersIgorLove = 3:huntersIgorLove = 0 & huntersIgorQw -= 100 & husband = 0 & divorced += 1 & husbandMark = 0 & husbharmin = 0 & husbizvradd = 0
  157. if huntersIgorLove = 2:huntersIgorLove = 0 & huntersIgorQw -= 100 & bfa += 0
  158. if huntersIgorLove = 1:huntersIgorLove = 0 & huntersIgorQw -= 100
  159. if huntersSergeiLove = 1:huntersSergeiLove = 0 & huntersSergeiQw -= 100
  160. if huntersAndreiLove = 1:huntersAndreiLove = 0 & huntersAndreiQw -= 100
  161. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/drunk_ev/pohmel1.jpg"></center>'
  162. 'You don''t know how long you were asleep for, but your head is pounding when you wake up and your whole body hurts.'
  163. 'You vaguely remember dancing for the guys yesterday but the rest is still blurry.'
  164. gs 'arousal', 'end'
  165. gs 'stat'
  166. act 'Further': gt'swamphouse'
  167. end
  168. end
  169. end
  170. end
  171. end
  172. end
  173. end
  174. end
  175. end
  176. end
  177. end
  178. end
  179. end
  180. end
  181. end
  182. end
  183. !sex after of Striptease if GG whore
  184. if $ARGS[0] = 'sexafterstrip3':
  185. gs 'boyStat', 'A172','1' &! Andrei
  186. gs 'boyStat', 'A173','2' &! Igor
  187. gs 'boyStat', 'A174','3' &! Sergei
  188. gang +=1
  189. npc_sex[$boy[1]] += 1
  190. npc_sex[$boy[2]] += 1
  191. npc_sex[$boy[3]] += 1
  192. minut += 5
  193. gs 'shortgs','smoker'
  194. pcs_mood = 100
  195. dirty_dickA = 0
  196. dirty_dickB = 0
  197. dirty_dickC = 0
  198. boyAsex = 0
  199. boyBsex = 0
  200. boyCsex = 0
  201. boyAsexa = 0
  202. boyBsexa = 0
  203. boyCsexa = 0
  204. huntslutsex += rand(9,12)
  205. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dance6.jpg"></center>'
  206. 'You tiredly sit down on the edge of the table to rest and have a smoke. Igor comes over to you naked.'
  207. '-<<$pcs_nickname>>, that was really cool, " he said, smiling . - Want to continue?'
  208. '- Of course you reply, smiling right back.'
  209. gs 'arousal', 'foreplay', 5, 'sub'
  210. gs 'stat'
  211. act 'Suck':
  212. *clr & cla
  213. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi2.'+rand(0,4)+'.jpg"></center>'
  214. 'You wrap your lips around Igor''s member..'
  215. gs 'boyStat', 'A173' &! Igor ... need data for oral procedure
  216. gs 'oral','start'
  217. 'You try to swallow as Igor''s dick as deeply as possible and he seems to like it...'
  218. gs 'arousal', 'bj', 5, 'sub', 'deepthroat'
  219. gs 'stat'
  220. if pcs_sleep < 10:
  221. act 'Pass out': gt 'hunters', 'huntersgroupfaint'
  222. else
  223. act 'Suck all the guys':gt 'huntersex', 'huntersgrOasi'
  224. end
  225. end
  226. end
  227. ! sex if naked in front of GG hunters
  228. if $ARGS[0] = 'huntersexnude':
  229. gs 'boyStat', 'A172','1' &! Andrei
  230. gs 'boyStat', 'A173','2' &! Igor
  231. gs 'boyStat', 'A174','3' &! Sergei
  232. gang +=1
  233. npc_sex[$boy[1]] += 1
  234. npc_sex[$boy[2]] += 1
  235. npc_sex[$boy[3]] += 1
  236. gang += 1
  237. dirty_dickA = 0
  238. dirty_dickB = 0
  239. dirty_dickC = 0
  240. boyAsex = 0
  241. boyBsex = 0
  242. boyCsex = 0
  243. boyAsexa = 0
  244. boyBsexa = 0
  245. boyCsexa = 0
  246. huntslutsex += rand(9,12)
  247. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersrelax1.4.jpg"></center>'
  248. 'You approached the guys with a playful smile...'
  249. '- You know what to do <<$pcs_nickname>>, - said Andrei smiling.'
  250. gs 'arousal', 'foreplay', 5, 'sub'
  251. gs 'stat'
  252. act 'Suck':gt 'huntersex', 'huntersgrOasi'
  253. end
  254. ! if GG whore
  255. if $ARGS[0] = 'sluthomesex':
  256. huntslutsex += rand(3,6)
  257. ! for a break between the sex, is taken away -1 every hour
  258. dirty_dickA = 0
  259. dirty_dickB = 0
  260. dirty_dickC = 0
  261. boyAsex = 0
  262. boyBsex = 0
  263. boyCsex = 0
  264. boyAsexa = 0
  265. boyBsexa = 0
  266. boyCsexa = 0
  267. gs 'clothing', 'strip', 'swamphouse'
  268. if hunterandreisex = 0 and temphunt = 1:hunterandreisex = 1 & guy += 1
  269. if huntersergeisex = 0 and temphunt = 2:huntersergeisex = 1 & guy += 1
  270. if hunterigorsex = 0 and temphunt = 3:hunterigorsex = 1 & guy += 1
  271. if temphunt = 1:gs 'boyStat', 'A172'
  272. if temphunt = 2:gs 'boyStat', 'A174'
  273. if temphunt = 3:gs 'boyStat', 'A173'
  274. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomesex1.jpg"></center>'
  275. 'When you reached the couch, he immediately began to undress you.'
  276. '- You know what to do <<$pcs_nickname>>, - said <<$boydesc>> smiling.'
  277. gs 'arousal', 'foreplay', 5, 'sub'
  278. gs 'stat'
  279. act 'Squat':gt 'huntersex', 'sluthomeSTART'
  280. end
  281. if $ARGS[0] = 'doublelovesex':
  282. !trio
  283. !!if doublelovesex = 1 or slutgosex = 2 or forest_huntersex = 2 or forest_gopsex = 2:
  284. *clr & cla
  285. slutgosex = 0
  286. doublelovesex = 0
  287. dirty_dickA = 0
  288. dirty_dickB = 0
  289. dirty_dickC = 0
  290. boyAsex = 0
  291. boyBsex = 0
  292. boyCsex = 0
  293. boyAsexa = 0
  294. boyBsexa = 0
  295. boyCsexa = 0
  296. ! for a break between the sex, is taken away -1 every hour
  297. if slutgosex = 2:huntslutsex += rand(6,9)
  298. if doublelovesex = 1:huntersAndreisex += rand(6,24)
  299. if doublelovesex = 1:huntersSergeisex += rand(9,30)
  300. huntsexa = rand(1,5)
  301. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovesex.jpg"></center>'
  302. if doublelovesex = 1:
  303. 'The guys surround you and begin to grab at and kiss your body. You feel pressure on your shoulders so you kneel down before them...'
  304. else
  305. 'The guys surround you and begin to undress you. You feel pressure on your shoulders so you kneel down before them...'
  306. end
  307. gs 'arousal', 'foreplay', 5, 'sub', 'group'
  308. gs 'stat'
  309. if huntsexa < 4:act 'Suck':gt 'huntersex', 'doubleloveOral12'
  310. if huntsexa = 4:act 'Suck':gt 'huntersex', 'doubleloveOralCum12_1'
  311. if huntsexa = 5:act 'Suck':gt 'huntersex', 'doubleloveOralCum12_2'
  312. end
  313. ! Two vs GG
  314. if $ARGS[0] = 'doubleloveOral12':
  315. *clr & cla
  316. lubonus += 1
  317. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoral12.'+rand(1,2)+'.jpg"></center>'
  318. 'You kneel in front of guys and begin sucking their dicks, taking turns and paying attention to each one...'
  319. if temphunt <= 2:gs 'boyStat', 'A172'
  320. if temphunt = 3:gs 'boyStat', 'A173'
  321. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63'
  322. if temphunt = 6:gs 'boyStat', 'A62'
  323. gs 'oral','start'
  324. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  325. if temphunt = 2:gs 'boyStat', 'A173'
  326. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  327. if temphunt = 5:gs 'boyStat', 'A62'
  328. gs 'oral','start'
  329. '<<$textsexhunter5>>'
  330. gs 'arousal', 'bj', 5, 'sub', 'group'
  331. gs 'stat'
  332. gs 'huntersex', 'rng_1'
  333. end
  334. if $ARGS[0] = 'doubleloveOralCum12_1':
  335. *clr & cla
  336. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoralcum12_1.jpg"></center>'
  337. 'You kneel in front of guys and begin sucking their dicks, taking turns and paying attention to each one...'
  338. gs 'cum_call', 'mouth', $boy, 1
  339. swallow += 1
  340. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  341. if temphunt = 2:gs 'boyStat', 'A173'
  342. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  343. if temphunt = 5:gs 'boyStat', 'A62'
  344. gs 'oral','start'
  345. if temphunt <= 2:gs 'boyStat', 'A172'
  346. if temphunt = 3:gs 'boyStat', 'A173'
  347. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63'
  348. if temphunt = 6:gs 'boyStat', 'A62'
  349. gs 'oral','start'
  350. gs 'dinsex', 'dinrandswallow'
  351. '<<$textsexhunter6>>'
  352. gs 'arousal', 'bj', 5, 'sub', 'group'
  353. gs 'stat'
  354. gs 'huntersex', 'rng_2'
  355. end
  356. if $ARGS[0] = 'doubleloveOralCum12_2':
  357. *clr & cla
  358. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoralcum12_2.jpg"></center>'
  359. 'You kneel in front of guys and begin sucking their dicks, taking turns and paying attention to each one...'
  360. gs 'cum_call', 'mouth', $boy, 1
  361. swallow += 1
  362. if temphunt <= 2:gs 'boyStat', 'A172'
  363. if temphunt = 3:gs 'boyStat', 'A173'
  364. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63'
  365. if temphunt = 6:gs 'boyStat', 'A62'
  366. gs 'oral','start'
  367. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  368. if temphunt = 2:gs 'boyStat', 'A173'
  369. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  370. if temphunt = 5:gs 'boyStat', 'A62'
  371. gs 'oral','start'
  372. gs 'dinsex', 'dinrandswallow'
  373. '<<$textsexhunter6>>'
  374. gs 'arousal', 'bj', 5, 'sub', 'group'
  375. gs 'stat'
  376. gs 'huntersex', 'rng_3'
  377. end
  378. if $ARGS[0] = 'doubleloveDog112':
  379. *clr & cla
  380. lubonus += 1
  381. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedog112.'+rand(1,3)+'.jpg"></center>'
  382. 'You bend over in between the boys and suck one cock, while the second penetrates you from behind...'
  383. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  384. if temphunt = 2:gs 'boyStat', 'A173'
  385. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  386. if temphunt = 5:gs 'boyStat', 'A62'
  387. gs 'oral','start'
  388. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  389. if temphunt <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  390. if temphunt = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  391. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  392. if temphunt = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  393. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  394. '<<$textsexhunter7>>'
  395. gs 'arousal', 'bj', 5, 'sub', 'group'
  396. gs 'arousal', 'anal', 5, 'sub', 'group'
  397. minut -= 5
  398. gs 'stat'
  399. gs 'huntersex', 'rng_4'
  400. end
  401. if $ARGS[0] = 'doubleloveDogCum112_1':
  402. *clr & cla
  403. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedogcum112_1.jpg"></center>'
  404. 'You bend over in between the boys and suck one cock, while the second penetrates you from behind...'
  405. gs 'cum_call', 'anus', $boy, 1
  406. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  407. if temphunt = 2:gs 'boyStat', 'A173'
  408. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  409. if temphunt = 5:gs 'boyStat', 'A62'
  410. gs 'oral','start'
  411. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  412. if temphunt <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  413. if temphunt = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  414. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  415. if temphunt = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  416. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  417. '<<$textsexhunter6>>'
  418. lubonus += 1
  419. gs 'arousal', 'bj', 5, 'sub', 'group'
  420. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  421. minut -= 5
  422. gs 'stat'
  423. gs 'huntersex', 'rng_2'
  424. end
  425. if $ARGS[0] = 'doubleloveDogCum112_2':
  426. *clr & cla
  427. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedogcum112_2.jpg"></center>'
  428. 'You bend over in between the boys and suck one cock, while the second penetrates you from behind...'
  429. gs 'cum_call', 'mouth', $boy, 1
  430. swallow += 1
  431. if temphunt <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  432. if temphunt = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  433. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  434. if temphunt = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  435. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  436. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  437. if temphunt = 2:gs 'boyStat', 'A173'
  438. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  439. if temphunt = 5:gs 'boyStat', 'A62'
  440. gs 'oral','start'
  441. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  442. gs 'dinsex', 'dinrandswallow'
  443. '<<$textsexhunter6>>'
  444. gs 'arousal', 'bj', 5, 'sub', 'group'
  445. gs 'arousal', 'anal', 5, 'sub', 'group'
  446. minut -= 5
  447. gs 'stat'
  448. gs 'huntersex', 'rng_3'
  449. end
  450. if $ARGS[0] = 'doubleloveDog212':
  451. *clr & cla
  452. lubonus += 1
  453. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedog212.'+rand(1,3)+'.jpg"></center>'
  454. 'You bend over in between the boys and suck one cock, while the second penetrates you from behind...'
  455. if temphunt <= 2:gs 'boyStat', 'A172'
  456. if temphunt = 3:gs 'boyStat', 'A173'
  457. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63'
  458. if temphunt = 6:gs 'boyStat', 'A62'
  459. gs 'oral','start'
  460. !if klismaday ! daystart and boyAsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  461. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174' & boyBsexa += 1
  462. if temphunt = 2:gs 'boyStat', 'A173' & boyBsexa += 1
  463. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61' & boyBsexa += 1
  464. if temphunt = 5:gs 'boyStat', 'A62' & boyBsexa += 1
  465. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  466. '<<$textsexhunter7>>'
  467. gs 'arousal', 'bj', 5, 'sub', 'group'
  468. gs 'arousal', 'anal', 5, 'sub', 'group'
  469. minut -= 5
  470. gs 'stat'
  471. gs 'huntersex', 'rng_4'
  472. end
  473. if $ARGS[0] = 'doubleloveDogCum212_1':
  474. *clr & cla
  475. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedogcum212_1.jpg"></center>'
  476. 'You bend over in between the boys and suck one cock, while the second penetrates you from behind...'
  477. gs 'cum_call', 'anus', $boy, 1
  478. if temphunt <= 2:gs 'boyStat', 'A172'
  479. if temphunt = 3:gs 'boyStat', 'A173'
  480. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63'
  481. if temphunt = 6:gs 'boyStat', 'A62'
  482. gs 'oral','start'
  483. !if klismaday ! daystart and boyAsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  484. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  485. if temphunt = 2:gs 'boyStat', 'A173'
  486. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  487. if temphunt = 5:gs 'boyStat', 'A62'
  488. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  489. '<<$textsexhunter6>>'
  490. lubonus += 1
  491. gs 'arousal', 'bj', 5, 'sub', 'group'
  492. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  493. minut -= 5
  494. gs 'stat'
  495. gs 'huntersex', 'rng_3'
  496. end
  497. if $ARGS[0] = 'doubleloveDogCum212_2':
  498. *clr & cla
  499. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedogcum212_2.jpg"></center>'
  500. 'You bend over in between the boys and suck one cock, while the second penetrates you from behind...'
  501. gs 'cum_call', 'mouth', $boy, 1
  502. swallow += 1
  503. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174' & boyBsexa += 1
  504. if temphunt = 2:gs 'boyStat', 'A173' & boyBsexa += 1
  505. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61' & boyBsexa += 1
  506. if temphunt = 5:gs 'boyStat', 'A62' & boyBsexa += 1
  507. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  508. if temphunt <= 2:gs 'boyStat', 'A172'
  509. if temphunt = 3:gs 'boyStat', 'A173'
  510. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63'
  511. if temphunt = 6:gs 'boyStat', 'A62'
  512. gs 'oral','start'
  513. !if klismaday ! daystart and boyAsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  514. gs 'dinsex', 'dinrandswallow'
  515. '<<$textsexhunter6>>'
  516. gs 'arousal', 'bj', 5, 'sub', 'group'
  517. gs 'arousal', 'anal', 5, 'sub', 'group'
  518. minut -= 5
  519. gs 'stat'
  520. gs 'huntersex', 'rng_2'
  521. end
  522. if $ARGS[0] = 'doubleloveSide12':
  523. *clr & cla
  524. lubonus += 1
  525. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveside12.'+rand(1,2)+'.jpg"></center>'
  526. 'You lie on your side with a member in front of your face, and the other one penetrating you from behind...'
  527. if temphunt <= 2:gs 'boyStat', 'A172'
  528. if temphunt = 3:gs 'boyStat', 'A173'
  529. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63'
  530. if temphunt = 6:gs 'boyStat', 'A62'
  531. gs 'oral','start'
  532. !if klismaday ! daystart and boyAsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  533. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174' & boyBsexa += 1
  534. if temphunt = 2:gs 'boyStat', 'A173' & boyBsexa += 1
  535. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61' & boyBsexa += 1
  536. if temphunt = 5:gs 'boyStat', 'A62' & boyBsexa += 1
  537. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  538. '<<$textsexhunter7>>'
  539. gs 'arousal', 'bj', 5, 'sub', 'group'
  540. gs 'arousal', 'anal', 5, 'sub', 'group'
  541. minut -= 5
  542. gs 'stat'
  543. gs 'huntersex', 'rng_1'
  544. end
  545. if $ARGS[0] = 'doubleloveSideCum12_1':
  546. *clr & cla
  547. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovesidecum12_1.jpg"></center>'
  548. 'You lie on your side with a member in front of your face, and the other one penetrating you from behind...'
  549. gs 'cum_call', 'anus', $boy, 1
  550. if temphunt <= 2:gs 'boyStat', 'A172'
  551. if temphunt = 3:gs 'boyStat', 'A173'
  552. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63'
  553. if temphunt = 6:gs 'boyStat', 'A62'
  554. gs 'oral','start'
  555. !if klismaday ! daystart and boyAsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  556. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  557. if temphunt = 2:gs 'boyStat', 'A173'
  558. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  559. if temphunt = 5:gs 'boyStat', 'A62'
  560. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  561. '<<$textsexhunter6>>'
  562. lubonus += 1
  563. gs 'arousal', 'bj', 5, 'sub', 'group'
  564. gs 'arousal', 'anal', 5, 'sub', 'group'
  565. minut -= 5
  566. gs 'stat'
  567. gs 'huntersex', 'rng_3'
  568. end
  569. if $ARGS[0] = 'doubleloveSideCum12_2':
  570. *clr & cla
  571. lubonus += 1
  572. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovesidecum12_2.jpg"></center>'
  573. 'You lie on your side with a member in front of your face, and the other one penetrating you from behind...'
  574. gs 'cum_call', 'mouth', $boy, 1
  575. swallow += 1
  576. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174' & boyBsexa += 1
  577. if temphunt = 2:gs 'boyStat', 'A173' & boyBsexa += 1
  578. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61' & boyBsexa += 1
  579. if temphunt = 5:gs 'boyStat', 'A62' & boyBsexa += 1
  580. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  581. if temphunt <= 2:gs 'boyStat', 'A172'
  582. if temphunt = 3:gs 'boyStat', 'A173'
  583. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63'
  584. if temphunt = 6:gs 'boyStat', 'A62'
  585. gs 'oral','start'
  586. !if klismaday ! daystart and boyAsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  587. gs 'dinsex', 'dinrandswallow'
  588. '<<$textsexhunter6>>'
  589. gs 'arousal', 'bj', 5, 'sub', 'group'
  590. gs 'arousal', 'anal', 5, 'sub', 'group'
  591. minut -= 5
  592. gs 'stat'
  593. gs 'huntersex', 'rng_2'
  594. end
  595. if $ARGS[0] = 'doubleloveCow112':
  596. *clr & cla
  597. lubonus += 1
  598. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecow112.'+rand(1,2)+'.jpg"></center>'
  599. 'One of the guys lays on the ground and you mount him. The second puts his cock in your mouth...'
  600. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  601. if temphunt = 2:gs 'boyStat', 'A173'
  602. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  603. if temphunt = 5:gs 'boyStat', 'A62'
  604. gs 'oral','start'
  605. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  606. if temphunt <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  607. if temphunt = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  608. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  609. if temphunt = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  610. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  611. '<<$textsexhunter7>>'
  612. gs 'arousal', 'bj', 5, 'sub', 'group'
  613. gs 'arousal', 'anal', 5, 'sub', 'group'
  614. minut -= 5
  615. gs 'stat'
  616. huntsexa = rand(1,8)
  617. gs 'huntersex', 'rng_5'
  618. if pcs_sleep >= 10 and huntsexa = 8:act 'Sit down':gt 'huntersex', 'doubleloveCowCum1'
  619. end
  620. if $ARGS[0] = 'doubleloveCowCum112_1':
  621. *clr & cla
  622. lubonus += 1
  623. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecowcum112_1.jpg"></center>'
  624. 'One of the guys lays on the ground and you mount him. The second puts his cock in your mouth...'
  625. gs 'cum_call', 'anus', $boy, 1
  626. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  627. if temphunt = 2:gs 'boyStat', 'A173'
  628. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  629. if temphunt = 5:gs 'boyStat', 'A62'
  630. gs 'oral','start'
  631. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  632. if temphunt <= 2:gs 'boyStat', 'A172'
  633. if temphunt = 3:gs 'boyStat', 'A173'
  634. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63'
  635. if temphunt = 6:gs 'boyStat', 'A62'
  636. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  637. '<<$textsexhunter6>>'
  638. lubonus += 1
  639. gs 'arousal', 'bj', 5, 'sub', 'group'
  640. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  641. minut -= 5
  642. gs 'stat'
  643. gs 'huntersex', 'rng_2'
  644. end
  645. if $ARGS[0] = 'doubleloveCowCum112_2':
  646. *clr & cla
  647. lubonus += 1
  648. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecowcum112_2.jpg"></center>'
  649. 'One of the guys lays on the ground and you mount him. The second puts his cock in your mouth...'
  650. gs 'cum_call', 'mouth', $boy, 1
  651. swallow += 1
  652. if temphunt <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  653. if temphunt = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  654. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  655. if temphunt = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  656. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  657. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  658. if temphunt = 2:gs 'boyStat', 'A173'
  659. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  660. if temphunt = 5:gs 'boyStat', 'A62'
  661. gs 'oral','start'
  662. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  663. gs 'dinsex', 'dinrandswallow'
  664. '<<$textsexhunter6>>'
  665. gs 'arousal', 'bj', 5, 'sub', 'group'
  666. gs 'arousal', 'anal', 5, 'sub', 'group'
  667. minut -= 5
  668. gs 'stat'
  669. gs 'huntersex', 'rng_3'
  670. end
  671. if $ARGS[0] = 'doubleloveCow212':
  672. *clr & cla
  673. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecow212.'+rand(1,2)+'.jpg"></center>'
  674. 'One of the guys lays on the ground and you mount him. The second puts his cock in your mouth...'
  675. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  676. if temphunt = 2:gs 'boyStat', 'A173'
  677. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  678. if temphunt = 5:gs 'boyStat', 'A62'
  679. gs 'oral','start'
  680. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  681. if temphunt <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  682. if temphunt = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  683. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  684. if temphunt = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  685. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  686. '<<$textsexhunter7>>'
  687. gs 'arousal', 'bj', 5, 'sub', 'group'
  688. gs 'arousal', 'anal', 5, 'sub', 'group'
  689. minut -= 5
  690. gs 'stat'
  691. huntsexa = rand(1,7)
  692. gs 'huntersex', 'rng_5'
  693. end
  694. if $ARGS[0] = 'doubleloveCowCum212_1':
  695. *clr & cla
  696. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecowcum212_1.jpg"></center>'
  697. 'One of the guys lays on the ground and you mount him. The second puts his cock in your mouth...'
  698. gs 'cum_call', 'anus', $boy, 1
  699. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  700. if temphunt = 2:gs 'boyStat', 'A173'
  701. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  702. if temphunt = 5:gs 'boyStat', 'A62'
  703. gs 'oral','start'
  704. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  705. if temphunt <= 2:gs 'boyStat', 'A172'
  706. if temphunt = 3:gs 'boyStat', 'A173'
  707. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  708. if temphunt = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  709. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  710. '<<$textsexhunter6>>'
  711. lubonus += 1
  712. gs 'arousal', 'bj', 5, 'sub', 'group'
  713. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  714. minut -= 5
  715. gs 'stat'
  716. gs 'huntersex', 'rng_2'
  717. end
  718. if $ARGS[0] = 'doubleloveCowCum212_2':
  719. *clr & cla
  720. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecowcum212_2.jpg"></center>'
  721. 'One of the guys lays on the ground and you mount him. The second puts his cock in your mouth...'
  722. gs 'cum_call', 'mouth', $boy, 1
  723. swallow += 1
  724. if temphunt <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  725. if temphunt = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  726. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  727. if temphunt = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  728. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  729. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  730. if temphunt = 2:gs 'boyStat', 'A173'
  731. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  732. if temphunt = 5:gs 'boyStat', 'A62'
  733. gs 'oral','start'
  734. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20 & boyBsexa -= 1
  735. gs 'dinsex', 'dinrandswallow'
  736. '<<$textsexhunter6>>'
  737. gs 'arousal', 'bj', 5, 'sub', 'group'
  738. gs 'arousal', 'anal', 5, 'sub', 'group'
  739. minut -= 5
  740. gs 'stat'
  741. gs 'huntersex', 'rng_3'
  742. end
  743. if $ARGS[0] = 'doubleloveSide2':
  744. *clr & cla
  745. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174' & boyBsexa += 1
  746. if temphunt = 2:gs 'boyStat', 'A173' & boyBsexa += 1
  747. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61' & boyBsexa += 1
  748. if temphunt = 5:gs 'boyStat', 'A62' & boyBsexa += 1
  749. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveside2.'+rand(1,2)+'.jpg"></center>'
  750. 'You lie on your side with a member in front of your face, and the other one penetrating you from behind...'
  751. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  752. '<<$textsexhunter4>>'
  753. gs 'arousal', 'bj', 5, 'sub', 'group'
  754. gs 'arousal', 'anal', 5, 'sub', 'group'
  755. minut -= 5
  756. gs 'stat'
  757. huntsexa = rand(1,2)
  758. if pcs_sleep >= 10 and huntsexa = 1:act 'Lie on your side':gt 'huntersex', 'doubleloveSideCum2'
  759. if pcs_sleep >= 10 and huntsexa = 2:act 'Suck':gt 'huntersex', 'doubleloveOral2'
  760. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  761. end
  762. if $ARGS[0] = 'doubleloveSideCum2':
  763. *clr & cla
  764. gs 'cum_call', 'anus', $boy, 1
  765. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  766. if temphunt = 2:gs 'boyStat', 'A173'
  767. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  768. if temphunt = 5:gs 'boyStat', 'A62'
  769. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovesidecum2.jpg"></center>'
  770. 'You lie on your side with a member in front of your face, and the other one penetrating you from behind...'
  771. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  772. '<<$textsexhunter3>>'
  773. lubonus = 0
  774. gs 'arousal', 'bj', 5, 'sub', 'group'
  775. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  776. minut -= 5
  777. gs 'stat'
  778. if forest_huntersex = 0:act 'Further':gt $loc, $metka
  779. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  780. end
  781. if $ARGS[0] = 'doubleloveCow1':
  782. *clr & cla
  783. if temphunt <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  784. if temphunt = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  785. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  786. if temphunt = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  787. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecow1.'+rand(1,2)+'.jpg"></center>'
  788. 'One of the guys lays on the ground and you mount him. The second puts his cock in your mouth...'
  789. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  790. '<<$textsexhunter3>>'
  791. gs 'arousal', 'bj', 5, 'sub', 'group'
  792. gs 'arousal', 'anal', 5, 'sub', 'group'
  793. minut -= 5
  794. gs 'stat'
  795. gs 'huntersex', 'rng_3'
  796. end
  797. if $ARGS[0] = 'doubleloveCowCum1':
  798. gs 'cum_call', 'anus', $boy, 1
  799. if temphunt <= 2:gs 'boyStat', 'A172'
  800. if temphunt = 3:gs 'boyStat', 'A173'
  801. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  802. if temphunt = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  803. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecowcum1.jpg"></center>'
  804. 'One of the guys lays on the ground and you mount him. The second puts his cock in your mouth...'
  805. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  806. '<<$textsexhunter4>>'
  807. lubonus = 0
  808. gs 'arousal', 'bj', 5, 'sub', 'group'
  809. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  810. minut -= 5
  811. gs 'stat'
  812. if forest_huntersex = 0:act 'Further':gt $loc, $metka
  813. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  814. end
  815. if $ARGS[0] = 'doubleloveOral1':
  816. *clr & cla
  817. if temphunt <= 2:gs 'boyStat', 'A172'
  818. if temphunt = 3:gs 'boyStat', 'A173'
  819. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  820. if temphunt = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  821. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoral1.'+rand(1,2)+'.jpg"></center>'
  822. 'You kneel in front of the boys, their cocks pointed right at your face...'
  823. gs 'oral','start'
  824. !if klismaday ! daystart and boyAsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  825. '<<$textsexhunter2>>'
  826. gs 'arousal', 'bj', 5, 'sub', 'group'
  827. gs 'stat'
  828. if pcs_sleep >= 10:act 'Suck on':gt 'huntersex', 'doubleloveOralCum1'
  829. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  830. end
  831. if $ARGS[0] = 'doubleloveOralCum1':
  832. *clr & cla
  833. gs 'cum_call', 'mouth', $boy, 1
  834. swallow += 1
  835. if temphunt <= 2:gs 'boyStat', 'A172'
  836. if temphunt = 3:gs 'boyStat', 'A173'
  837. if temphunt = 4 or temphunt = 5:gs 'boyStat', 'A63'
  838. if temphunt = 6:gs 'boyStat', 'A62'
  839. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoralcum1.jpg"></center>'
  840. 'You kneel in front of the boys, their cocks pointed right at your face...'
  841. gs 'oral','start'
  842. !if klismaday ! daystart and boyAsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  843. '<<$textsexhunter3>>'
  844. lubonus = 0
  845. gs 'arousal', 'bj', 5, 'sub', 'group'
  846. gs 'stat'
  847. if forest_huntersex = 0:act 'Further':gt $loc, $metka
  848. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  849. end
  850. if $ARGS[0] = 'doubleloveOral2':
  851. *clr & cla
  852. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  853. if temphunt = 2:gs 'boyStat', 'A173'
  854. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  855. if temphunt = 5:gs 'boyStat', 'A62'
  856. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoral2.'+rand(1,2)+'.jpg"></center>'
  857. 'You kneel in front of the boys, their cocks pointed right at your face...'
  858. gs 'oral','start'
  859. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  860. gs 'dinsex', 'dinrandswallow'
  861. '<<$textsexhunter2>>'
  862. gs 'arousal', 'bj', 5, 'sub', 'group'
  863. gs 'stat'
  864. if pcs_sleep >= 10:act 'Suck on':gt 'huntersex', 'doubleloveOralCum2'
  865. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  866. end
  867. if $ARGS[0] = 'doubleloveOralCum2':
  868. *clr & cla
  869. gs 'cum_call', 'mouth', $boy, 1
  870. swallow += 1
  871. if temphunt = 1 or temphunt = 3:gs 'boyStat', 'A174'
  872. if temphunt = 2:gs 'boyStat', 'A173'
  873. if temphunt = 4 or temphunt = 6:gs 'boyStat', 'A61'
  874. if temphunt = 5:gs 'boyStat', 'A62'
  875. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoralcum2.jpg"></center>'
  876. 'You kneel in front of the boys, their cocks pointed right at your face...'
  877. gs 'oral','start'
  878. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  879. gs 'dinsex', 'dinrandswallow'
  880. '<<$textsexhunter3>>'
  881. lubonus = 0
  882. gs 'arousal', 'bj', 5, 'sub', 'group'
  883. gs 'stat'
  884. if forest_huntersex = 0:act 'Further':gt $loc, $metka
  885. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  886. end
  887. if $ARGS[0] = 'doubleloveOralCum12':
  888. *clr & cla
  889. gs 'cum_call', 'mouth', $boy, 1
  890. swallow += 1
  891. gs 'cum_call', 'face', $boy, 1
  892. lubonus = 0
  893. if $clothingworntype = 'nude':gs 'cum_call', 'stomach', $boy, 1
  894. if ($clothingworntype ! 'nude' and $clothingworntype ! 'swimwear'):gs 'cum_call', 'clothesgroin', $boy, 1
  895. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoralcum12.'+rand(1,3)+'.jpg"></center>'
  896. 'You are on your knees in front of the boys with an open mouth.'
  897. 'Soon, a jet of sperm hits you in the mouth, then another, and another. The sperm fills your mouth and runs down your chin and onto your breasts.'
  898. 'The guys put their dicks back in their pants and go about their business, leaving you alone to freshen up.'
  899. gs 'arousal', 'bj', 5, 'sub', 'group'
  900. gs 'arousal', 'end'
  901. gs 'stat'
  902. if forest_huntersex = 0:act 'Further':gt $loc, $metka
  903. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  904. end
  905. ! Sex GG vs the guy in the hut
  906. if $ARGS[0] = 'sluthomeSTART':
  907. huntsexa = rand(1,3)
  908. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomestart.jpg"></center>'
  909. 'You crouched down and began to pull down the guy''s pants. When it was done, the he looks at you and says...'
  910. gs 'arousal', 'foreplay', 5, 'sub'
  911. gs 'stat'
  912. if huntsexa = 1:act 'Suck':gt 'huntersex', 'sluthomeORAL1'
  913. if huntsexa = 2:act 'Suck':gt 'huntersex', 'sluthomeOralCum1'
  914. if huntsexa = 3:act 'Panties':gt 'huntersex', 'sluthomeTanga'
  915. end &! --- sluthomeSTART ---
  916. if $ARGS[0] = 'sluthomeORAL1':
  917. *clr & cla
  918. lubonus += 1
  919. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoral1.'+rand(1,3)+'.jpg"></center>'
  920. 'You slowly put his dick in your mouth and begin to suck on it...'
  921. gs 'oral','start'
  922. '<<$textsexhunter2>>'
  923. gs 'arousal', 'bj', 5, 'sub'
  924. gs 'stat'
  925. huntsexa = rand(1,5)
  926. gs 'huntersex', 'rng_6'
  927. end
  928. if $ARGS[0] = 'sluthomeOralCum1':
  929. *clr & cla
  930. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoralcum1.jpg"></center>'
  931. 'Without warning, the guy begins to cum.'
  932. gs 'cum_call', 'mouth', $boy, 1
  933. swallow += 1
  934. gs 'oral','start'
  935. gs 'dinsex', 'dinrandswallow'
  936. '<<$textsexhunter3>>'
  937. gs 'arousal', 'bj', 5, 'sub', 'group'
  938. gs 'arousal', 'end'
  939. gs 'stat'
  940. act 'Further':gt'swamphouse'
  941. end &! --- sluthomeOralCum1 ---
  942. if $ARGS[0] = 'sluthomeORAL2':
  943. *clr & cla
  944. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoral2.'+rand(1,3)+'.jpg"></center>'
  945. 'You continue sucking on his dick...'
  946. gs 'oral','start'
  947. '<<$textsexhunter2>>'
  948. gs 'arousal', 'bj', 5, 'sub', 'group'
  949. gs 'stat'
  950. huntsexa = rand(2,5)
  951. gs 'huntersex', 'rng_6'
  952. end
  953. if $ARGS[0] = 'sluthomeOralCum2':
  954. *clr & cla
  955. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoralcum2.jpg"></center>'
  956. 'Without warning, the guy begins to cum.'
  957. gs 'cum_call', 'mouth', $boy, 1
  958. swallow += 1
  959. gs 'oral','start'
  960. gs 'dinsex', 'dinrandswallow'
  961. '<<$textsexhunter3>>'
  962. gs 'arousal', 'bj', 5, 'sub'
  963. gs 'arousal', 'end'
  964. gs 'stat'
  965. act 'Further':gt'swamphouse'
  966. end
  967. if $ARGS[0] = 'sluthomeORAL3':
  968. *clr & cla
  969. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoral3.'+rand(1,2)+'.jpg"></center>'
  970. '<<$boydesc>> pushes his whole weight against your head, forcing you to swallow more of his <<dick>> cm dick.'
  971. if dick > pcs_throat:'Immediately your gag reflex kicks in you feel tears forming in your eyes.'
  972. if dick < pcs_throat:'Fortunately your throat is well trained and you swallow the guy''s whole dick without any difficulties.'
  973. *pl
  974. gs 'arousal', 'bj', 5, 'sub', 'deepthroat'
  975. gs 'stat'
  976. huntsexa = rand(1,2)
  977. if huntsexa = 1:act 'Suck on':gt 'huntersex', 'sluthomeOralCum3'
  978. if huntsexa = 2:act 'Panties':gt 'huntersex', 'sluthomeTanga'
  979. end
  980. if $ARGS[0] = 'sluthomeOralCum3':
  981. *clr & cla
  982. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoralcum3.jpg"></center>'
  983. '<<$boydesc>> pushes his whole weight against your head, forcing you to swallow more of his <<dick>> cm dick.'
  984. gs 'cum_call', 'mouth', $boy, 1
  985. swallow += 1
  986. if dick > pcs_throat:'Immediately your gag reflex kicks in you feel tears forming in your eyes.'
  987. if dick < pcs_throat:'Fortunately your throat is well trained and you swallow the guy''s whole dick without any difficulties.'
  988. '<<$boydesc>> he began to move faster and you realized that he was already ready to cum...'
  989. gs 'dinsex', 'dinrandswallow'
  990. '<<$textsexhunter3>>'
  991. gs 'arousal', 'bj', 5, 'sub', 'rough', 'deepthroat'
  992. gs 'arousal', 'end'
  993. gs 'stat'
  994. act 'Further':gt'swamphouse'
  995. end
  996. if $ARGS[0] = 'sluthomeORAL4':
  997. *clr & cla
  998. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoral4.'+rand(1,3)+'.jpg"></center>'
  999. 'You continue sucking on his dick...'
  1000. gs 'oral','start'
  1001. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20 & pcs_mood -= 5
  1002. '<<$textsexhunter2>>'
  1003. gs 'arousal', 'bj', 5, 'sub'
  1004. gs 'stat'
  1005. huntsexa = rand(1,13)
  1006. gs 'huntersex', 'rng_7'
  1007. end
  1008. if $ARGS[0] = 'sluthomeOralCum4':
  1009. *clr & cla
  1010. gs 'cum_call', 'mouth', $boy, 1
  1011. gs 'cum_call', 'face', $boy, 1
  1012. swallow += 1
  1013. gs 'cum_call', 'stomach', $boy, 1
  1014. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoralcum4.'+rand(1,3)+'.jpg"></center>'
  1015. 'You are on your knees in front of the guy with your mouth open. <<$boydesc>> fiercely rubs his <<dick>> member in front of your face...'
  1016. 'Soon a jet of sperm hits you in the mouth, then a second and a third. The sperm fills your mouth and runs down your chin, dripping down onto your breasts and stomach. <<$boydesc>> has you clean his dick before putting it back in his pants and going about their business, leaving you alone to freshen up.'
  1017. '<<$textsexhunter3>>'
  1018. gs 'arousal', 'bj', 5, 'sub'
  1019. gs 'arousal', 'end'
  1020. gs 'stat'
  1021. act 'Further':gt'swamphouse'
  1022. end
  1023. if $ARGS[0] = 'sluthomeTanga':
  1024. *clr & cla
  1025. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthometanga.jpg"></center>'
  1026. '- <<$pcs_nickname>>, let''s take off your panties - said <<$boydesc>>. - Then the real fun can begin.'
  1027. 'You quickly sat down on the bed and pulled off your last piece of clothing. He did promise you some fun..'
  1028. gs 'underwear', 'remove'
  1029. gs 'arousal', 'foreplay', 5, 'sub'
  1030. gs 'stat'
  1031. huntsexa = rand(1,13)
  1032. gs 'huntersex', 'rng_7'
  1033. end
  1034. if $ARGS[0] = 'sluthomeAnalDog1':
  1035. *clr & cla
  1036. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanaldog1.'+rand(1,2)+'.jpg"></center>'
  1037. '<<$boydesc>> bends you over the couch and begins pound your ass...'
  1038. if boyAsexa = 0: boyAsexa = 1
  1039. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1040. '<<$textsexhunter4>>'
  1041. gs 'arousal', 'anal', 5, 'sub'
  1042. gs 'stat'
  1043. dirty_dickA += 1
  1044. huntsexa = rand(2,13)
  1045. gs 'huntersex', 'rng_7'
  1046. end
  1047. if $ARGS[0] = 'sluthomeAnalDogCum1':
  1048. *clr & cla
  1049. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeAnalDogСum1.jpg"></center>'
  1050. 'You feel his pace quicken and your are sure he is about to cum.'
  1051. gs 'cum_call', 'anus', $boy, 1
  1052. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1053. '<<$textsexhunter3>>'
  1054. gs 'arousal', 'anal', 5, 'sub'
  1055. gs 'arousal', 'end'
  1056. gs 'stat'
  1057. act 'Further':gt'swamphouse'
  1058. end
  1059. if $ARGS[0] = 'sluthomeAnalDog2':
  1060. *clr & cla
  1061. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanaldog2.'+rand(1,2)+'.jpg"></center>'
  1062. 'You bend over the couch as position yourself so <<$boydesc>> could go into your ass deeper...'
  1063. if boyAsexa = 0: boyAsexa = 1
  1064. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1065. '<<$textsexhunter4>>'
  1066. gs 'arousal', 'anal', 5, 'sub'
  1067. gs 'stat'
  1068. dirty_dickA += 1
  1069. huntsexa = rand(1,13)
  1070. gs 'huntersex', 'rng_7'
  1071. end
  1072. if $ARGS[0] = 'sluthomeAnalDogCum2':
  1073. *clr & cla
  1074. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeAnalDogСum2.jpg"></center>'
  1075. 'You feel his pace quicken and your are sure he is about to cum.'
  1076. gs 'cum_call', 'anus', $boy, 1
  1077. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1078. '<<$textsexhunter3>>'
  1079. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1080. gs 'arousal', 'end'
  1081. gs 'stat'
  1082. act 'Further': gt'swamphouse'
  1083. end
  1084. if $ARGS[0] = 'sluthomeAnalCow1':
  1085. *clr & cla
  1086. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalcow1.'+rand(1,3)+'.jpg"></center>'
  1087. '<<$boydesc>> he lies on his back, you climb on top of him...'
  1088. if boyAsexa = 0: boyAsexa = 1
  1089. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1090. '<<$textsexhunter4>>'
  1091. gs 'arousal', 'anal', 5, 'sub'
  1092. gs 'stat'
  1093. dirty_dickA += 1
  1094. huntsexa = rand(2,13)
  1095. gs 'huntersex', 'rng_7'
  1096. end
  1097. if $ARGS[0] = 'sluthomeAnalCowCum1':
  1098. *clr & cla
  1099. gs 'cum_call', 'anus', $boy, 1
  1100. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeAnalCowСum1.jpg"></center>'
  1101. 'You feel his pace quicken and your are sure he is about to cum.'
  1102. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1103. '<<$textsexhunter3>>'
  1104. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1105. gs 'arousal', 'end'
  1106. gs 'stat'
  1107. act 'Further':gt'swamphouse'
  1108. end
  1109. if $ARGS[0] = 'sluthomeAnalCow2':
  1110. *clr & cla
  1111. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalcow2.'+rand(1,2)+'.jpg"></center>'
  1112. '<<$boydesc>> he lies on his back, you climb on top of him...'
  1113. if boyAsexa = 0: boyAsexa = 1
  1114. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1115. '<<$textsexhunter4>>'
  1116. gs 'arousal', 'anal', 5, 'sub'
  1117. gs 'stat'
  1118. dirty_dickA += 1
  1119. huntsexa = rand(1,3)
  1120. if pcs_sleep >= 10 and huntsexa = 1:act 'Suck':gt 'huntersex', 'sluthomeORAL4'
  1121. if pcs_sleep >= 10 and huntsexa = 2:act 'Lie on your side':gt 'huntersex', 'sluthomeAnalSide1'
  1122. if pcs_sleep >= 10 and huntsexa = 3:act 'Lie on your side':gt 'huntersex', 'sluthomeAnalSideCum1'
  1123. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  1124. end
  1125. if $ARGS[0] = 'sluthomeAnalCowCum2':
  1126. *clr & cla
  1127. gs 'cum_call', 'anus', $boy, 1
  1128. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeAnalCowСum2.jpg"></center>'
  1129. 'You feel his pace quicken and your are sure he is about to cum.'
  1130. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1131. '<<$textsexhunter3>>'
  1132. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1133. gs 'stat'
  1134. act 'Further':gt'swamphouse'
  1135. end
  1136. if $ARGS[0] = 'sluthomeAnalSide1':
  1137. *clr & cla
  1138. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalside1.'+rand(1,2)+'.jpg"></center>'
  1139. '<<$boydesc>> puts you on the side, and begins to penetrate your ass.'
  1140. pose = 0
  1141. if boyAsexa = 0: boyAsexa = 1
  1142. dirty_dickA += 1
  1143. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1144. '<<$textsexhunter4>>'
  1145. gs 'arousal', 'anal', 5, 'sub'
  1146. gs 'stat'
  1147. huntsexa = rand(2,13)
  1148. gs 'huntersex', 'rng_7'
  1149. end
  1150. if $ARGS[0] = 'sluthomeAnalSideCum1':
  1151. *clr & cla
  1152. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeAnalSideСum1.jpg"></center>'
  1153. 'You feel his pace quicken and your are sure he is about to cum.'
  1154. gs 'cum_call', 'anus', $boy, 1
  1155. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1156. '<<$textsexhunter3>>'
  1157. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1158. gs 'arousal', 'end'
  1159. gs 'stat'
  1160. act 'Further':gt'swamphouse'
  1161. end
  1162. if $ARGS[0] = 'sluthomeAnalSide2':
  1163. *clr & cla
  1164. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalside2.'+rand(1,2)+'.jpg"></center>'
  1165. '<<$boydesc>> puts you on the side, and begins to penetrate your ass.'
  1166. pose = 0
  1167. if boyAsexa = 0:boyAsexa = 1
  1168. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1169. '<<$textsexhunter4>>'
  1170. gs 'arousal', 'anal', 5, 'sub'
  1171. gs 'stat'
  1172. dirty_dickA += 1
  1173. huntsexa = rand(1,2)
  1174. if pcs_sleep >= 10 and huntsexa = 1:act 'Suck':gt 'huntersex', 'sluthomeORAL4'
  1175. if pcs_sleep >= 10 and huntsexa = 2:act 'Kneel':gt 'huntersex', 'sluthomeOralCum4'
  1176. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  1177. end
  1178. if $ARGS[0] = 'sluthomeAnalSideCum2':
  1179. *clr & cla
  1180. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeAnalSideСum2.jpg"></center>'
  1181. 'You feel his pace quicken and your are sure he is about to cum.'
  1182. gs 'cum_call', 'anus', $boy, 1
  1183. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1184. '<<$textsexhunter3>>'
  1185. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1186. gs 'arousal', 'end'
  1187. gs 'stat'
  1188. act 'Further':gt'swamphouse'
  1189. end
  1190. if $ARGS[0] = 'huntersgrOasi':
  1191. *clr & cla
  1192. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoasi1.'+rand(1,3)+'.jpg"></center>'
  1193. 'You began to suck all the guys around you, alternating between each member.'
  1194. pose = 0
  1195. pcs_horny += rand(10,20)
  1196. gs 'boyStat', 'A172'
  1197. gs 'arousal', 'bj', 5, 'sub', 'deepthroat', 'gangbang'
  1198. gs 'boyStat', 'A174'
  1199. gs 'arousal', 'bj', 5, 'sub', 'deepthroat', 'gangbang'
  1200. gs 'boyStat', 'A173'
  1201. gs 'arousal', 'bj', 5, 'sub', 'deepthroat', 'gangbang'
  1202. minut -= 10
  1203. *pl
  1204. gs 'stat'
  1205. huntsexa = rand(1,10)
  1206. gs 'huntersex', 'rng_8'
  1207. end
  1208. if $ARGS[0] = 'huntersgrVaOsi':
  1209. *clr & cla
  1210. pose = 0
  1211. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvaosi1.'+rand(1,2)+'.jpg"></center>'
  1212. 'The guys put you on the bed, Andrei gets down between your legs, while Igor and Sergei put their members in front of your face...'
  1213. gs 'boyStat', 'A174'
  1214. gs 'oral','start'
  1215. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1216. gs 'boyStat', 'A173'
  1217. gs 'oral','start'
  1218. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1219. gs 'boyStat', 'A172'
  1220. if boyAsex = 0: boyAsex = 1
  1221. *pl
  1222. gs 'arousal', 'bj', 5, 'sub', 'group'
  1223. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1224. minut -= 5
  1225. gs 'stat'
  1226. huntsexa = rand(2,10)
  1227. gs 'huntersex', 'rng_8'
  1228. end
  1229. if $ARGS[0] = 'huntersgrVOsi':
  1230. *clr & cla
  1231. pose = 0
  1232. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvosi.jpg"></center>'
  1233. 'Andrei roughly fucks you for a while before deciding he has better things to do and unceremoniously cumming inside you...'
  1234. gs 'boyStat', 'A174'
  1235. gs 'oral','start'
  1236. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1237. gs 'boyStat', 'A173'
  1238. gs 'oral','start'
  1239. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1240. gs 'boyStat', 'A172'
  1241. if boyAsex = 0: boyAsex = 1
  1242. gs 'dinsex', 'boy_puts_condom'
  1243. gs 'dinsex','vaginal_sex',10
  1244. gs 'dinsex','sexcum'
  1245. 'Andrei gets up and walks away.'
  1246. gs 'arousal', 'bj', 5, 'sub', 'group'
  1247. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1248. minut -= 5
  1249. gs 'stat'
  1250. gs 'huntersex', 'rng_9'
  1251. end
  1252. if $ARGS[0] = 'huntersgrVaO':
  1253. *clr & cla
  1254. pose = 0
  1255. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvao.jpg"></center>'
  1256. 'Sergei and Igor enjoy being sucked by you for a while before deciding they have better things to do and unceremoniously cumming all over you...'
  1257. gs 'boyStat', 'A174'
  1258. gs 'oral','start'
  1259. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1260. gs 'boyStat', 'A173'
  1261. gs 'oral','start'
  1262. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1263. gs 'boyStat', 'A172'
  1264. if boyAsex = 0: boyAsex = 1
  1265. gs 'dinsex','vaginal_sex',10
  1266. gs 'boyStat', 'A174'
  1267. swallow += 1
  1268. gs 'cum_call', 'mouth', $boy, 1
  1269. gs 'dinsex', 'dinrandswallow'
  1270. gs 'boyStat', 'A173'
  1271. swallow += 1
  1272. gs 'cum_call', 'mouth', $boy, 1
  1273. gs 'dinsex', 'dinrandswallow'
  1274. 'Sergei and Igor get up and walk away.'
  1275. gs 'arousal', 'bj', 5, 'sub', 'group'
  1276. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1277. minut -= 5
  1278. gs 'stat'
  1279. gs 'huntersex', 'rng_12'
  1280. end
  1281. if $ARGS[0] = 'huntersgrVaOi':
  1282. *clr & cla
  1283. pose = 0
  1284. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvaoi.jpg"></center>'
  1285. 'Sergei enjoys being sucked by you for a while before deciding he has better things to do and unceremoniously cumming all over you...'
  1286. gs 'boyStat', 'A174'
  1287. gs 'oral','start'
  1288. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1289. gs 'boyStat', 'A173'
  1290. gs 'oral','start'
  1291. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1292. gs 'boyStat', 'A172'
  1293. if boyAsex = 0: boyAsex = 1
  1294. gs 'dinsex','vaginal_sex',10
  1295. gs 'boyStat', 'A174'
  1296. swallow += 1
  1297. gs 'cum_call', 'mouth', $boy, 1
  1298. gs 'dinsex', 'dinrandswallow'
  1299. 'Sergei gets up and walks away.'
  1300. gs 'arousal', 'bj', 5, 'sub', 'group'
  1301. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1302. minut -= 5
  1303. gs 'stat'
  1304. gs 'huntersex', 'rng_10'
  1305. end
  1306. if $ARGS[0] = 'huntersgrVsOai':
  1307. *clr & cla
  1308. pose = 0
  1309. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvsoai1.'+rand(1,3)+'.jpg"></center>'
  1310. 'The guys put you on the bed, Sergei gets down between your legs, while Igor and Andrei put their members in front of your face...'
  1311. gs 'boyStat', 'A172'
  1312. gs 'oral','start'
  1313. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1314. gs 'boyStat', 'A173'
  1315. gs 'oral','start'
  1316. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1317. gs 'boyStat', 'A174'
  1318. if boyBsex = 0: boyBsex = 1
  1319. gs 'dinsex','vaginal_sex',10
  1320. *pl
  1321. gs 'arousal', 'bj', 5, 'sub', 'group'
  1322. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1323. minut -= 5
  1324. gs 'stat'
  1325. huntsexa = rand(2,10)
  1326. gs 'huntersex', 'rng_8'
  1327. end
  1328. if $ARGS[0] = 'huntersgrVOai':
  1329. *clr & cla
  1330. pose = 0
  1331. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvoai.jpg"></center>'
  1332. 'Sergei roughly fucks you for a while before deciding he has better things to do and unceremoniously cumming inside you...'
  1333. gs 'boyStat', 'A172'
  1334. gs 'oral','start'
  1335. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1336. gs 'boyStat', 'A173'
  1337. gs 'oral','start'
  1338. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1339. gs 'boyStat', 'A174'
  1340. if boyBsex = 0: boyBsex = 1
  1341. gs 'dinsex', 'boy_puts_condom'
  1342. gs 'dinsex','vaginal_sex',10
  1343. gs 'dinsex','sexcum'
  1344. 'Sergei gets up and walks away.'
  1345. gs 'arousal', 'bj', 5, 'sub', 'group'
  1346. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1347. minut -= 5
  1348. gs 'stat'
  1349. gs 'huntersex', 'rng_10'
  1350. end
  1351. if $ARGS[0] = 'huntersgrVsOi':
  1352. *clr & cla
  1353. pose = 0
  1354. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvsoi.jpg"></center>'
  1355. 'Andrei enjoys being sucked by you for a while before deciding he has better things to do and unceremoniously cumming all over you...'
  1356. gs 'boyStat', 'A172'
  1357. gs 'oral','start'
  1358. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1359. gs 'boyStat', 'A173'
  1360. gs 'oral','start'
  1361. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1362. gs 'boyStat', 'A174'
  1363. if boyBsex = 0: boyBsex = 1
  1364. gs 'dinsex','vaginal_sex',10
  1365. gs 'boyStat', 'A172'
  1366. swallow += 1
  1367. gs 'cum_call', 'mouth', $boy, 1
  1368. gs 'dinsex', 'dinrandswallow'
  1369. 'Andrei gets up and walks away.'
  1370. gs 'arousal', 'bj', 5, 'sub', 'group'
  1371. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1372. minut -= 5
  1373. gs 'stat'
  1374. gs 'huntersex', 'rng_9'
  1375. end
  1376. if $ARGS[0] = 'huntersgrVsO':
  1377. *clr & cla
  1378. pose = 0
  1379. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvso.jpg"></center>'
  1380. 'Sergei and Igor enjoy being sucked by you for a while before deciding they have better things to do and unceremoniously cumming all over you...'
  1381. gs 'boyStat', 'A172'
  1382. gs 'oral','start'
  1383. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1384. gs 'boyStat', 'A173'
  1385. gs 'oral','start'
  1386. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1387. gs 'boyStat', 'A174'
  1388. if boyBsex = 0: boyBsex = 1
  1389. gs 'dinsex','vaginal_sex',10
  1390. gs 'boyStat', 'A172'
  1391. swallow += 1
  1392. gs 'cum_call', 'mouth', $boy, 1
  1393. gs 'dinsex', 'dinrandswallow'
  1394. gs 'boyStat', 'A173'
  1395. swallow += 1
  1396. gs 'cum_call', 'mouth', $boy, 1
  1397. gs 'dinsex', 'dinrandswallow'
  1398. 'Sergei and Igor had finished and walked away.'
  1399. gs 'arousal', 'bj', 5, 'sub', 'group'
  1400. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1401. minut -= 5
  1402. gs 'arousal', 'end'
  1403. gs 'stat'
  1404. if pcs_sleep >= 10:act 'Sit down':gt 'huntersex', 'huntersgr1As'
  1405. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  1406. end
  1407. if $ARGS[0] = 'huntersgrViOas':
  1408. *clr & cla
  1409. pose = 1
  1410. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvioas1.'+rand(1,4)+'.jpg"></center>'
  1411. 'You get down on all fours. Igor begins to penetrate you from behind, while Sergei and Andrei put their members in front of your face...'
  1412. gs 'boyStat', 'A172'
  1413. gs 'oral','start'
  1414. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1415. gs 'boyStat', 'A174'
  1416. gs 'oral','start'
  1417. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1418. gs 'boyStat', 'A173'
  1419. if boyCsex = 0: boyCsex = 1
  1420. gs 'dinsex','vaginal_sex',10
  1421. *pl
  1422. gs 'arousal', 'bj', 5, 'sub', 'group'
  1423. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1424. minut -= 5
  1425. gs 'stat'
  1426. huntsexa = rand(2,10)
  1427. gs 'huntersex', 'rng_8'
  1428. end
  1429. if $ARGS[0] = 'huntersgrViO':
  1430. *clr & cla
  1431. pose = 1
  1432. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvio.jpg"></center>'
  1433. 'Sergei and Andrei enjoy being sucked by you for a while before deciding they have better things to do and unceremoniously cumming all over you...'
  1434. gs 'boyStat', 'A172'
  1435. gs 'oral','start'
  1436. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1437. gs 'boyStat', 'A174'
  1438. gs 'oral','start'
  1439. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1440. gs 'boyStat', 'A173'
  1441. if boyCsex = 0: boyCsex = 1
  1442. gs 'dinsex','vaginal_sex',10
  1443. gs 'boyStat', 'A174'
  1444. swallow += 1
  1445. gs 'cum_call', 'mouth', $boy, 1
  1446. gs 'dinsex', 'dinrandswallow'
  1447. gs 'boyStat', 'A172'
  1448. swallow += 1
  1449. gs 'cum_call', 'mouth', $boy, 1
  1450. gs 'dinsex', 'dinrandswallow'
  1451. 'Andrei and Sergei get up and walk away.'
  1452. gs 'arousal', 'bj', 5, 'sub', 'group'
  1453. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1454. minut -= 5
  1455. gs 'arousal', 'end'
  1456. gs 'stat'
  1457. if pcs_sleep >= 10:act 'Lie on your back':gt 'huntersex', 'huntersgr1Ai'
  1458. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  1459. end
  1460. if $ARGS[0] = 'huntersgrVsOia':
  1461. *clr & cla
  1462. pose = 1
  1463. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvsoia1.'+rand(1,3)+'.jpg"></center>'
  1464. 'Sergei sat down on the bed, and pulled you on top of him, while Igor and Andrei put their dicks in front of your face...'
  1465. gs 'boyStat', 'A172'
  1466. gs 'oral','start'
  1467. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1468. gs 'boyStat', 'A173'
  1469. gs 'oral','start'
  1470. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1471. gs 'boyStat', 'A174'
  1472. if boyBsex = 0: boyBsex = 1
  1473. gs 'dinsex','vaginal_sex',10
  1474. *pl
  1475. gs 'arousal', 'bj', 5, 'sub', 'group'
  1476. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1477. minut -= 5
  1478. gs 'stat'
  1479. huntsexa = rand(2,10)
  1480. gs 'huntersex', 'rng_8'
  1481. end
  1482. if $ARGS[0] = 'huntersgrVsOi1':
  1483. *clr & cla
  1484. pose = 1
  1485. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvao.jpg"></center>'
  1486. 'Andrei enjoys being sucked by you for a while before deciding he has better things to do and unceremoniously cumming all over you...'
  1487. gs 'boyStat', 'A172'
  1488. gs 'oral','start'
  1489. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1490. gs 'boyStat', 'A173'
  1491. gs 'oral','start'
  1492. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1493. gs 'boyStat', 'A174'
  1494. if boyBsex = 0: boyBsex = 1
  1495. gs 'dinsex','vaginal_sex',10
  1496. gs 'boyStat', 'A172'
  1497. swallow += 1
  1498. gs 'cum_call', 'mouth', $boy, 1
  1499. gs 'dinsex', 'dinrandswallow'
  1500. 'Andrey gets up and walks away.'
  1501. gs 'arousal', 'bj', 5, 'sub', 'group'
  1502. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1503. minut -= 5
  1504. gs 'stat'
  1505. gs 'huntersex', 'rng_9'
  1506. end
  1507. if $ARGS[0] = 'huntersgrVaOis':
  1508. *clr & cla
  1509. pose = 1
  1510. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvaois1.'+rand(1,3)+'.jpg"></center>'
  1511. 'Andrei sat down on the bed, and pulled you on top of him, while Igor and Sergei put their dicks in front of your face...'
  1512. gs 'boyStat', 'A174'
  1513. gs 'oral','start'
  1514. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1515. gs 'boyStat', 'A173'
  1516. gs 'oral','start'
  1517. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1518. gs 'boyStat', 'A172'
  1519. if boyAsex = 0: boyAsex = 1
  1520. gs 'dinsex','vaginal_sex',10
  1521. *pl
  1522. gs 'arousal', 'bj', 5, 'sub', 'group'
  1523. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1524. minut -= 5
  1525. gs 'stat'
  1526. huntsexa = rand(2,10)
  1527. gs 'huntersex', 'rng_8'
  1528. end
  1529. if $ARGS[0] = 'huntersgrVaOs':
  1530. *clr & cla
  1531. pose = 1
  1532. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvaos.jpg"></center>'
  1533. 'Igor enjoys being sucked by you for a while before deciding he has better things to do and unceremoniously cumming all over you...'
  1534. gs 'boyStat', 'A174'
  1535. gs 'oral','start'
  1536. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1537. gs 'boyStat', 'A173'
  1538. gs 'oral','start'
  1539. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1540. gs 'boyStat', 'A172'
  1541. if boyAsex = 0: boyAsex = 1
  1542. gs 'dinsex','vaginal_sex',10
  1543. gs 'boyStat', 'A173'
  1544. swallow += 1
  1545. gs 'cum_call', 'mouth', $boy, 1
  1546. gs 'dinsex', 'dinrandswallow'
  1547. 'Igor gets up and walks away.'
  1548. gs 'arousal', 'bj', 5, 'sub', 'group'
  1549. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1550. minut -= 5
  1551. gs 'stat'
  1552. gs 'huntersex', 'rng_11'
  1553. end
  1554. if $ARGS[0] = 'huntersgrVO':
  1555. *clr & cla
  1556. pose = 1
  1557. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvo.jpg"></center>'
  1558. 'You begin to cum after the marathon of sex you have engaged in.'
  1559. 'Seeing you cum the guys around you quickly do as well.'
  1560. gs 'boyStat', 'A174'
  1561. gs 'oral','start'
  1562. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1563. gs 'boyStat', 'A173'
  1564. gs 'oral','start'
  1565. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1566. gs 'boyStat', 'A172'
  1567. if boyAsex = 0: boyAsex = 1
  1568. gs 'dinsex', 'boy_puts_condom'
  1569. gs 'dinsex','vaginal_sex',10
  1570. gs 'dinsex','sexcum'
  1571. gs 'boyStat', 'A173'
  1572. swallow += 1
  1573. gs 'cum_call', 'mouth', $boy, 1
  1574. gs 'dinsex', 'dinrandswallow'
  1575. gs 'boyStat', 'A174'
  1576. swallow += 1
  1577. gs 'cum_call', 'mouth', $boy, 1
  1578. gs 'dinsex', 'dinrandswallow'
  1579. 'Everyone is exhausted and immediately fell asleep.'
  1580. gs 'arousal', 'bj', 5, 'sub', 'group'
  1581. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1582. minut -= 5
  1583. gs 'arousal', 'end'
  1584. gs 'stat'
  1585. act 'Pass out': gt 'huntersex', 'huntersGrEnd'
  1586. end
  1587. if $ARGS[0] = 'huntersgrV2aOsi':
  1588. *clr & cla
  1589. pose = 1
  1590. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrv2aosi1.'+rand(1,3)+'.jpg"></center>'
  1591. 'Andrei put you on your side and began to get down between your legs, while Igor and Sergei stood in front of your face with their dicks waiting...'
  1592. gs 'boyStat', 'A174'
  1593. gs 'oral','start'
  1594. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1595. gs 'boyStat', 'A173'
  1596. gs 'oral','start'
  1597. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1598. gs 'boyStat', 'A172'
  1599. if boyAsex = 0: boyAsex = 1
  1600. gs 'dinsex','vaginal_sex',10
  1601. *pl
  1602. gs 'arousal', 'bj', 5, 'sub', 'group'
  1603. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1604. minut -= 5
  1605. gs 'stat'
  1606. huntsexa = rand(2,10)
  1607. gs 'huntersex', 'rng_8'
  1608. end
  1609. if $ARGS[0] = 'huntersgrV2aOs':
  1610. *clr & cla
  1611. pose = 1
  1612. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrv2aos.jpg"></center>'
  1613. 'Igor enjoys being sucked by you for a while before deciding he has better things to do and unceremoniously cumming all over you...'
  1614. gs 'boyStat', 'A174'
  1615. gs 'oral','start'
  1616. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1617. gs 'boyStat', 'A173'
  1618. gs 'oral','start'
  1619. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1620. gs 'boyStat', 'A172'
  1621. if boyAsex = 0: boyAsex = 1
  1622. gs 'dinsex','vaginal_sex',10
  1623. gs 'boyStat', 'A173'
  1624. gs 'dinsex', 'dinrandswallow'
  1625. 'Igor gets up and walks away.'
  1626. gs 'arousal', 'bj', 5, 'sub', 'group'
  1627. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1628. minut -= 5
  1629. gs 'stat'
  1630. gs 'huntersex', 'rng_11'
  1631. end
  1632. if $ARGS[0] = 'huntersgrDPVaAiOs':
  1633. *clr & cla
  1634. pose = 1
  1635. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrdpvaaios1.'+rand(1,2)+'.jpg"></center>'
  1636. 'Andrei lays down on the couch and pulls you on top of him, Igor straddles you and lines up to penetrate your second hole, while Sergei expects you to suck his dick too...'
  1637. gs 'boyStat', 'A174'
  1638. gs 'oral','start'
  1639. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1640. gs 'boyStat', 'A172','a'
  1641. gs 'boyStat', 'A173','b'
  1642. if boyAsex = 0: boyAsex = 1
  1643. if boyCsexa = 0: boyCsexa = 1
  1644. dirty_dickC += 1
  1645. gs 'dinSex','boy_wants_anal',$boydesc2,'lubri'
  1646. gs 'arousal','bj',10,'gangbang','deepthroat'
  1647. gs 'dinsex2','doublepenetration',10,'sub','gangbang'
  1648. minut -=10
  1649. *pl
  1650. gs 'stat'
  1651. huntsexa = rand(2,10)
  1652. gs 'huntersex', 'rng_8'
  1653. end
  1654. if $ARGS[0] = 'huntersgrDPVaAOs':
  1655. *clr & cla
  1656. pose = 1
  1657. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrdpvaaos.jpg"></center>'
  1658. 'After a while <<$boydesc2>> moaned and you felt like your ass fills with heat. He gets up and walks away.'
  1659. gs 'boyStat', 'A174'
  1660. gs 'oral','start'
  1661. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1662. gs 'boyStat', 'A172', 'a'
  1663. gs 'boyStat', 'A173', 'b'
  1664. if boyAsex = 0: boyAsex = 1
  1665. if boyCsexa = 0: boyCsexa = 1
  1666. gs 'dinSex','boy_wants_anal',$boydesc2,'lubri'
  1667. gs 'arousal','bj',10,'gangbang','deepthroat'
  1668. gs 'dinsex2','doublepenetration',10,'sub','gangbang'
  1669. gs 'cum_call', 'anus', $boy, 1
  1670. gs 'stat'
  1671. gs 'huntersex', 'rng_11'
  1672. end
  1673. if $ARGS[0] = 'huntersgrAiOsa':
  1674. *clr & cla
  1675. pose = 0
  1676. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgraiosa.jpg"></center>'
  1677. 'The guys put you on your back, Igor spreads your legs and puts the tip of his dick against your ass, while Andrei and Sergei over you and put their members in front of your face...'
  1678. gs 'boyStat', 'A174'
  1679. gs 'oral','start'
  1680. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1681. gs 'boyStat', 'A172'
  1682. gs 'oral','start'
  1683. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1684. gs 'boyStat', 'A173'
  1685. if boyCsexa = 0: boyCsexa = 1
  1686. dirty_dickC += 1
  1687. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1688. *pl
  1689. gs 'arousal', 'anal', 5, 'sub', 'group'
  1690. gs 'arousal', 'bj', 5, 'sub', 'group'
  1691. minut -= 5
  1692. gs 'stat'
  1693. huntsexa = rand(2,10)
  1694. gs 'huntersex', 'rng_8'
  1695. end
  1696. if $ARGS[0] = 'huntersgrAiO':
  1697. *clr & cla
  1698. pose = 0
  1699. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgraio.jpg"></center>'
  1700. 'Andrei and Sergei enjoy being sucked by you for a while before deciding they have better things to do and unceremoniously cumming all over you...'
  1701. gs 'boyStat', 'A174'
  1702. gs 'oral','start'
  1703. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1704. gs 'boyStat', 'A172'
  1705. gs 'oral','start'
  1706. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1707. gs 'boyStat', 'A173'
  1708. if boyCsexa = 0: boyCsexa = 1
  1709. dirty_dickC += 1
  1710. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1711. gs 'boyStat', 'A172'
  1712. swallow += 1
  1713. gs 'cum_call', 'mouth', $boy, 1
  1714. gs 'dinsex', 'dinrandswallow'
  1715. gs 'boyStat', 'A174'
  1716. swallow += 1
  1717. gs 'cum_call', 'mouth', $boy, 1
  1718. gs 'dinsex', 'dinrandswallow'
  1719. 'Andrei and Sergei get up and walk away.'
  1720. gs 'arousal', 'anal', 5, 'sub', 'group'
  1721. gs 'arousal', 'bj', 5, 'sub', 'group'
  1722. minut -= 5
  1723. gs 'stat'
  1724. if pcs_sleep >= 10:act 'Lie on your back':gt 'huntersex', 'huntersgr1Ai'
  1725. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  1726. end
  1727. if $ARGS[0] = 'huntersgrO3':
  1728. *clr & cla
  1729. minut += 1
  1730. pose = 0
  1731. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgro3.'+rand(1,4)+'.jpg"></center>'
  1732. 'The guys drag you to your kness and surround you. They began to masturbate in front of your face, sometimes inserting their member into your mouth, and you get ready for the cum about to cover you...'
  1733. act 'Wait patiently':
  1734. *clr & cla
  1735. minut += 1
  1736. pose = 0
  1737. gs 'cum_call', 'face', $boy, 1
  1738. gs 'cum_call', 'stomach', $boy, 1
  1739. gs 'cum_call', 'mouth', $boy, 1
  1740. swallow += 1
  1741. gs 'stat'
  1742. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgro3cum1.'+rand(1,6)+'.jpg"></center>'
  1743. 'Finally all the guys start to cum. Jets of sperm cover your face, hit you in the mouth and drip all over your body too...'
  1744. if huntersexnude = 0:act 'Pass out': gt 'huntersex', 'huntersGrEnd'
  1745. if huntersexnude = 1:act 'Further': huntersexnude = 0 & gt'swamphouse'
  1746. end
  1747. end
  1748. if $ARGS[0] = 'huntersgrAOsa':
  1749. *clr & cla
  1750. pose = 0
  1751. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgraosa.jpg"></center>'
  1752. 'Igor roughly fucks you for a while before deciding he has better things to do and unceremoniously cumming inside you...'
  1753. gs 'boyStat', 'A174'
  1754. gs 'oral','start'
  1755. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1756. gs 'boyStat', 'A172'
  1757. gs 'oral','start'
  1758. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1759. gs 'boyStat', 'A173'
  1760. if boyCsexa = 0: boyCsexa = 1
  1761. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1762. lubonus += 2
  1763. 'Igor gets up and walks away.'
  1764. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  1765. gs 'arousal', 'bj', 5, 'sub', 'group'
  1766. minut -= 5
  1767. gs 'stat'
  1768. gs 'huntersex', 'rng_11'
  1769. end
  1770. if $ARGS[0] = 'huntersgr2VaOi':
  1771. *clr & cla
  1772. pose = 0
  1773. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vaoi.jpg"></center>'
  1774. 'The guys put you on your back, Andrei spreads your legs and puts the tip of his dick against your pussy, while Igor puts his member in front of your face...'
  1775. gs 'boyStat', 'A173'
  1776. gs 'oral','start'
  1777. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1778. gs 'boyStat', 'A172'
  1779. if boyAsex = 0: boyAsex = 1
  1780. gs 'dinsex','vaginal_sex',10
  1781. *pl
  1782. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1783. gs 'arousal', 'bj', 5, 'sub', 'group'
  1784. minut -= 5
  1785. gs 'stat'
  1786. gs 'huntersex', 'rng_10'
  1787. end
  1788. if $ARGS[0] = 'huntersgr2VOi':
  1789. *clr & cla
  1790. pose = 0
  1791. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2voi.jpg"></center>'
  1792. 'Andrei roughly fucks you for a while before deciding he has better things to do and unceremoniously cumming inside you...'
  1793. gs 'boyStat', 'A173'
  1794. gs 'oral','start'
  1795. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1796. gs 'boyStat', 'A172'
  1797. if boyAsex = 0: boyAsex = 1
  1798. gs 'dinsex', 'boy_puts_condom'
  1799. gs 'dinsex','vaginal_sex',10
  1800. gs 'dinsex','sexcum'
  1801. 'Andrei gets up and walks away.'
  1802. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1803. gs 'arousal', 'bj', 5, 'sub', 'group'
  1804. minut -= 5
  1805. gs 'stat'
  1806. if pcs_sleep >= 10:act 'Lie on your back':gt 'huntersex', 'huntersgr1Ai'
  1807. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  1808. end
  1809. if $ARGS[0] = 'huntersgr2VO':
  1810. *clr & cla
  1811. pose = 0
  1812. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vo.jpg"></center>'
  1813. 'The guys climax at the same time and cover you in their cum.'
  1814. 'They get you to clean their dicks off before walking away and leaving you alone.'
  1815. gs 'boyStat', 'A173'
  1816. gs 'oral','start'
  1817. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1818. gs 'boyStat', 'A172'
  1819. if boyAsex = 0: boyAsex = 1
  1820. gs 'dinsex', 'boy_puts_condom'
  1821. gs 'dinsex','vaginal_sex',10
  1822. gs 'dinsex','sexcum'
  1823. gs 'boyStat', 'A173'
  1824. swallow += 1
  1825. gs 'cum_call', 'mouth', $boy, 1
  1826. gs 'dinsex', 'dinrandswallow'
  1827. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1828. gs 'arousal', 'bj', 5, 'sub', 'group'
  1829. minut -= 5
  1830. gs 'stat'
  1831. act 'Pass out': gt 'huntersex', 'huntersGrEnd'
  1832. end
  1833. if $ARGS[0] = 'huntersgr2ViOa':
  1834. *clr & cla
  1835. pose = 1
  1836. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vioa1.'+rand(1,2)+'.jpg"></center>'
  1837. 'The guys put you all fours, Igor spreads your legs and puts the tip of his dick against your pussy, while Andrei puts his member in front of your face...'
  1838. gs 'boyStat', 'A172'
  1839. gs 'oral','start'
  1840. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1841. gs 'boyStat', 'A173'
  1842. if boyCsex = 0: boyCsex = 1
  1843. gs 'dinsex','vaginal_sex',10
  1844. *pl
  1845. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1846. gs 'arousal', 'bj', 5, 'sub', 'group'
  1847. minut -= 5
  1848. gs 'stat'
  1849. gs 'huntersex', 'rng_10'
  1850. end
  1851. if $ARGS[0] = 'huntersgr2ViO':
  1852. *clr & cla
  1853. pose = 1
  1854. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vio.jpg"></center>'
  1855. 'Andrei enjoys being sucked by you for a while before deciding he has better things to do and unceremoniously cumming all over you...'
  1856. gs 'boyStat', 'A172'
  1857. gs 'oral','start'
  1858. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1859. gs 'boyStat', 'A173'
  1860. if boyCsex = 0: boyCsex = 1
  1861. gs 'dinsex','vaginal_sex',10
  1862. gs 'boyStat', 'A172'
  1863. swallow += 1
  1864. gs 'cum_call', 'mouth', $boy, 1
  1865. gs 'dinsex', 'dinrandswallow'
  1866. 'Andrei gets up and walks away.'
  1867. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1868. gs 'arousal', 'bj', 5, 'sub', 'group'
  1869. minut -= 5
  1870. gs 'stat'
  1871. if pcs_sleep >= 10:act 'Lie on your back':gt 'huntersex', 'huntersgr1Ai'
  1872. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  1873. end
  1874. if $ARGS[0] = 'huntersgr2VsO':
  1875. *clr & cla
  1876. pose = 1
  1877. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vso.jpg"></center>'
  1878. 'Igor enjoys being sucked by you for a while before deciding he has better things to do and unceremoniously cumming all over you...'
  1879. gs 'boyStat', 'A173'
  1880. gs 'oral','start'
  1881. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1882. gs 'boyStat', 'A174'
  1883. if boyBsex = 0: boyBsex = 1
  1884. gs 'dinsex','vaginal_sex',10
  1885. gs 'boyStat', 'A173'
  1886. swallow += 1
  1887. gs 'cum_call', 'mouth', $boy, 1
  1888. gs 'dinsex', 'dinrandswallow'
  1889. 'Igor gets up and walks away, but you continue with Sergei.'
  1890. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1891. gs 'arousal', 'bj', 5, 'sub', 'group'
  1892. minut -= 5
  1893. gs 'stat'
  1894. if pcs_sleep >= 10:act 'Sit down':gt 'huntersex', 'huntersgr1As'
  1895. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  1896. end
  1897. if $ARGS[0] = 'huntersgr2VaOs':
  1898. *clr & cla
  1899. pose = 1
  1900. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vaos.jpg"></center>'
  1901. 'Andrei put you on your side and began penetrate you from behind, while Sergei put his dick in your face...'
  1902. gs 'boyStat', 'A174'
  1903. gs 'oral','start'
  1904. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1905. gs 'boyStat', 'A172'
  1906. if boyAsex = 0: boyAsex = 1
  1907. gs 'dinsex','vaginal_sex',10
  1908. *pl
  1909. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1910. gs 'arousal', 'bj', 5, 'sub', 'group'
  1911. minut -= 5
  1912. gs 'stat'
  1913. gs 'huntersex', 'rng_11'
  1914. end
  1915. if $ARGS[0] = 'huntersgr2VaO':
  1916. *clr & cla
  1917. pose = 1
  1918. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vao.jpg"></center>'
  1919. 'Sergei enjoys being sucked by you for a while before deciding he has better things to do and unceremoniously cumming all over you...'
  1920. gs 'boyStat', 'A174'
  1921. gs 'oral','start'
  1922. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1923. gs 'boyStat', 'A172'
  1924. if boyAsex = 0: boyAsex = 1
  1925. gs 'dinsex','vaginal_sex',10
  1926. gs 'boyStat', 'A174'
  1927. swallow += 1
  1928. gs 'cum_call', 'face', $boy, 1
  1929. gs 'cum_call', 'mouth', $boy, 1
  1930. gs 'dinsex', 'dinrandswallow'
  1931. 'Sergei gets up and walks away, but you continue with Andrei.'
  1932. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  1933. gs 'arousal', 'bj', 5, 'sub', 'group'
  1934. minut -= 5
  1935. gs 'stat'
  1936. gs 'huntersex', 'rng_12'
  1937. end
  1938. if $ARGS[0] = 'huntersgr2AiOs':
  1939. *clr & cla
  1940. pose = 0
  1941. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2aios.jpg"></center>'
  1942. 'The guys put you on your back, with Igor in between your legs, and Sergei with his dick in front of your face...'
  1943. gs 'boyStat', 'A174'
  1944. gs 'oral','start'
  1945. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1946. gs 'boyStat', 'A173'
  1947. if boyCsexa = 0: boyCsexa = 1
  1948. dirty_dickC += 1
  1949. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1950. *pl
  1951. gs 'arousal', 'anal', 5, 'sub', 'group'
  1952. gs 'arousal', 'bj', 5, 'sub', 'group'
  1953. minut -= 5
  1954. gs 'stat'
  1955. gs 'huntersex', 'rng_9'
  1956. end
  1957. if $ARGS[0] = 'huntersgr2AOs':
  1958. *clr & cla
  1959. pose = 0
  1960. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2aos.jpg"></center>'
  1961. 'Igor roughly fucks you for a while before deciding he has better things to do and unceremoniously cumming inside you...'
  1962. gs 'boyStat', 'A174'
  1963. gs 'oral','start'
  1964. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1965. gs 'boyStat', 'A173'
  1966. if boyCsexa = 0: boyCsexa = 1
  1967. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1968. 'Igor had finished and passed out, you are left with Sergei.'
  1969. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  1970. gs 'arousal', 'bj', 5, 'sub', 'group'
  1971. minut -= 5
  1972. gs 'stat'
  1973. if pcs_sleep >= 10:act 'Sit down':gt 'huntersex', 'huntersgr1As'
  1974. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  1975. end
  1976. if $ARGS[0] = 'huntersgr2AiO':
  1977. *clr & cla
  1978. pose = 0
  1979. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2aio.jpg"></center>'
  1980. 'Sergei enjoys being sucked by you for a while before deciding he has better things to do and unceremoniously cumming all over you...'
  1981. gs 'boyStat', 'A174'
  1982. gs 'oral','start'
  1983. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1984. gs 'boyStat', 'A173'
  1985. if boyCsexa = 0: boyCsexa = 1
  1986. dirty_dickC += 1
  1987. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1988. gs 'boyStat', 'A174'
  1989. swallow += 1
  1990. gs 'cum_call', 'face', $boy, 1
  1991. gs 'cum_call', 'mouth', $boy, 1
  1992. gs 'dinsex', 'dinrandswallow'
  1993. 'Sergei gets up and walks away, but you continue with Igor.'
  1994. gs 'arousal', 'anal', 5, 'sub', 'group'
  1995. gs 'arousal', 'bj', 5, 'sub', 'group'
  1996. minut -= 5
  1997. gs 'stat'
  1998. if pcs_sleep >= 10:act 'Lie on your back':gt 'huntersex', 'huntersgr1Ai'
  1999. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2000. end
  2001. if $ARGS[0] = 'huntersgr2AOi':
  2002. *clr & cla
  2003. pose = 1
  2004. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2aoi.jpg"></center>'
  2005. 'Sergei enjoys being sucked by you for a while before deciding he has better things to do and unceremoniously cumming all over you...'
  2006. gs 'boyStat', 'A173'
  2007. gs 'oral','start'
  2008. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2009. gs 'boyStat', 'A174'
  2010. if boyBsexa = 0: boyBsexa = 1
  2011. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  2012. 'Sergei gets up and walks away, but you continue with Andrei and Igor.'
  2013. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  2014. gs 'arousal', 'bj', 5, 'sub', 'group'
  2015. minut -= 5
  2016. gs 'stat'
  2017. if pcs_sleep >= 10:act 'Lie on your back':gt 'huntersex', 'huntersgr1Ai'
  2018. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2019. end
  2020. if $ARGS[0] = 'huntersgr2AsO':
  2021. *clr & cla
  2022. pose = 1
  2023. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2aso.jpg"></center>'
  2024. 'Igor enjoys being sucked by you for a while before deciding he has better things to do and unceremoniously cumming all over you...'
  2025. gs 'boyStat', 'A173'
  2026. gs 'oral','start'
  2027. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2028. gs 'boyStat', 'A174'
  2029. if boyBsexa = 0: boyBsexa = 1
  2030. dirty_dickB += 1
  2031. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  2032. gs 'boyStat', 'A173'
  2033. swallow += 1
  2034. gs 'cum_call', 'mouth', $boy, 1
  2035. gs 'dinsex', 'dinrandswallow'
  2036. 'Igor gets up and walks away, but you continue with Andrei and Sergei.'
  2037. gs 'arousal', 'anal', 5, 'sub', 'group'
  2038. gs 'arousal', 'bj', 5, 'sub', 'group'
  2039. minut -= 5
  2040. gs 'stat'
  2041. if pcs_sleep >= 10:act 'Sit down':gt 'huntersex', 'huntersgr1As'
  2042. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2043. end
  2044. if $ARGS[0] = 'huntersgr2DPVaAs':
  2045. *clr & cla
  2046. pose = 1
  2047. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2dpvaas1.'+rand(1,3)+'.jpg"></center>'
  2048. 'Andrei lay on the couch, and pulled you on top of him, while Sergei immediately began to aim for you second hole...'
  2049. gs 'boyStat', 'A172', 'a'
  2050. gs 'boyStat', 'A174', 'b'
  2051. if boyAsex = 0: boyAsex = 1
  2052. if boyBsexa = 0: boyBsexa = 1
  2053. dirty_dickB += 1
  2054. gs 'dinSex','boy_wants_anal',$boydesc2,'lubri'
  2055. gs 'dinsex2','doublepenetration',10,'sub','gangbang'
  2056. *pl
  2057. gs 'stat'
  2058. gs 'huntersex', 'rng_11'
  2059. end
  2060. if $ARGS[0] = 'huntersgr2DPVaA':
  2061. pose = 1
  2062. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2dpvaa.jpg"></center>'
  2063. 'Sergei roughly fucks you for a while before deciding he has better things to do and unceremoniously cumming inside you...'
  2064. gs 'boyStat', 'A172','a'
  2065. gs 'boyStat', 'A174','b'
  2066. if boyAsex = 0: boyAsex = 1
  2067. if boyBsexa = 0: boyBsexa = 1
  2068. gs 'dinSex','boy_wants_anal',$boydesc2,'lubri'
  2069. gs 'dinsex2','doublepenetration',10,'sub','gangbang'
  2070. 'After a while <<$boydesc2>> moaned and you felt like your ass fills with heat. He finished and went outside, you stayed with Andrei'
  2071. gs 'cum_call', 'anus', $boy2, 1
  2072. gs 'stat'
  2073. gs 'huntersex', 'rng_12'
  2074. end
  2075. if $ARGS[0] = 'huntersgrO2':
  2076. *clr & cla
  2077. minut += 1
  2078. pose = 0
  2079. gs 'cum_call', 'face', $boy, 1
  2080. gs 'cum_call', 'mouth', $boy, 1
  2081. swallow += 2
  2082. body_write += 1
  2083. gs 'stat'
  2084. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgro2cum1.'+rand(1,2)+'.jpg"></center>'
  2085. 'Sergei and Igor put you on your back and begin to cum on you. A jet of sperm hit in your mouth and face and another hit your breasts and stomach. For fun, the guys wrote on your body to commemorate the event...'
  2086. act 'Pass out': gt 'huntersex', 'huntersGrEnd'
  2087. end
  2088. if $ARGS[0] = 'huntersgr1Va':
  2089. *clr & cla
  2090. pose = 1
  2091. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr1va.jpg"></center>'
  2092. 'Andrei quickened his pace and you feel him cum deep inside of you.'
  2093. 'Andrei gets up and walks away.'
  2094. gs 'boyStat', 'A172'
  2095. if boyAsex = 0: boyAsex = 1
  2096. gs 'arousal', 'vaginal', 5, 'sub'
  2097. gs 'stat'
  2098. act 'Pass out': gt 'huntersex', 'huntersGrEnd'
  2099. end
  2100. if $ARGS[0] = 'huntersgr1Ai':
  2101. *clr & cla
  2102. pose = 0
  2103. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr1ai.jpg"></center>'
  2104. 'Igor quickened his pace and you feel him cum deep inside of you.'
  2105. 'Andrei gets up and walks away.'
  2106. gs 'boyStat', 'A173'
  2107. if boyCsexa = 0: boyCsexa = 1
  2108. gs 'arousal', 'anal', 5, 'sub', 'rough'
  2109. gs 'stat'
  2110. act 'Pass out': gt 'huntersex', 'huntersGrEnd'
  2111. end
  2112. if $ARGS[0] = 'huntersgr1Aa':
  2113. *clr & cla
  2114. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr1aa.jpg"></center>'
  2115. 'Andrei quickened his pace and you feel him cum deep inside of you.'
  2116. 'Andrei gets up and walks away.'
  2117. gs 'boyStat', 'A172'
  2118. if boyAsexa = 0: boyAsexa = 1
  2119. gs 'arousal', 'anal', 5, 'sub', 'rough'
  2120. gs 'stat'
  2121. act 'Pass out': gt 'huntersex', 'huntersGrEnd'
  2122. end
  2123. if $ARGS[0] = 'huntersgr1As':
  2124. *clr & cla
  2125. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr1as.jpg"></center>'
  2126. 'Sergei quickened his pace and you feel him cum deep inside of you.'
  2127. 'Sergei gets up and walks away.'
  2128. gs 'boyStat', 'A174'
  2129. npc_sex[$boy] += 1
  2130. gs 'arousal', 'anal', 5, 'sub', 'rough'
  2131. gs 'stat'
  2132. act 'Pass out': gt 'huntersex', 'huntersGrEnd'
  2133. end
  2134. if $ARGS[0] = 'huntersgrO1':
  2135. *clr & cla
  2136. minut += 1
  2137. gs 'cum_call', 'face', $boy, 1,'','',20
  2138. gs 'cum_call', 'mouth', $boy, 1,'','',20
  2139. swallow += 1
  2140. body_write += 1
  2141. gs 'stat'
  2142. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgro1cum.jpg"></center>'
  2143. 'Andrei put you on your back and then shot his cum all over you. Jets of sperm hit in your mouth, and on your face and hair.'
  2144. act 'Pass out': gt 'huntersex', 'huntersGrEnd'
  2145. end
  2146. if $ARGS[0] = 'huntersGrEnd':
  2147. *clr & cla
  2148. minut += 1
  2149. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/dancesexson.jpg"></center>'
  2150. 'As soon as the guys moved away from you, you instantly passed out from exhaustion...'
  2151. act 'Wake up':
  2152. *clr & cla
  2153. minut += 600
  2154. pcs_sleep += 60
  2155. pcs_health += 50
  2156. pcs_mood += 50
  2157. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/drunk_ev/pohmel1.jpg"></center>'
  2158. 'You don''t know how long you slept for, but you have a terrible headache and you vaguely remembered what happened yesterday.'
  2159. gs 'arousal', 'end'
  2160. gs 'stat'
  2161. act 'Further': gt'SwampHouse'
  2162. end
  2163. end
  2164. if $ARGS[0] = 'rng_1':
  2165. huntsexa = rand(1,6)
  2166. if pcs_sleep >= 10 and huntsexa = 1:act 'Kneel':gt 'huntersex', 'doubleloveOralCum12'
  2167. if pcs_sleep >= 10 and huntsexa = 2:act 'Doggy':gt 'huntersex', 'doubleloveDog112'
  2168. if pcs_sleep >= 10 and huntsexa = 3:act 'Doggy':gt 'huntersex', 'doubleloveDog212'
  2169. if pcs_sleep >= 10 and huntsexa = 4:act 'Lie on your side':gt 'huntersex', 'doubleloveSide12'
  2170. if pcs_sleep >= 10 and huntsexa = 5:act 'Sit down':gt 'huntersex', 'doubleloveCow112'
  2171. if pcs_sleep >= 10 and huntsexa = 6:act 'Sit down':gt 'huntersex', 'doubleloveCow212'
  2172. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2173. end
  2174. if $ARGS[0] = 'rng_2':
  2175. huntsexa = rand(1,2)
  2176. if pcs_sleep >= 10 and huntsexa = 1:act 'Lie on your side':gt 'huntersex', 'doubleloveSide2'
  2177. if pcs_sleep >= 10 and huntsexa = 2:act 'Suck':gt 'huntersex', 'doubleloveOral2'
  2178. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2179. end
  2180. if $ARGS[0] = 'rng_3':
  2181. huntsexa = rand(1,2)
  2182. if pcs_sleep >= 10 and huntsexa = 1:act 'Sit down':gt 'huntersex', 'doubleloveCow1'
  2183. if pcs_sleep >= 10 and huntsexa = 2:act 'Suck':gt 'huntersex', 'doubleloveOral1'
  2184. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2185. end
  2186. if $ARGS[0] = 'rng_4':
  2187. huntsexa = rand(1,7)
  2188. if pcs_sleep >= 10 and huntsexa = 1:act 'Kneel':gt 'huntersex', 'doubleloveOralCum12'
  2189. if pcs_sleep >= 10 and huntsexa = 2:act 'Doggy':gt 'huntersex', 'doubleloveDogCum112_1'
  2190. if pcs_sleep >= 10 and huntsexa = 3:act 'Doggy':gt 'huntersex', 'doubleloveDogCum112_2'
  2191. if pcs_sleep >= 10 and huntsexa = 4:act 'Doggy':gt 'huntersex', 'doubleloveDog212'
  2192. if pcs_sleep >= 10 and huntsexa = 5:act 'Lie on your side':gt 'huntersex', 'doubleloveSide12'
  2193. if pcs_sleep >= 10 and huntsexa = 6:act 'Sit down':gt 'huntersex', 'doubleloveCow112'
  2194. if pcs_sleep >= 10 and huntsexa = 7:act 'Sit down':gt 'huntersex', 'doubleloveCow212'
  2195. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2196. end
  2197. if $ARGS[0] = 'rng_5':
  2198. if pcs_sleep >= 10 and huntsexa = 1:act 'Kneel':gt 'huntersex', 'doubleloveOralCum12'
  2199. if pcs_sleep >= 10 and huntsexa = 2:act 'Doggy':gt 'huntersex', 'doubleloveDog112'
  2200. if pcs_sleep >= 10 and huntsexa = 3:act 'Doggy':gt 'huntersex', 'doubleloveDog212'
  2201. if pcs_sleep >= 10 and huntsexa = 4:act 'Lie on your side':gt 'huntersex', 'doubleloveSide12'
  2202. if pcs_sleep >= 10 and huntsexa = 5:act 'Sit down':gt 'huntersex', 'doubleloveCowCum112_1'
  2203. if pcs_sleep >= 10 and huntsexa = 6:act 'Sit down':gt 'huntersex', 'doubleloveCowCum112_2'
  2204. if pcs_sleep >= 10 and huntsexa = 7:act 'Sit down':gt 'huntersex', 'doubleloveCow212'
  2205. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2206. end
  2207. if $ARGS[0] = 'rng_6':
  2208. if huntsexa = 1:act 'Suck on':gt 'huntersex', 'sluthomeORAL2'
  2209. if huntsexa = 2:act 'Suck on':gt 'huntersex', 'sluthomeOralCum2'
  2210. if huntsexa = 3:act 'Suck on':gt 'huntersex', 'sluthomeORAL3'
  2211. if huntsexa = 4:act 'Suck on':gt 'huntersex', 'sluthomeOralCum3'
  2212. if huntsexa = 5:act 'Panties':gt 'huntersex', 'sluthomeTanga'
  2213. end
  2214. if $ARGS[0] = 'rng_7':
  2215. if pcs_sleep >= 10 and huntsexa = 1:act 'Suck on':gt 'huntersex', 'sluthomeOralCum4'
  2216. if pcs_sleep >= 10 and huntsexa = 2:act 'Doggy':gt 'huntersex', 'sluthomeAnalDog1'
  2217. if pcs_sleep >= 10 and huntsexa = 3:act 'Doggy':gt 'huntersex', 'sluthomeAnalDogCum1'
  2218. if pcs_sleep >= 10 and huntsexa = 4:act 'Doggy':gt 'huntersex', 'sluthomeAnalDog2'
  2219. if pcs_sleep >= 10 and huntsexa = 5:act 'Doggy':gt 'huntersex', 'sluthomeAnalDogCum2'
  2220. if pcs_sleep >= 10 and huntsexa = 6:act 'Sit down':gt 'huntersex', 'sluthomeAnalCow1'
  2221. if pcs_sleep >= 10 and huntsexa = 7:act 'Sit down':gt 'huntersex', 'sluthomeAnalCowCum1'
  2222. if pcs_sleep >= 10 and huntsexa = 8:act 'Sit down':gt 'huntersex', 'sluthomeAnalCow2'
  2223. if pcs_sleep >= 10 and huntsexa = 9:act 'Sit down':gt 'huntersex', 'sluthomeAnalCowCum2'
  2224. if pcs_sleep >= 10 and huntsexa = 10:act 'Lie on your side':gt 'huntersex', 'sluthomeAnalSide1'
  2225. if pcs_sleep >= 10 and huntsexa = 11:act 'Lie on your side':gt 'huntersex', 'sluthomeAnalSideCum1'
  2226. if pcs_sleep >= 10 and huntsexa = 12:act 'Lie on your side':gt 'huntersex', 'sluthomeAnalSide2'
  2227. if pcs_sleep >= 10 and huntsexa = 13:act 'Lie on your side':gt 'huntersex', 'sluthomeAnalSideCum2'
  2228. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2229. end
  2230. if $ARGS[0] = 'rng_8':
  2231. huntsexb = rand(1,8)
  2232. if pcs_sleep >= 10 and huntsexa = 1:act 'Suck on':gt 'huntersex', 'huntersgrOasi'
  2233. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 5:act 'Lie on your back':gt 'huntersex', 'huntersgrVaOsi'
  2234. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb < 4:act 'Lie on your back':gt 'huntersex', 'huntersgrVOsi'
  2235. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 4:act 'Lie on your back':gt 'huntersex', 'huntersgrVaO'
  2236. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 5:act 'Lie on your back':gt 'huntersex', 'huntersgrVaOi'
  2237. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb > 5:act 'Lie on your back':gt 'huntersex', 'huntersgrVsOai'
  2238. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb = 5:act 'Lie on your back':gt 'huntersex', 'huntersgrVsO'
  2239. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb < 4:act 'Lie on your back':gt 'huntersex', 'huntersgrVOai'
  2240. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb = 4:act 'Lie on your back':gt 'huntersex', 'huntersgrVsOi'
  2241. if pcs_sleep >= 10 and huntsexa = 4 and huntsexb <= 5:act 'Get on all fours':gt 'huntersex', 'huntersgrViOas'
  2242. if pcs_sleep >= 10 and huntsexa = 4 and huntsexb > 5:act 'Get on all fours':gt 'huntersex', 'huntersgrViO'
  2243. if pcs_sleep >= 10 and huntsexa = 5 and huntsexb = 5:act 'Sit down':gt 'huntersex', 'huntersgrVsOia'
  2244. if pcs_sleep >= 10 and huntsexa = 5 and huntsexb > 5:act 'Sit down':gt 'huntersex', 'huntersgrVsOi1'
  2245. if pcs_sleep >= 10 and huntsexa = 5 and huntsexb < 5:act 'Sit down':gt 'huntersex', 'huntersgrVaOis'
  2246. if pcs_sleep >= 10 and huntsexa = 6 and huntsexb <= 5:act 'Sit down':gt 'huntersex', 'huntersgrVO'
  2247. if pcs_sleep >= 10 and huntsexa = 6 and huntsexb > 5:act 'Sit down':gt 'huntersex', 'huntersgrVaOs'
  2248. if pcs_sleep >= 10 and huntsexa = 7 and huntsexb <= 5:act 'Lie on your side':gt 'huntersex', 'huntersgrV2aOsi'
  2249. if pcs_sleep >= 10 and huntsexa = 7 and huntsexb > 5:act 'Lie on your side':gt 'huntersex', 'huntersgrV2aOs'
  2250. if pcs_sleep >= 10 and huntsexa = 8 and huntsexb <= 4:act 'Sit down':gt 'huntersex', 'huntersgrDPVaAiOs'
  2251. if pcs_sleep >= 10 and huntsexa = 8 and huntsexb > 4:act 'Sit down':gt 'huntersex', 'huntersgrDPVaAOs'
  2252. if pcs_sleep >= 10 and huntsexa = 9 and huntsexb > 5:act 'Lie on your back':gt 'huntersex', 'huntersgrAiOsa'
  2253. if pcs_sleep >= 10 and huntsexa = 9 and huntsexb = 5:act 'Lie on your back':gt 'huntersex', 'huntersgrAiO'
  2254. if pcs_sleep >= 10 and huntsexa = 9 and huntsexb < 5:act 'Lie on your back':gt 'huntersex', 'huntersgrAOsa'
  2255. if pcs_sleep >= 10 and huntsexa = 10:act 'Lie on your back':gt 'huntersex', 'huntersgrO3'
  2256. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2257. end
  2258. if $ARGS[0] = 'rng_9':
  2259. huntsexa = rand(1,3)
  2260. huntsexb = rand(1,8)
  2261. if pcs_sleep >= 10 and huntsexa = 1:act 'Sit down':gt 'huntersex', 'huntersgr2VsO'
  2262. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 5:act 'Lie on your back':gt 'huntersex', 'huntersgr2AiOs'
  2263. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 5:act 'Lie on your back':gt 'huntersex', 'huntersgr2AiO'
  2264. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb < 5:act 'Lie on your back':gt 'huntersex', 'huntersgr2AOs'
  2265. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb <= 5:act 'Sit down':gt 'huntersex', 'huntersgr2AOi'
  2266. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb > 5:act 'Sit down':gt 'huntersex', 'huntersgr2AsO'
  2267. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2268. end
  2269. if $ARGS[0] = 'rng_10':
  2270. huntsexa = rand(1,3)
  2271. huntsexb = rand(1,8)
  2272. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb > 5:act 'Lie on your back':gt 'huntersex', 'huntersgr2VaOi'
  2273. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb = 5:act 'Lie on your back':gt 'huntersex', 'huntersgr2VO'
  2274. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb < 5:act 'Lie on your back':gt 'huntersex', 'huntersgr2VOi'
  2275. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb <= 4:act 'Get on all fours':gt 'huntersex', 'huntersgr2ViOa'
  2276. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 4:act 'Get on all fours':gt 'huntersex', 'huntersgr2ViO'
  2277. if pcs_sleep >= 10 and huntsexa = 3:act 'Lie on your back':gt 'huntersex', 'huntersgrO2'
  2278. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2279. end
  2280. if $ARGS[0] = 'rng_11':
  2281. huntsexa = rand(1,2)
  2282. huntsexb = rand(1,8)
  2283. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb > 4:act 'Lie on your side':gt 'huntersex', 'huntersgr2VaOs'
  2284. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb <= 4:act 'Lie on your side':gt 'huntersex', 'huntersgr2VaO'
  2285. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 5:act 'Sit down':gt 'huntersex', 'huntersgr2DPVaAs'
  2286. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb <= 5:act 'Sit down':gt 'huntersex', 'huntersgr2DPVaA'
  2287. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2288. end
  2289. if $ARGS[0] = 'rng_12':
  2290. huntsexa = rand(1,3)
  2291. if pcs_sleep >= 10 and huntsexa = 1:act 'Sit down':gt 'huntersex', 'huntersgr1Va'
  2292. if pcs_sleep >= 10 and huntsexa = 2:act 'Lie on your back':gt 'huntersex', 'huntersgrO1'
  2293. if pcs_sleep >= 10 and huntsexa = 3:act 'Sit down':gt 'huntersex', 'huntersgr1Aa'
  2294. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2295. end
  2296. --- huntersex ---------------------------------