huntersex.qsrc 97 KB

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