hantersex.qsrc 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237
  1. # hantersex
  2. if $ARGS[0] = 'sexafterstrip1':
  3. !$textsexhanter = '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.'
  4. !sex after of Striptease if she`s not a whore
  5. gs 'boyStat', 'A172','1' &! Andrei
  6. gs 'boyStat', 'A173','2' &! Igor
  7. gs 'boyStat', 'A174','3' &! Sergey
  8. gang +=1
  9. npc_sex[$boy[1]] += 1
  10. npc_sex[$boy[2]] += 1
  11. npc_sex[$boy[3]] += 1
  12. minut += 5
  13. gs 'shortgs','smoker'
  14. pcs_mood = 100
  15. pcs_willpwr += 100
  16. pcs_dom -= 1
  17. dirty_dickA = 0
  18. dirty_dickB = 0
  19. dirty_dickC = 0
  20. boyAsex = 0
  21. boyBsex = 0
  22. boyCsex = 0
  23. boyAsexa = 0
  24. boyBsexa = 0
  25. boyCsexa = 0
  26. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dance5.jpg"></center>'
  27. 'You tiredly sat down on the edge of the table to rest and have a smoke.During the dance you are drawn to guys attention,but when you are approached by Igor, you understand that they are also completely naked.'
  28. '-<<$pcs_nickname>>, we demand to continue the feast, " he said, smiling and pointing to his dick.'
  29. gs 'stat'
  30. act 'Further':
  31. *clr & cla
  32. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi.jpg"></center>'
  33. 'The alcohol dulled your sense of shame and you no doubt took cock in hand and brought it to her mouth...'
  34. act 'Suck':
  35. *clr & cla
  36. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi1.jpg"></center>'
  37. 'You began to suck...'
  38. 'Suddenly Igor is not giving you come to your senses, put your dick in your throat the entire length, already tears from eyes brignoli...'
  39. gs 'arousal', 'bj',5, 'dick[2]', 'sub', 'deepthroat'
  40. gs 'stat'
  41. act 'Suck on':
  42. *clr & cla
  43. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi2.jpg"></center>'
  44. 'Igor continue to batter your mouth, and Andrew with Sergey inteream watched and even helped him, crushing sometime you on your head...'
  45. gs 'arousal', 'bj', 5, 'dick[2]', 'sub', 'deepthroat'
  46. gs 'stat'
  47. act 'Suck on':
  48. *clr & cla
  49. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoasi1.'+rand(1,3)+'.jpg"></center>'
  50. 'Andrei and Sergei also decided to take part and offered you my members. You began to suck around you guys, alternately paying attention to each member.'
  51. gs 'arousal', 'bj', 5,'dick[1]', 'sub', 'gangbang'
  52. gs 'arousal', 'bj', 5,'dick[3]', 'sub', 'gangbang'
  53. gs 'stat'
  54. act 'Lie on your back':
  55. *clr & cla
  56. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvaosi1.'+rand(1,2)+'.jpg"></center>'
  57. 'Guys put you on the bed, Andrew started to settle down between his legs, and Igor and Sergei began over you to put their members in front of your face...'
  58. gs 'arousal', 'bj', 5, 'dick[2]', 'sub', 'gangbang'
  59. gs 'arousal', 'bj', 5, 'dick[3]', 'sub', 'gangbang'
  60. gs 'arousal', 'vaginal', 10, 'dick[1]', 'sub', 'gangbang'
  61. minut -= 10
  62. gs 'stat'
  63. act 'Lie on your back':
  64. *clr & cla
  65. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvsoai1.'+rand(1,4)+'.jpg"></center>'
  66. 'Guys put you on the bed. Sergei began to settle between his legs, and Igor and Andrey have become over you to put their members in front of your face...'
  67. gs 'arousal', 'bj', 5, 'dick[1]', 'sub', 'gangbang'
  68. gs 'arousal', 'bj', 5, 'dick[2]', 'sub', 'gangbang'
  69. gs 'arousal', 'vaginal', 10, 'dick[3]', 'sub', 'gangbang'
  70. minut -= 10
  71. gs 'stat'
  72. act 'Lie on your side':
  73. *clr & cla
  74. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrv2aosi1.'+rand(1,3)+'.jpg"></center>'
  75. 'Andrew put you to the side and began to settle between his legs, and Igor and Sergei stood before you to put their Dicks in the face...'
  76. gs 'arousal', 'bj', 5, 'dick[3]', 'sub', 'gangbang'
  77. gs 'arousal', 'bj', 5, 'dick[2]', 'sub', 'gangbang'
  78. gs 'arousal', 'vaginal', 10, 'dick[1]', 'sub', 'gangbang'
  79. minut -= 10
  80. gs 'stat'
  81. act 'Be on all fours':
  82. *clr & cla
  83. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvioas1.'+rand(1,4)+'.jpg"></center>'
  84. 'You put on all fours. Igor began to be attached behind, and Sergey and Andrew steel in front of you putting their Dicks in your face...'
  85. gs 'arousal', 'bj', 5, 'dick[3]', 'sub', 'gangbang'
  86. gs 'arousal', 'bj', 5, 'dick[1]', 'sub', 'gangbang'
  87. gs 'arousal', 'vaginal', 10, 'dick[2]', 'sub', 'gangbang'
  88. minut -= 10
  89. gs 'stat'
  90. act 'Sit down':
  91. *clr & cla
  92. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvsoia1.'+rand(1,3)+'.jpg"></center>'
  93. 'Sergei sat on the bed, pulling you with him, and Igor and Andrew steel in front of you putting their Dicks in your face...'
  94. gs 'arousal', 'bj', 5, 'dick[2]', 'sub', 'gangbang'
  95. gs 'arousal', 'bj', 5, 'dick[1]', 'sub', 'gangbang'
  96. gs 'arousal', 'vaginal', 10, 'dick[3]', 'sub', 'gangbang'
  97. minut -= 10
  98. gs 'stat'
  99. act 'Sit down':
  100. *clr & cla
  101. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvaois1.'+rand(1,3)+'.jpg"></center>'
  102. 'Andrew sat on the couch, pulling you with him, and Igor and Sergei perched next to you and putting their cocks in front of your face...'
  103. gs 'arousal', 'bj', 5, 'dick[2]','sub', 'gangbang'
  104. gs 'arousal', 'bj', 5, 'dick[3]','sub', 'gangbang'
  105. gs 'arousal', 'vaginal', 10, 'dick[1]','sub', 'gangbang'
  106. minut -= 10
  107. gs 'stat'
  108. act 'Further':
  109. *clr & cla
  110. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi3.jpg"></center>'
  111. 'You sucked Igor, when I felt like someone`s finger begins to penetrate your ass...'
  112. '- The Pope is seen today also get, " you thought.'
  113. gs 'arousal', 'bj', 5, 'dick[2]','sub', 'gangbang'
  114. gs 'arousal', 'anal_finger', 2, 'sub', 'gangbang'
  115. minut -= 2
  116. gs 'stat'
  117. act 'Further':
  118. *clr & cla
  119. pcs_mood += 25
  120. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi4.jpg"></center>'
  121. 'Andrew greased your ass with vaseline...'
  122. '- Well, even so, not dry, " you thought with relief.'
  123. lubri +=1
  124. gs 'arousal', 'anal_finger', 5,'lube', 'gangbang'
  125. gs 'stat'
  126. act 'Sit down':
  127. *clr & cla
  128. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrdpvaaios1.'+rand(1,2)+'.jpg"></center>'
  129. 'Andrew lay on the ground, pulling you with him, Igor began to be attached to your second hole, you just have to relax and suck the dick of Sergei...'
  130. gs 'arousal', 'bj', 5, 'dick[3]', 'sub', 'gangbang'
  131. gs 'arousal', 'anal', 5, 'dick[2]', 'sub', 'gangbang'
  132. gs 'arousal', 'vaginal', 10, 'dick[1]', 'sub', 'gangbang'
  133. minut -= 10
  134. gs 'stat'
  135. act 'Lie on your back':
  136. *clr & cla
  137. minut += 1
  138. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi5.jpg"></center>'
  139. 'Guys put you on your back, and themselves hanging over you. They began to masturbate in front of your face, and you understand that they will soon run out...'
  140. act 'Wait':
  141. *clr & cla
  142. minut += 1
  143. gs 'cum_call', 'face', $boy[1],1,'','',20
  144. gs 'cum_call', 'face', $boy[2],1,'','',20
  145. gs 'cum_call', 'face', $boy[3],1,'','',20
  146. gs 'cum_call', 'stomach', $boy[2],1,'','',20
  147. gs 'cum_call', 'mouth', $boy[1],1,'','',20
  148. gs 'cum_call','breasts',$boy[3],1,'','',20
  149. swallow += 1
  150. gs 'stat'
  151. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi6.jpg"></center>'
  152. 'Finally guys started to cum, jets of sperm struck your face, hit you in the mouth and on the body is also a little came...'
  153. act 'Pass out':
  154. *clr & cla
  155. minut += 1
  156. gs 'stat'
  157. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/dancesexson.jpg"></center>'
  158. 'As soon as the guys moved away from you, you instantly passed out not dressing and not changing the posture...'
  159. if hantersIgorLove > 0:' - I told you Igor, that she was a whore, and you didn`t believe me, " he heard finally the voice of Andrew.'
  160. if hantersIgorLove = 1 or hantersIgorLove = 2:' - Well, now you know... and I thought we really would be there, and the answer Igor. You realize he left you.'
  161. if hantersIgorLove = 3:' - Well, now you know... and I viril her, and the answer Igor. You understand the divorce.'
  162. if hantersSergeiLove > 0:' - I told you Sergey, that she was a whore, and you didn`t believe me, " he heard finally the voice of Andrew.'
  163. if hantersSergeiLove > 0:' - Yeah, you were right - the answer Sergey. You realize he left you.'
  164. if hantersAndreiLove > 0:' - Yeah, I thought you were different, " he heard finally the voice of Andrew. Finally you spitting between his legs, he went. You realize he left you.'
  165. act 'Wake up':
  166. *clr & cla
  167. minut += 600
  168. pcs_sleep += 60
  169. pcs_health += 50
  170. pcs_mood += 50
  171. pcs_willpwr +=50
  172. hantdanceslut = 1
  173. if hantersIgorLove = 3:hantersIgorLove = 0 & hantersIgorQw -= 100 & husband = 0 & divorced += 1 & husbandMark = 0 & husbharmin = 0 & husbizvradd = 0
  174. if hantersIgorLove = 2:hantersIgorLove = 0 & hantersIgorQw -= 100 & bfa += 0
  175. if hantersIgorLove = 1:hantersIgorLove = 0 & hantersIgorQw -= 100
  176. if hantersSergeiLove = 1:hantersSergeiLove = 0 & hantersSergeiQw -= 100
  177. if hantersAndreiLove = 1:hantersAndreiLove = 0 & hantersAndreiQw -= 100
  178. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/drunk_ev/pohmel1.jpg"></center>'
  179. 'You slept for awhile, waking up disheveled barely tore the head from the pillow. Headache and you vaguely remembered what happened yesterday.'
  180. gs 'arousal', 'end'
  181. gs 'stat'
  182. act 'Further': gt'swamphouse'
  183. end
  184. end
  185. end
  186. end
  187. end
  188. end
  189. end
  190. end
  191. end
  192. end
  193. end
  194. end
  195. end
  196. end
  197. end
  198. end
  199. end
  200. end
  201. !sex after of Striptease if GG whore
  202. if $ARGS[0] = 'sexafterstrip3':
  203. gs 'boyStat', 'A172','1' &! Andrei
  204. gs 'boyStat', 'A173','2' &! Igor
  205. gs 'boyStat', 'A174','3' &! Sergey
  206. gang +=1
  207. npc_sex[$boy[1]] += 1
  208. npc_sex[$boy[2]] += 1
  209. npc_sex[$boy[3]] += 1
  210. minut += 5
  211. gs 'shortgs','smoker'
  212. pcs_mood = 100
  213. pcs_willpwr += 100
  214. pcs_dom -= 1
  215. dirty_dickA = 0
  216. dirty_dickB = 0
  217. dirty_dickC = 0
  218. boyAsex = 0
  219. boyBsex = 0
  220. boyCsex = 0
  221. boyAsexa = 0
  222. boyBsexa = 0
  223. boyCsexa = 0
  224. hantslutsex += rand(9,12)
  225. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dance6.jpg"></center>'
  226. 'You tiredly sat down on the edge of the table to rest and have a smoke. To you with a smile came over, naked Igor.'
  227. '-<<$pcs_nickname>>, it was cool, " he said, smiling . - Continue?'
  228. '-Of course, the piano smiling replied you .'
  229. gs 'arousal', 'foreplay', 5, 'sub'
  230. gs 'stat'
  231. act 'Suck':
  232. *clr & cla
  233. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoi2.'+rand(0,4)+'.jpg"></center>'
  234. 'You brought his lips to the member of Igor..'
  235. gs 'boyStat', 'A173' &! Igor ... need data for oral procedure
  236. gs 'oral','start'
  237. 'Trying to get more fun, you try to swallow as deeply as possible and Igor seems to like it...'
  238. gs 'arousal', 'bj', 5, 'sub', 'deepthroat'
  239. gs 'stat'
  240. if pcs_health <= 50:
  241. act 'To lose consciousness': gs 'huntersex','hantersgroupfaint'
  242. else
  243. act 'Suck all':gt 'hantersex', 'hantersgrOasi'
  244. end
  245. end
  246. end
  247. ! sex if naked in front of GG hunters
  248. if $ARGS[0] = 'hantersexnude':
  249. gs 'boyStat', 'A172','1' &! Andrei
  250. gs 'boyStat', 'A173','2' &! Igor
  251. gs 'boyStat', 'A174','3' &! Sergey
  252. gang +=1
  253. npc_sex[$boy[1]] += 1
  254. npc_sex[$boy[2]] += 1
  255. npc_sex[$boy[3]] += 1
  256. gang += 1
  257. pcs_dom -= 1
  258. dirty_dickA = 0
  259. dirty_dickB = 0
  260. dirty_dickC = 0
  261. boyAsex = 0
  262. boyBsex = 0
  263. boyCsex = 0
  264. boyAsexa = 0
  265. boyBsexa = 0
  266. boyCsexa = 0
  267. hantslutsex += rand(9,12)
  268. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersrelax1.4.jpg"></center>'
  269. 'You approached the guys with a playful smile...'
  270. '- You know what to do <<$pcs_nickname>>, - said Andrew smiling. - Get.'
  271. gs 'arousal', 'foreplay', 5, 'sub'
  272. gs 'stat'
  273. act 'Suck':gt 'hantersex', 'hantersgrOasi'
  274. end
  275. ! if GG whore
  276. if $ARGS[0] = 'sluthomesex':
  277. hantslutsex += rand(3,6)
  278. ! for a break between the sex, is taken away -1 every hour
  279. pcs_dom -= 1
  280. dirty_dickA = 0
  281. dirty_dickB = 0
  282. dirty_dickC = 0
  283. boyAsex = 0
  284. boyBsex = 0
  285. boyCsex = 0
  286. boyAsexa = 0
  287. boyBsexa = 0
  288. boyCsexa = 0
  289. gs 'clothing', 'strip', 'swamphouse'
  290. if hanterandreisex = 0 and temphant = 1:hanterandreisex = 1 & guy += 1
  291. if hantersergeisex = 0 and temphant = 2:hantersergeisex = 1 & guy += 1
  292. if hanterigorsex = 0 and temphant = 3:hanterigorsex = 1 & guy += 1
  293. if temphant = 1:gs 'boyStat', 'A172'
  294. if temphant = 2:gs 'boyStat', 'A174'
  295. if temphant = 3:gs 'boyStat', 'A173'
  296. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomesex1.jpg"></center>'
  297. 'When he reached the couch, he immediately began to undress you.'
  298. '- You know what to do <<$pcs_nickname>>, - said <<$boydesc>> smiling. - Get.'
  299. gs 'arousal', 'foreplay', 5, 'sub'
  300. gs 'stat'
  301. act 'Squat':gt 'hantersex', 'sluthomeSTART'
  302. end
  303. if $ARGS[0] = 'doublelovesex':
  304. !trio
  305. !! if doublelovesex = 1 or slutgosex = 2 or forest_hantersex = 2 or forest_gopsex = 2:
  306. *clr & cla
  307. slutgosex = 0
  308. doublelovesex = 0
  309. pcs_dom -= 1
  310. dirty_dickA = 0
  311. dirty_dickB = 0
  312. dirty_dickC = 0
  313. boyAsex = 0
  314. boyBsex = 0
  315. boyCsex = 0
  316. boyAsexa = 0
  317. boyBsexa = 0
  318. boyCsexa = 0
  319. ! for a break between the sex, is taken away -1 every hour
  320. if slutgosex = 2:hantslutsex += rand(6,9)
  321. if doublelovesex = 1:hantersAndreisex += rand(6,24)
  322. if doublelovesex = 1:hantersSergeisex += rand(9,30)
  323. hantsexa = rand(1,5)
  324. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovesex.jpg"></center>'
  325. if doublelovesex = 1:
  326. 'Entering deeper into the thicket of the guys came up to you close and began to hug and kiss. They put pressure on your shoulders and you began...'
  327. else
  328. 'Entering deeper into the thicket of the guys came up to you close and began to undress. They put pressure on your shoulders and you began...'
  329. end
  330. gs 'arousal', 'foreplay', 5, 'sub', 'group'
  331. gs 'stat'
  332. if hantsexa < 4:act 'Suck':gt 'hantersex', 'doubleloveOral12'
  333. if hantsexa = 4:act 'Suck':gt 'hantersex', 'doubleloveOralCum12_1'
  334. if hantsexa = 5:act 'Suck':gt 'hantersex', 'doubleloveOralCum12_2'
  335. end
  336. ! Two vs GG
  337. if $ARGS[0] = 'doubleloveOral12':
  338. *clr & cla
  339. lubonus += 1
  340. hantsexa = rand(1,6)
  341. gs 'stat'
  342. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoral12.'+rand(1,2)+'.jpg"></center>'
  343. 'You kneel in front of guys and sucking their Dicks, taking turns and pay attention to each...'
  344. if temphant <= 2:gs 'boyStat', 'A172'
  345. if temphant = 3:gs 'boyStat', 'A173'
  346. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63'
  347. if temphant = 6:gs 'boyStat', 'A62'
  348. gs 'oral','start'
  349. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  350. if temphant = 2:gs 'boyStat', 'A173'
  351. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  352. if temphant = 5:gs 'boyStat', 'A62'
  353. gs 'oral','start'
  354. '<<$textsexhanter5>>'
  355. gs 'arousal', 'bj', 5, 'sub', 'group'
  356. gs 'stat'
  357. if pcs_health > 50 and hantsexa = 1:act 'Kneel':gt 'hantersex', 'doubleloveOralCum12'
  358. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'doubleloveDog112'
  359. if pcs_health > 50 and hantsexa = 3:act 'Become doggy':gt 'hantersex', 'doubleloveDog212'
  360. if pcs_health > 50 and hantsexa = 4:act 'Lie on your side':gt 'hantersex', 'doubleloveSide12'
  361. if pcs_health > 50 and hantsexa = 5:act 'Sit down':gt 'hantersex', 'doubleloveCow112'
  362. if pcs_health > 50 and hantsexa = 6:act 'Sit down':gt 'hantersex', 'doubleloveCow212'
  363. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  364. end
  365. if $ARGS[0] = 'doubleloveOralCum12_1':
  366. gs 'cum_call', 'mouth', $boy, 1
  367. swallow += 1
  368. hantsexa = rand(1,2)
  369. gs 'stat'
  370. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoralcum12_1.jpg"></center>'
  371. 'You kneel in front of guys and sucking their Dicks, taking turns and pay attention to each...'
  372. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  373. if temphant = 2:gs 'boyStat', 'A173'
  374. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  375. if temphant = 5:gs 'boyStat', 'A62'
  376. gs 'oral','start'
  377. if temphant <= 2:gs 'boyStat', 'A172'
  378. if temphant = 3:gs 'boyStat', 'A173'
  379. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63'
  380. if temphant = 6:gs 'boyStat', 'A62'
  381. gs 'oral','start'
  382. gs 'dinsex', 'dinrandswallow'
  383. '<<$textsexhanter6>>'
  384. gs 'arousal', 'bj', 5, 'sub', 'group'
  385. gs 'stat'
  386. if pcs_health > 50 and hantsexa = 1:act 'Lie on your side':gt 'hantersex', 'doubleloveSide2'
  387. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral2'
  388. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  389. end
  390. if $ARGS[0] = 'doubleloveOralCum12_2':
  391. *clr & cla
  392. gs 'cum_call', 'mouth', $boy, 1
  393. swallow += 1
  394. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoralcum12_2.jpg"></center>'
  395. 'You kneel in front of guys and sucking their Dicks, taking turns and pay attention to each...'
  396. hantsexa = rand(1,2)
  397. gs 'stat'
  398. if temphant <= 2:gs 'boyStat', 'A172'
  399. if temphant = 3:gs 'boyStat', 'A173'
  400. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63'
  401. if temphant = 6:gs 'boyStat', 'A62'
  402. gs 'oral','start'
  403. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  404. if temphant = 2:gs 'boyStat', 'A173'
  405. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  406. if temphant = 5:gs 'boyStat', 'A62'
  407. gs 'oral','start'
  408. gs 'dinsex', 'dinrandswallow'
  409. '<<$textsexhanter6>>'
  410. gs 'arousal', 'bj', 5, 'sub', 'group'
  411. gs 'stat'
  412. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'doubleloveCow1'
  413. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral1'
  414. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  415. end &! --- doubleloveOralCum12_2 ---
  416. if $ARGS[0] = 'doubleloveDog112':
  417. *clr & cla
  418. minut += 5
  419. lubonus += 1
  420. hantsexa = rand(1,7)
  421. gs 'stat'
  422. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedog112.'+rand(1,3)+'.jpg"></center>'
  423. 'You stand up in front of the boys, bent cancer and suck their one cock, while the second is attached to the rear...'
  424. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  425. if temphant = 2:gs 'boyStat', 'A173'
  426. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  427. if temphant = 5:gs 'boyStat', 'A62'
  428. gs 'oral','start'
  429. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  430. if temphant <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  431. if temphant = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  432. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  433. if temphant = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  434. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  435. '<<$textsexhanter7>>'
  436. gs 'arousal', 'bj', 5, 'sub', 'group'
  437. gs 'arousal', 'anal', 5, 'sub', 'group'
  438. minut -= 5
  439. gs 'stat'
  440. if pcs_health > 50 and hantsexa = 1:act 'Kneel':gt 'hantersex', 'doubleloveOralCum12'
  441. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'doubleloveDogCum112_1'
  442. if pcs_health > 50 and hantsexa = 3:act 'Become doggy':gt 'hantersex', 'doubleloveDogCum112_2'
  443. if pcs_health > 50 and hantsexa = 4:act 'Become doggy':gt 'hantersex', 'doubleloveDog212'
  444. if pcs_health > 50 and hantsexa = 5:act 'Lie on your side':gt 'hantersex', 'doubleloveSide12'
  445. if pcs_health > 50 and hantsexa = 6:act 'Sit down':gt 'hantersex', 'doubleloveCow112'
  446. if pcs_health > 50 and hantsexa = 7:act 'Sit down':gt 'hantersex', 'doubleloveCow212'
  447. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  448. end &! --- doubleloveDog112 ---
  449. if $ARGS[0] = 'doubleloveDogCum112_1':
  450. *clr & cla
  451. gs 'cum_call', 'anus', $boy, 1
  452. hantsexa = rand(1,2)
  453. gs 'stat'
  454. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedogcum112_1.jpg"></center>'
  455. 'You stand up in front of the boys, bent cancer and suck their one cock, while the second is attached to the rear...'
  456. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  457. if temphant = 2:gs 'boyStat', 'A173'
  458. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  459. if temphant = 5:gs 'boyStat', 'A62'
  460. gs 'oral','start'
  461. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  462. if temphant <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  463. if temphant = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  464. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  465. if temphant = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  466. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  467. '<<$textsexhanter6>>'
  468. lubonus += 1
  469. gs 'arousal', 'bj', 5, 'sub', 'group'
  470. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  471. minut -= 5
  472. gs 'stat'
  473. if pcs_health > 50 and hantsexa = 1:act 'Lie on your side':gt 'hantersex', 'doubleloveSide2'
  474. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral2'
  475. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  476. end &! --- doubleloveDogCum112_1 ---
  477. if $ARGS[0] = 'doubleloveDogCum112_2':
  478. *clr & cla
  479. gs 'cum_call', 'mouth', $boy, 1
  480. swallow += 1
  481. hantsexa = rand(1,2)
  482. gs 'stat'
  483. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedogcum112_2.jpg"></center>'
  484. 'You stand up in front of the boys, bent cancer and suck their one cock, while the second is attached to the rear...'
  485. if temphant <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  486. if temphant = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  487. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  488. if temphant = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  489. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  490. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  491. if temphant = 2:gs 'boyStat', 'A173'
  492. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  493. if temphant = 5:gs 'boyStat', 'A62'
  494. gs 'oral','start'
  495. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  496. gs 'dinsex', 'dinrandswallow'
  497. '<<$textsexhanter6>>'
  498. gs 'arousal', 'bj', 5, 'sub', 'group'
  499. gs 'arousal', 'anal', 5, 'sub', 'group'
  500. minut -= 5
  501. gs 'stat'
  502. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'doubleloveCow1'
  503. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral1'
  504. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  505. end &! --- doubleloveDogCum112_2 ---
  506. if $ARGS[0] = 'doubleloveDog212':
  507. *clr & cla
  508. lubonus += 1
  509. hantsexa = rand(1,7)
  510. gs 'stat'
  511. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedog212.'+rand(1,3)+'.jpg"></center>'
  512. 'You stand cancer before guys and suck their one cock, while the second is attached to the rear...'
  513. if temphant <= 2:gs 'boyStat', 'A172'
  514. if temphant = 3:gs 'boyStat', 'A173'
  515. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63'
  516. if temphant = 6:gs 'boyStat', 'A62'
  517. gs 'oral','start'
  518. if klismaday ! daystart and boyAsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  519. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174' & boyBsexa += 1
  520. if temphant = 2:gs 'boyStat', 'A173' & boyBsexa += 1
  521. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61' & boyBsexa += 1
  522. if temphant = 5:gs 'boyStat', 'A62' & boyBsexa += 1
  523. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  524. '<<$textsexhanter7>>'
  525. gs 'arousal', 'bj', 5, 'sub', 'group'
  526. gs 'arousal', 'anal', 5, 'sub', 'group'
  527. minut -= 5
  528. gs 'stat'
  529. if pcs_health > 50 and hantsexa = 1:act 'Kneel':gt 'hantersex', 'doubleloveOralCum12'
  530. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'doubleloveDogCum212_1'
  531. if pcs_health > 50 and hantsexa = 3:act 'Become doggy':gt 'hantersex', 'doubleloveDogCum212_2'
  532. if pcs_health > 50 and hantsexa = 4:act 'Become doggy':gt 'hantersex', 'doubleloveDog112'
  533. if pcs_health > 50 and hantsexa = 5:act 'Lie on your side':gt 'hantersex', 'doubleloveSide12'
  534. if pcs_health > 50 and hantsexa = 6:act 'Sit down':gt 'hantersex', 'doubleloveCow112'
  535. if pcs_health > 50 and hantsexa = 7:act 'Sit down':gt 'hantersex', 'doubleloveCow212'
  536. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  537. end &! --- doubleloveDog212 ---
  538. if $ARGS[0] = 'doubleloveDogCum212_1':
  539. *clr & cla
  540. gs 'cum_call', 'anus', $boy, 1
  541. hantsexa = rand(1,2)
  542. gs 'stat'
  543. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedogcum212_1.jpg"></center>'
  544. 'You stand cancer before guys and suck their one cock, while the second is attached to the rear...'
  545. if temphant <= 2:gs 'boyStat', 'A172'
  546. if temphant = 3:gs 'boyStat', 'A173'
  547. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63'
  548. if temphant = 6:gs 'boyStat', 'A62'
  549. gs 'oral','start'
  550. if klismaday ! daystart and boyAsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  551. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  552. if temphant = 2:gs 'boyStat', 'A173'
  553. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  554. if temphant = 5:gs 'boyStat', 'A62'
  555. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  556. '<<$textsexhanter6>>'
  557. lubonus += 1
  558. gs 'arousal', 'bj', 5, 'sub', 'group'
  559. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  560. minut -= 5
  561. gs 'stat'
  562. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'doubleloveCow1'
  563. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral1'
  564. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  565. end &! --- doubleloveDogCum212_1 ---
  566. if $ARGS[0] = 'doubleloveDogCum212_2':
  567. *clr & cla
  568. gs 'cum_call', 'mouth', $boy, 1
  569. swallow += 1
  570. hantsexa = rand(1,2)
  571. gs 'stat'
  572. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovedogcum212_2.jpg"></center>'
  573. 'You stand cancer before guys and suck their one cock, while the second is attached to the rear...'
  574. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174' & boyBsexa += 1
  575. if temphant = 2:gs 'boyStat', 'A173' & boyBsexa += 1
  576. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61' & boyBsexa += 1
  577. if temphant = 5:gs 'boyStat', 'A62' & boyBsexa += 1
  578. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  579. if temphant <= 2:gs 'boyStat', 'A172'
  580. if temphant = 3:gs 'boyStat', 'A173'
  581. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63'
  582. if temphant = 6:gs 'boyStat', 'A62'
  583. gs 'oral','start'
  584. if klismaday ! daystart and boyAsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  585. gs 'dinsex', 'dinrandswallow'
  586. '<<$textsexhanter6>>'
  587. gs 'arousal', 'bj', 5, 'sub', 'group'
  588. gs 'arousal', 'anal', 5, 'sub', 'group'
  589. minut -= 5
  590. gs 'stat'
  591. if pcs_health > 50 and hantsexa = 1:act 'Lie on your side':gt 'hantersex', 'doubleloveSide2'
  592. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral2'
  593. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  594. end &! --- doubleloveDogCum212_2 ---
  595. if $ARGS[0] = 'doubleloveSide12':
  596. *clr & cla
  597. lubonus += 1
  598. hantsexa = rand(1,7)
  599. gs 'stat'
  600. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveside12.'+rand(1,2)+'.jpg"></center>'
  601. 'You lie on your side with a member of one of the guy in front of your face, and the other one is attached in the back...'
  602. if temphant <= 2:gs 'boyStat', 'A172'
  603. if temphant = 3:gs 'boyStat', 'A173'
  604. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63'
  605. if temphant = 6:gs 'boyStat', 'A62'
  606. gs 'oral','start'
  607. if klismaday ! daystart and boyAsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  608. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174' & boyBsexa += 1
  609. if temphant = 2:gs 'boyStat', 'A173' & boyBsexa += 1
  610. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61' & boyBsexa += 1
  611. if temphant = 5:gs 'boyStat', 'A62' & boyBsexa += 1
  612. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  613. '<<$textsexhanter7>>'
  614. gs 'arousal', 'bj', 5, 'sub', 'group'
  615. gs 'arousal', 'anal', 5, 'sub', 'group'
  616. minut -= 5
  617. gs 'stat'
  618. if pcs_health > 50 and hantsexa = 1:act 'Kneel':gt 'hantersex', 'doubleloveOralCum12'
  619. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'doubleloveDog212'
  620. if pcs_health > 50 and hantsexa = 3:act 'Become doggy':gt 'hantersex', 'doubleloveDog112'
  621. if pcs_health > 50 and hantsexa = 4:act 'Lie on your side':gt 'hantersex', 'doubleloveSideCum12_1'
  622. if pcs_health > 50 and hantsexa = 5:act 'Lie on your side':gt 'hantersex', 'doubleloveSideCum12_2'
  623. if pcs_health > 50 and hantsexa = 6:act 'Sit down':gt 'hantersex', 'doubleloveCow112'
  624. if pcs_health > 50 and hantsexa = 7:act 'Sit down':gt 'hantersex', 'doubleloveCow212'
  625. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  626. end &! --- doubleloveSide12 ---
  627. if $ARGS[0] = 'doubleloveSideCum12_1':
  628. *clr & cla
  629. gs 'cum_call', 'anus', $boy, 1
  630. hantsexa = rand(1,2)
  631. gs 'stat'
  632. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovesidecum12_1.jpg"></center>'
  633. 'You stand cancer before guys and suck their one cock, while the second is attached to the rear...'
  634. if temphant <= 2:gs 'boyStat', 'A172'
  635. if temphant = 3:gs 'boyStat', 'A173'
  636. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63'
  637. if temphant = 6:gs 'boyStat', 'A62'
  638. gs 'oral','start'
  639. if klismaday ! daystart and boyAsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  640. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  641. if temphant = 2:gs 'boyStat', 'A173'
  642. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  643. if temphant = 5:gs 'boyStat', 'A62'
  644. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  645. '<<$textsexhanter6>>'
  646. lubonus += 1
  647. gs 'arousal', 'bj', 5, 'sub', 'group'
  648. gs 'arousal', 'anal', 5, 'sub', 'group'
  649. minut -= 5
  650. gs 'stat'
  651. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'doubleloveCow1'
  652. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral1'
  653. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  654. end &! --- doubleloveSideCum12_1 ---
  655. if $ARGS[0] = 'doubleloveSideCum12_2':
  656. *clr & cla
  657. lubonus += 1
  658. gs 'cum_call', 'mouth', $boy, 1
  659. swallow += 1
  660. hantsexa = rand(1,2)
  661. gs 'stat'
  662. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovesidecum12_2.jpg"></center>'
  663. 'You stand cancer before guys and suck their one cock, while the second is attached to the rear...'
  664. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174' & boyBsexa += 1
  665. if temphant = 2:gs 'boyStat', 'A173' & boyBsexa += 1
  666. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61' & boyBsexa += 1
  667. if temphant = 5:gs 'boyStat', 'A62' & boyBsexa += 1
  668. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  669. if temphant <= 2:gs 'boyStat', 'A172'
  670. if temphant = 3:gs 'boyStat', 'A173'
  671. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63'
  672. if temphant = 6:gs 'boyStat', 'A62'
  673. gs 'oral','start'
  674. if klismaday ! daystart and boyAsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  675. gs 'dinsex', 'dinrandswallow'
  676. '<<$textsexhanter6>>'
  677. gs 'arousal', 'bj', 5, 'sub', 'group'
  678. gs 'arousal', 'anal', 5, 'sub', 'group'
  679. minut -= 5
  680. gs 'stat'
  681. if pcs_health > 50 and hantsexa = 1:act 'Lie on your side':gt 'hantersex', 'doubleloveSide2'
  682. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral2'
  683. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  684. end &! --- doubleloveSideCum12_2 ---
  685. if $ARGS[0] = 'doubleloveCow112':
  686. *clr & cla
  687. lubonus += 1
  688. hantsexa = rand(1,8)
  689. gs 'stat'
  690. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecow112.'+rand(1,2)+'.jpg"></center>'
  691. 'One of the guys lay on the ground, attaching you to the top, the second was next, bringing his cock to your face...'
  692. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  693. if temphant = 2:gs 'boyStat', 'A173'
  694. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  695. if temphant = 5:gs 'boyStat', 'A62'
  696. gs 'oral','start'
  697. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  698. if temphant <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  699. if temphant = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  700. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  701. if temphant = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  702. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  703. '<<$textsexhanter7>>'
  704. gs 'arousal', 'bj', 5, 'sub', 'group'
  705. gs 'arousal', 'anal', 5, 'sub', 'group'
  706. minut -= 5
  707. gs 'stat'
  708. if pcs_health > 50 and hantsexa = 1:act 'Kneel':gt 'hantersex', 'doubleloveOralCum12'
  709. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'doubleloveDog112'
  710. if pcs_health > 50 and hantsexa = 3:act 'Become doggy':gt 'hantersex', 'doubleloveDog212'
  711. if pcs_health > 50 and hantsexa = 4:act 'Lie on your side':gt 'hantersex', 'doubleloveSide12'
  712. if pcs_health > 50 and hantsexa = 5:act 'Sit down':gt 'hantersex', 'doubleloveCowCum112_1'
  713. if pcs_health > 50 and hantsexa = 6:act 'Sit down':gt 'hantersex', 'doubleloveCowCum112_2'
  714. if pcs_health > 50 and hantsexa = 7:act 'Sit down':gt 'hantersex', 'doubleloveCow212'
  715. if pcs_health > 50 and hantsexa = 8:act 'Sit down':gt 'hantersex', 'doubleloveCowCum1'
  716. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  717. end &! --- doubleloveCow112 ---
  718. if $ARGS[0] = 'doubleloveCowCum112_1':
  719. *clr & cla
  720. lubonus += 1
  721. gs 'cum_call', 'anus', $boy, 1
  722. hantsexa = rand(1,2)
  723. gs 'stat'
  724. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecowcum112_1.jpg"></center>'
  725. 'One of the guys lay on the ground, attaching you to the top, the second was next, bringing his cock to your face...'
  726. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  727. if temphant = 2:gs 'boyStat', 'A173'
  728. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  729. if temphant = 5:gs 'boyStat', 'A62'
  730. gs 'oral','start'
  731. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  732. if temphant <= 2:gs 'boyStat', 'A172'
  733. if temphant = 3:gs 'boyStat', 'A173'
  734. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63'
  735. if temphant = 6:gs 'boyStat', 'A62'
  736. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  737. '<<$textsexhanter6>>'
  738. lubonus += 1
  739. gs 'arousal', 'bj', 5, 'sub', 'group'
  740. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  741. minut -= 5
  742. gs 'stat'
  743. if pcs_health > 50 and hantsexa = 1:act 'Lie on your side':gt 'hantersex', 'doubleloveSide2'
  744. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral2'
  745. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  746. end &! --- doubleloveCowCum112_1 ---
  747. if $ARGS[0] = 'doubleloveCowCum112_2':
  748. *clr & cla
  749. lubonus += 1
  750. gs 'cum_call', 'mouth', $boy, 1
  751. swallow += 1
  752. hantsexa = rand(1,2)
  753. gs 'stat'
  754. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecowcum112_2.jpg"></center>'
  755. 'One of the guys lay on the ground, attaching you to the top, the second was next, bringing his cock to your face...'
  756. if temphant <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  757. if temphant = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  758. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  759. if temphant = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  760. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  761. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  762. if temphant = 2:gs 'boyStat', 'A173'
  763. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  764. if temphant = 5:gs 'boyStat', 'A62'
  765. gs 'oral','start'
  766. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  767. gs 'dinsex', 'dinrandswallow'
  768. '<<$textsexhanter6>>'
  769. gs 'arousal', 'bj', 5, 'sub', 'group'
  770. gs 'arousal', 'anal', 5, 'sub', 'group'
  771. minut -= 5
  772. gs 'stat'
  773. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'doubleloveCow1'
  774. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral1'
  775. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  776. end &! --- doubleloveCowCum112_2 ---
  777. if $ARGS[0] = 'doubleloveCow212':
  778. hantsexa = rand(1,7)
  779. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecow212.'+rand(1,2)+'.jpg"></center>'
  780. 'One of the guys lay on the ground, attaching you to the top, the second was next, bringing his cock to your face...'
  781. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  782. if temphant = 2:gs 'boyStat', 'A173'
  783. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  784. if temphant = 5:gs 'boyStat', 'A62'
  785. gs 'oral','start'
  786. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  787. if temphant <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  788. if temphant = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  789. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  790. if temphant = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  791. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  792. '<<$textsexhanter7>>'
  793. gs 'arousal', 'bj', 5, 'sub', 'group'
  794. gs 'arousal', 'anal', 5, 'sub', 'group'
  795. minut -= 5
  796. gs 'stat'
  797. if pcs_health > 50 and hantsexa = 1:act 'Kneel':gt 'hantersex', 'doubleloveOralCum12'
  798. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'doubleloveDog112'
  799. if pcs_health > 50 and hantsexa = 3:act 'Become doggy':gt 'hantersex', 'doubleloveDog212'
  800. if pcs_health > 50 and hantsexa = 4:act 'Lie on your side':gt 'hantersex', 'doubleloveSide12'
  801. if pcs_health > 50 and hantsexa = 5:act 'Sit down':gt 'hantersex', 'doubleloveCowCum212_1'
  802. if pcs_health > 50 and hantsexa = 6:act 'Sit down':gt 'hantersex', 'doubleloveCowCum212_2'
  803. if pcs_health > 50 and hantsexa = 7:act 'Sit down':gt 'hantersex', 'doubleloveCow112'
  804. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  805. end &! --- doubleloveCow212 ---
  806. if $ARGS[0] = 'doubleloveCowCum212_1':
  807. gs 'cum_call', 'anus', $boy, 1
  808. hantsexa = rand(1,2)
  809. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecowcum212_1.jpg"></center>'
  810. 'One of the guys lay on the ground, attaching you to the top, the second was next, bringing his cock to your face...'
  811. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  812. if temphant = 2:gs 'boyStat', 'A173'
  813. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  814. if temphant = 5:gs 'boyStat', 'A62'
  815. gs 'oral','start'
  816. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  817. if temphant <= 2:gs 'boyStat', 'A172'
  818. if temphant = 3:gs 'boyStat', 'A173'
  819. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  820. if temphant = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  821. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  822. '<<$textsexhanter6>>'
  823. lubonus += 1
  824. gs 'arousal', 'bj', 5, 'sub', 'group'
  825. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  826. minut -= 5
  827. gs 'stat'
  828. if pcs_health > 50 and hantsexa = 1:act 'Lie on your side':gt 'hantersex', 'doubleloveSide2'
  829. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral2'
  830. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  831. end &! --- doubleloveCowCum212_1 ---
  832. if $ARGS[0] = 'doubleloveCowCum212_2':
  833. gs 'cum_call', 'mouth', $boy, 1
  834. swallow += 1
  835. hantsexa = rand(1,2)
  836. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecowcum212_2.jpg"></center>'
  837. 'One of the guys lay on the ground, attaching you to the top, the second was next, bringing his cock to your face...'
  838. if temphant <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  839. if temphant = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  840. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  841. if temphant = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  842. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  843. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  844. if temphant = 2:gs 'boyStat', 'A173'
  845. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  846. if temphant = 5:gs 'boyStat', 'A62'
  847. gs 'oral','start'
  848. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20 & boyBsexa -= 1
  849. gs 'dinsex', 'dinrandswallow'
  850. '<<$textsexhanter6>>'
  851. gs 'arousal', 'bj', 5, 'sub', 'group'
  852. gs 'arousal', 'anal', 5, 'sub', 'group'
  853. minut -= 5
  854. gs 'stat'
  855. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'doubleloveCow1'
  856. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral1'
  857. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  858. end &! --- doubleloveCowCum212_2 ---
  859. if $ARGS[0] = 'doubleloveSide2':
  860. hantsexa = rand(1,2)
  861. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174' & boyBsexa += 1
  862. if temphant = 2:gs 'boyStat', 'A173' & boyBsexa += 1
  863. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61' & boyBsexa += 1
  864. if temphant = 5:gs 'boyStat', 'A62' & boyBsexa += 1
  865. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveside2.'+rand(1,2)+'.jpg"></center>'
  866. 'You lie on your side, <<$boydesc>> behind the back is attached...'
  867. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  868. '<<$textsexhanter4>>'
  869. gs 'arousal', 'bj', 5, 'sub', 'group'
  870. gs 'arousal', 'anal', 5, 'sub', 'group'
  871. minut -= 5
  872. gs 'stat'
  873. if pcs_health > 50 and hantsexa = 1:act 'Lie on your side':gt 'hantersex', 'doubleloveSideCum2'
  874. if pcs_health > 50 and hantsexa = 2:act 'Suck':gt 'hantersex', 'doubleloveOral2'
  875. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  876. end &! --- doubleloveSide2 ---
  877. if $ARGS[0] = 'doubleloveSideCum2':
  878. gs 'cum_call', 'anus', $boy, 1
  879. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  880. if temphant = 2:gs 'boyStat', 'A173'
  881. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  882. if temphant = 5:gs 'boyStat', 'A62'
  883. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovesidecum2.jpg"></center>'
  884. 'You lie on your side, <<$boydesc>> behind the back is attached...'
  885. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  886. '<<$textsexhanter3>>'
  887. lubonus = 0
  888. gs 'arousal', 'bj', 5, 'sub', 'group'
  889. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  890. minut -= 5
  891. gs 'stat'
  892. if forest_hantersex = 0:act 'Further':gt $loc, $metka
  893. if forest_hantersex > 0:act 'Further':forest_hantersex = 0 & minut += 60 & gt 'swamp_yard'
  894. end &! --- doubleloveSideCum2 ---
  895. if $ARGS[0] = 'doubleloveCow1':
  896. hantsexa = rand(1,2)
  897. if temphant <= 2:gs 'boyStat', 'A172' & boyAsexa += 1
  898. if temphant = 3:gs 'boyStat', 'A173' & boyAsexa += 1
  899. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  900. if temphant = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  901. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecow1.'+rand(1,2)+'.jpg"></center>'
  902. '<<$boydesc>> lay on the ground, inviting you to settle on top...'
  903. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  904. '<<$textsexhanter3>>'
  905. gs 'arousal', 'bj', 5, 'sub', 'group'
  906. gs 'arousal', 'anal', 5, 'sub', 'group'
  907. minut -= 5
  908. gs 'stat'
  909. if pcs_health > 50 and hantsexa = 1:act 'Kneel':gt 'hantersex', 'doubleloveCow1'
  910. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'doubleloveOral1'
  911. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  912. end &! --- doubleloveCow1 ---
  913. if $ARGS[0] = 'doubleloveCowCum1':
  914. gs 'cum_call', 'anus', $boy, 1
  915. if temphant <= 2:gs 'boyStat', 'A172'
  916. if temphant = 3:gs 'boyStat', 'A173'
  917. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  918. if temphant = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  919. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doublelovecowcum1.jpg"></center>'
  920. '<<$boydesc>> lay on the ground, inviting you to settle on top...'
  921. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  922. '<<$textsexhanter4>>'
  923. lubonus = 0
  924. gs 'arousal', 'bj', 5, 'sub', 'group'
  925. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  926. minut -= 5
  927. gs 'stat'
  928. if forest_hantersex = 0:act 'Further':gt $loc, $metka
  929. if forest_hantersex > 0:act 'Further':forest_hantersex = 0 & minut += 60 & gt 'swamp_yard'
  930. end &! --- doubleloveCowCum1 ---
  931. if $ARGS[0] = 'doubleloveOral1':
  932. hantsexa = rand(1,5)
  933. if temphant <= 2:gs 'boyStat', 'A172'
  934. if temphant = 3:gs 'boyStat', 'A173'
  935. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63' & boyAsexa += 1
  936. if temphant = 6:gs 'boyStat', 'A62' & boyAsexa += 1
  937. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoral1.'+rand(1,2)+'.jpg"></center>'
  938. 'You kneel in front of a boy, his cock right in front of your face...'
  939. gs 'oral','start'
  940. if klismaday ! daystart and boyAsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  941. '<<$textsexhanter2>>'
  942. gs 'arousal', 'bj', 5, 'sub', 'group'
  943. gs 'stat'
  944. if pcs_health > 50:act 'Suck on':gt 'hantersex', 'doubleloveOralCum1'
  945. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  946. end &! --- doubleloveOral1 ---
  947. if $ARGS[0] = 'doubleloveOralCum1':
  948. gs 'cum_call', 'mouth', $boy, 1
  949. swallow += 1
  950. hantsexa = rand(1,5)
  951. if temphant <= 2:gs 'boyStat', 'A172'
  952. if temphant = 3:gs 'boyStat', 'A173'
  953. if temphant = 4 or temphant = 5:gs 'boyStat', 'A63'
  954. if temphant = 6:gs 'boyStat', 'A62'
  955. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoralcum1.jpg"></center>'
  956. 'You kneel in front of a boy, his cock right in front of your face...'
  957. gs 'oral','start'
  958. if klismaday ! daystart and boyAsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  959. '<<$textsexhanter3>>'
  960. lubonus = 0
  961. gs 'arousal', 'bj', 5, 'sub', 'group'
  962. gs 'stat'
  963. if forest_hantersex = 0:act 'Further':gt $loc, $metka
  964. if forest_hantersex > 0:act 'Further':forest_hantersex = 0 & minut += 60 & gt 'swamp_yard'
  965. end &! --- doubleloveOralCum1 ---
  966. if $ARGS[0] = 'doubleloveOral2':
  967. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  968. if temphant = 2:gs 'boyStat', 'A173'
  969. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  970. if temphant = 5:gs 'boyStat', 'A62'
  971. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoral2.'+rand(1,2)+'.jpg"></center>'
  972. 'You kneel in front of a boy, his cock right in front of your face...'
  973. gs 'oral','start'
  974. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  975. gs 'dinsex', 'dinrandswallow'
  976. '<<$textsexhanter2>>'
  977. gs 'arousal', 'bj', 5, 'sub', 'group'
  978. gs 'stat'
  979. if pcs_health > 50:act 'Suck on':gt 'hantersex', 'doubleloveOralCum2'
  980. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  981. end &! --- doubleloveOral2 ---
  982. if $ARGS[0] = 'doubleloveOralCum2':
  983. gs 'cum_call', 'mouth', $boy, 1
  984. swallow += 1
  985. hantsexa = rand(1,5)
  986. if temphant = 1 or temphant = 3:gs 'boyStat', 'A174'
  987. if temphant = 2:gs 'boyStat', 'A173'
  988. if temphant = 4 or temphant = 6:gs 'boyStat', 'A61'
  989. if temphant = 5:gs 'boyStat', 'A62'
  990. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoralcum2.jpg"></center>'
  991. 'You kneel in front of a boy, his cock right in front of your face...'
  992. gs 'oral','start'
  993. if klismaday ! daystart and boyBsexa > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  994. gs 'dinsex', 'dinrandswallow'
  995. '<<$textsexhanter3>>'
  996. lubonus = 0
  997. gs 'arousal', 'bj', 5, 'sub', 'group'
  998. gs 'stat'
  999. if forest_hantersex = 0:act 'Further':gt $loc, $metka
  1000. if forest_hantersex > 0:act 'Further':forest_hantersex = 0 & minut += 60 & gt 'swamp_yard'
  1001. end &! --- doubleloveOralCum2 ---
  1002. if $ARGS[0] = 'doubleloveOralCum12':
  1003. gs 'cum_call', 'mouth', $boy, 1
  1004. swallow += 1
  1005. gs 'cum_call', 'face', $boy, 1
  1006. hantsexa = rand(1,5)
  1007. lubonus = 0
  1008. if $clothingworntype = 'nude':gs 'cum_call', 'stomach', $boy, 1
  1009. if ($clothingworntype ! 'nude' and $clothingworntype ! 'swimwear'):gs 'cum_call', 'clothesgroin', $boy, 1
  1010. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/doubleloveoralcum12.'+rand(1,3)+'.jpg"></center>'
  1011. 'You are on your knees in front of the boys with an open mouth. They violently get on with the job your members in front of your face...'
  1012. 'Soon, the jet of sperm hit you in the mouth, one, two, three. Sperm was too much. She runs down the chin, dripping down. Guys have removed the members in your pants and get over their business, leaving you alone to freshen up.'
  1013. gs 'arousal', 'bj', 5, 'sub', 'group'
  1014. gs 'arousal', 'end'
  1015. gs 'stat'
  1016. if forest_hantersex = 0:act 'Further':gt $loc, $metka
  1017. if forest_hantersex > 0:act 'Further':forest_hantersex = 0 & minut += 60 & gt 'swamp_yard'
  1018. end &! --- doubleloveOralCum12 ---
  1019. ! Sex GG vs the guy in the hut
  1020. if $ARGS[0] = 'sluthomeSTART':
  1021. hantsexa = rand(1,3)
  1022. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomestart.jpg"></center>'
  1023. 'You crouched down and began to pull down guy`s pants. When it was done, the guy glancing at you, said...'
  1024. gs 'arousal', 'foreplay', 5, 'sub'
  1025. gs 'stat'
  1026. if hantsexa = 1:act 'Suck':gt 'hantersex', 'sluthomeORAL1'
  1027. if hantsexa = 2:act 'Suck':gt 'hantersex', 'sluthomeOralCum1'
  1028. if hantsexa = 3:act 'Panties':gt 'hantersex', 'sluthomeTanga'
  1029. end &! --- sluthomeSTART ---
  1030. if $ARGS[0] = 'sluthomeORAL1':
  1031. *clr & cla
  1032. lubonus += 1
  1033. hantsexa = rand(1,5)
  1034. gs 'stat'
  1035. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoral1.'+rand(1,3)+'.jpg"></center>'
  1036. 'You stand a cancer before the guy put the dick to his lips...'
  1037. gs 'oral','start'
  1038. '<<$textsexhanter2>>'
  1039. gs 'arousal', 'bj', 5, 'sub'
  1040. gs 'stat'
  1041. if hantsexa = 1:act 'Suck on':gt 'hantersex', 'sluthomeORAL2'
  1042. if hantsexa = 2:act 'Suck on':gt 'hantersex', 'sluthomeOralCum2'
  1043. if hantsexa = 3:act 'Suck on':gt 'hantersex', 'sluthomeORAL3'
  1044. if hantsexa = 4:act 'Suck on':gt 'hantersex', 'sluthomeOralCum3'
  1045. if hantsexa = 5:act 'Panties':gt 'hantersex', 'sluthomeTanga'
  1046. end &! --- sluthomeORAL1 ---
  1047. if $ARGS[0] = 'sluthomeOralCum1':
  1048. gs 'cum_call', 'mouth', $boy, 1
  1049. swallow += 1
  1050. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoralcum1.jpg"></center>'
  1051. 'You stand a cancer before the guy put the dick to his lips...'
  1052. gs 'oral','start'
  1053. gs 'dinsex', 'dinrandswallow'
  1054. '<<$textsexhanter3>>'
  1055. gs 'arousal', 'bj', 5, 'sub', 'group'
  1056. gs 'arousal', 'end'
  1057. gs 'stat'
  1058. act 'Further':gt'swamphouse'
  1059. end &! --- sluthomeOralCum1 ---
  1060. if $ARGS[0] = 'sluthomeORAL2':
  1061. hantsexa = rand(1,4)
  1062. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoral2.'+rand(1,3)+'.jpg"></center>'
  1063. 'You, kneeling in front of the guy holding the cock against his lips...'
  1064. gs 'oral','start'
  1065. '<<$textsexhanter2>>'
  1066. gs 'arousal', 'bj', 5, 'sub', 'group'
  1067. gs 'stat'
  1068. if hantsexa = 1:act 'Suck on':gt 'hantersex', 'sluthomeOralCum2'
  1069. if hantsexa = 2:act 'Suck on':gt 'hantersex', 'sluthomeORAL3'
  1070. if hantsexa = 3:act 'Suck on':gt 'hantersex', 'sluthomeOralCum3'
  1071. if hantsexa = 4:act 'Panties':gt 'hantersex', 'sluthomeTanga'
  1072. end &! --- sluthomeORAL2 ---
  1073. if $ARGS[0] = 'sluthomeOralCum2':
  1074. gs 'cum_call', 'mouth', $boy, 1
  1075. swallow += 1
  1076. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoralcum2.jpg"></center>'
  1077. 'You, kneeling in front of the guy holding the cock against his lips...'
  1078. gs 'oral','start'
  1079. gs 'dinsex', 'dinrandswallow'
  1080. '<<$textsexhanter3>>'
  1081. gs 'arousal', 'bj', 5, 'sub'
  1082. gs 'arousal', 'end'
  1083. gs 'stat'
  1084. act 'Further':gt'swamphouse'
  1085. end &! --- sluthomeOralCum2 ---
  1086. if $ARGS[0] = 'sluthomeORAL3':
  1087. hantsexa = rand(1,2)
  1088. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoral3.'+rand(1,2)+'.jpg"></center>'
  1089. '<<$boydesc>> piled on you whole body, forcing him to throw back his head back and stood with the power to drive your <<dick>> cm dick, penetrating his throat.'
  1090. if dick > pcs_throat:'Immediately you wring the gag reflex and eyes Tekt tears.'
  1091. if dick < pcs_throat:'Fortunately the throat you have trained and you swallow a guy`s dick to the base without any difficulties.'
  1092. *pl
  1093. gs 'arousal', 'bj', 5, 'sub', 'deepthroat'
  1094. gs 'stat'
  1095. if hantsexa = 1:act 'Suck on':gt 'hantersex', 'sluthomeOralCum3'
  1096. if hantsexa = 2:act 'Panties':gt 'hantersex', 'sluthomeTanga'
  1097. end &! --- sluthomeORAL3 ---
  1098. if $ARGS[0] = 'sluthomeOralCum3':
  1099. gs 'cum_call', 'mouth', $boy, 1
  1100. swallow += 1
  1101. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoralcum3.jpg"></center>'
  1102. '<<$boydesc>> piled on you whole body, forcing him to throw back his head back and stood with the power to drive your <<dick>> cm dick penetrating his throat.'
  1103. if dick > pcs_throat:'Immediately you wring the gag reflex and eyes Tekt tears.'
  1104. if dick < pcs_throat:'Fortunately the throat you have trained and you swallow a guy`s dick to the base without any difficulties.'
  1105. '<<$boydesc>> he began to move faster and you realized that he was already on edge and ready to cum...'
  1106. gs 'dinsex', 'dinrandswallow'
  1107. '<<$textsexhanter3>>'
  1108. gs 'arousal', 'bj', 5, 'sub', 'rough', 'deepthroat'
  1109. gs 'arousal', 'end'
  1110. gs 'stat'
  1111. act 'Further':gt'swamphouse'
  1112. end &! --- sluthomeOralCum3 ---
  1113. if $ARGS[0] = 'sluthomeORAL4':
  1114. hantsexa = rand(1,7)
  1115. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoral4.'+rand(1,3)+'.jpg"></center>'
  1116. 'You, kneeling in front of the guy holding the cock against his lips...'
  1117. gs 'oral','start'
  1118. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20 & pcs_mood -= 5
  1119. '<<$textsexhanter2>>'
  1120. gs 'arousal', 'bj', 5, 'sub'
  1121. gs 'stat'
  1122. if pcs_health > 50 and hantsexa = 1:act 'Suck on':gt 'hantersex', 'sluthomeOralCum4'
  1123. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDog1'
  1124. if pcs_health > 50 and hantsexa = 3:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDogCum1'
  1125. if pcs_health > 50 and hantsexa = 4:act 'Sit down':gt 'hantersex', 'sluthomeAnalCow1'
  1126. if pcs_health > 50 and hantsexa = 5:act 'Sit down':gt 'hantersex', 'sluthomeAnalCowCum1'
  1127. if pcs_health > 50 and hantsexa = 6:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSide1'
  1128. if pcs_health > 50 and hantsexa = 7:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSideCum1'
  1129. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  1130. end &! --- sluthomeORAL4 ---
  1131. if $ARGS[0] = 'sluthomeOralCum4':
  1132. gs 'cum_call', 'mouth', $boy, 1
  1133. gs 'cum_call', 'face', $boy, 1
  1134. swallow += 1
  1135. gs 'cum_call', 'stomach', $boy, 1
  1136. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeoralcum4.'+rand(1,3)+'.jpg"></center>'
  1137. 'You are on your knees in front of the guy with his mouth open. <<$boydesc>> fiercely nadrachivat your <<dick>> member in front of your face...'
  1138. 'Soon a jet of sperm hits you in the mouth, her second and third. Sperm was too much. She runs down the chin, dripping down and staining your chest and stomach. <<$boydesc>> cleaned dick in his pants and went about their business, leaving you alone to freshen up.'
  1139. '<<$textsexhanter3>>'
  1140. gs 'arousal', 'bj', 5, 'sub'
  1141. gs 'arousal', 'end'
  1142. gs 'stat'
  1143. act 'Further':gt'swamphouse'
  1144. end &! --- sluthomeOralCum4 ---
  1145. if $ARGS[0] = 'sluthomeTanga':
  1146. gs 'underwear', 'remove'
  1147. hantsexa = rand(1,6)
  1148. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthometanga.jpg"></center>'
  1149. '- <<$pcs_nickname>>, let`s take off your panties - said <<$boydesc>> pervasis. - Proceed to the fun.'
  1150. 'You quickly sat down on the bed and pulled off the last piece of clothing. Seeing that the guy said..'
  1151. gs 'arousal', 'foreplay', 5, 'sub'
  1152. gs 'stat'
  1153. if pcs_health > 50 and hantsexa = 1:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDog1'
  1154. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDogCum1'
  1155. if pcs_health > 50 and hantsexa = 3:act 'Sit down':gt 'hantersex', 'sluthomeAnalCow1'
  1156. if pcs_health > 50 and hantsexa = 4:act 'Sit down':gt 'hantersex', 'sluthomeAnalCowCum1'
  1157. if pcs_health > 50 and hantsexa = 5:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSide1'
  1158. if pcs_health > 50 and hantsexa = 6:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSideCum1'
  1159. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  1160. end &! --- sluthomeTanga ---
  1161. if $ARGS[0] = 'sluthomeAnalDog1':
  1162. if boyAsexa = 0: boyAsexa = 1
  1163. hantsexa = rand(1,10)
  1164. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanaldog1.'+rand(1,2)+'.jpg"></center>'
  1165. '<<$boydesc>> puts you bent over the couch and begins to settle back...'
  1166. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1167. '<<$textsexhanter4>>'
  1168. gs 'arousal', 'anal', 5, 'sub'
  1169. gs 'stat'
  1170. dirty_dickA += 1
  1171. if pcs_health > 50 and hantsexa = 1:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDog2'
  1172. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDogCum2'
  1173. if pcs_health > 50 and hantsexa = 3:act 'Sit down':gt 'hantersex', 'sluthomeAnalCow1'
  1174. if pcs_health > 50 and hantsexa = 4:act 'Sit down':gt 'hantersex', 'sluthomeAnalCowCum1'
  1175. if pcs_health > 50 and hantsexa = 5:act 'Sit down':gt 'hantersex', 'sluthomeAnalCow2'
  1176. if pcs_health > 50 and hantsexa = 6:act 'Sit down':gt 'hantersex', 'sluthomeAnalCowCum2'
  1177. if pcs_health > 50 and hantsexa = 7:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSide1'
  1178. if pcs_health > 50 and hantsexa = 8:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSideCum1'
  1179. if pcs_health > 50 and hantsexa = 9:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSide2'
  1180. if pcs_health > 50 and hantsexa = 10:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSideCum2'
  1181. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  1182. end &! --- sluthomeAnalDog1 ---
  1183. if $ARGS[0] = 'sluthomeAnalDogCum1':
  1184. gs 'cum_call', 'anus', $boy, 1
  1185. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanaldogcum1.jpg"></center>'
  1186. 'You stand a cancer on the couch <<$boydesc>> to be attached behind...'
  1187. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1188. '<<$textsexhanter3>>'
  1189. gs 'arousal', 'anal', 5, 'sub'
  1190. gs 'arousal', 'end'
  1191. gs 'stat'
  1192. act 'Further':gt'swamphouse'
  1193. end &! --- sluthomeAnalDogCum1 ---
  1194. if $ARGS[0] = 'sluthomeAnalDog2':
  1195. if boyAsexa = 0: boyAsexa = 1
  1196. hantsexa = rand(1,5)
  1197. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanaldog2.'+rand(1,2)+'.jpg"></center>'
  1198. 'You stand a cancer on the couch, bending their own knees to <<$boydesc>> could go into your ass deeper...'
  1199. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1200. '<<$textsexhanter4>>'
  1201. gs 'arousal', 'anal', 5, 'sub'
  1202. gs 'stat'
  1203. dirty_dickA += 1
  1204. if pcs_health > 50 and hantsexa = 1:act 'Suck':gt 'hantersex', 'sluthomeORAL4'
  1205. if pcs_health > 50 and hantsexa = 3:act 'Sit down':gt 'hantersex', 'sluthomeAnalCow1'
  1206. if pcs_health > 50 and hantsexa = 4:act 'Sit down':gt 'hantersex', 'sluthomeAnalCowCum1'
  1207. if pcs_health > 50 and hantsexa = 5:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSide1'
  1208. if pcs_health > 50 and hantsexa = 6:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSideCum1'
  1209. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  1210. end &! --- sluthomeAnalDog2 ---
  1211. if $ARGS[0] = 'sluthomeAnalDogCum2':
  1212. gs 'cum_call', 'anus', $boy, 1
  1213. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanaldogcum2.jpg"></center>'
  1214. 'You stand a cancer on the couch, bending their own knees to <<$boydesc>> could go into your ass deeper...'
  1215. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1216. '<<$textsexhanter3>>'
  1217. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1218. gs 'arousal', 'end'
  1219. gs 'stat'
  1220. act 'Further': gt'swamphouse'
  1221. end &! --- sluthomeAnalDogCum2 ---
  1222. if $ARGS[0] = 'sluthomeAnalCow1':
  1223. if boyAsexa = 0: boyAsexa = 1
  1224. hantsexa = rand(1,10)
  1225. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalcow1.'+rand(1,3)+'.jpg"></center>'
  1226. '<<$boydesc>> he lies on his back, you climb on his back...'
  1227. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1228. '<<$textsexhanter4>>'
  1229. gs 'arousal', 'anal', 5, 'sub'
  1230. gs 'stat'
  1231. dirty_dickA += 1
  1232. if pcs_health > 50 and hantsexa = 1:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDog1'
  1233. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDogCum1'
  1234. if pcs_health > 50 and hantsexa = 3:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDog2'
  1235. if pcs_health > 50 and hantsexa = 4:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDogCum2'
  1236. if pcs_health > 50 and hantsexa = 5:act 'Sit down':gt 'hantersex', 'sluthomeAnalCow2'
  1237. if pcs_health > 50 and hantsexa = 6:act 'Sit down':gt 'hantersex', 'sluthomeAnalCowCum2'
  1238. if pcs_health > 50 and hantsexa = 7:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSide1'
  1239. if pcs_health > 50 and hantsexa = 8:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSideCum1'
  1240. if pcs_health > 50 and hantsexa = 9:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSide2'
  1241. if pcs_health > 50 and hantsexa = 10:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSideCum2'
  1242. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  1243. end &! --- sluthomeAnalCow1 ---
  1244. if $ARGS[0] = 'sluthomeAnalCowCum1':
  1245. minut += 5
  1246. gs 'cum_call', 'anus', $boy, 1
  1247. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalcowcum1.jpg"></center>'
  1248. '<<$boydesc>> he lies on his back, you climb on his back...'
  1249. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1250. '<<$textsexhanter3>>'
  1251. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1252. gs 'arousal', 'end'
  1253. gs 'stat'
  1254. act 'Further':gt'swamphouse'
  1255. end &! --- sluthomeAnalCowCum1 ---
  1256. if $ARGS[0] = 'sluthomeAnalCow2':
  1257. if boyAsexa = 0: boyAsexa = 1
  1258. hantsexa = rand(1,3)
  1259. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalcow2.'+rand(1,2)+'.jpg"></center>'
  1260. '<<$boydesc>> he lies on his back, you climb on his back, bent legs under him...'
  1261. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1262. '<<$textsexhanter4>>'
  1263. gs 'arousal', 'anal', 5, 'sub'
  1264. gs 'stat'
  1265. dirty_dickA += 1
  1266. if pcs_health > 50 and hantsexa = 1:act 'Suck':gt 'hantersex', 'sluthomeORAL4'
  1267. if pcs_health > 50 and hantsexa = 2:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSide1'
  1268. if pcs_health > 50 and hantsexa = 3:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSideCum1'
  1269. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  1270. end &! --- sluthomeAnalCow2 ---
  1271. if $ARGS[0] = 'sluthomeAnalCowCum2':
  1272. gs 'cum_call', 'anus', $boy, 1
  1273. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalcowcum2.jpg"></center>'
  1274. '<<$boydesc>> he lies on his back, you climb on his back, bent legs under him...'
  1275. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1276. '<<$textsexhanter3>>'
  1277. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1278. gs 'stat'
  1279. act 'Further':gt'swamphouse'
  1280. end &! --- sluthomeAnalCowCum2 ---
  1281. if $ARGS[0] = 'sluthomeAnalSide1':
  1282. pose = 0
  1283. if boyAsexa = 0: boyAsexa = 1
  1284. dirty_dickA += 1
  1285. hantsexa = rand(1,10)
  1286. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalside1.'+rand(1,2)+'.jpg"></center>'
  1287. '<<$boydesc>> puts you on the side, and he added a rear...'
  1288. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1289. '<<$textsexhanter4>>'
  1290. gs 'arousal', 'anal', 5, 'sub'
  1291. gs 'stat'
  1292. if pcs_health > 50 and hantsexa = 1:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDog1'
  1293. if pcs_health > 50 and hantsexa = 2:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDogCum1'
  1294. if pcs_health > 50 and hantsexa = 3:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDog2'
  1295. if pcs_health > 50 and hantsexa = 4:act 'Become doggy':gt 'hantersex', 'sluthomeAnalDogCum2'
  1296. if pcs_health > 50 and hantsexa = 5:act 'Sit down':gt 'hantersex', 'sluthomeAnalCow1'
  1297. if pcs_health > 50 and hantsexa = 6:act 'Sit down':gt 'hantersex', 'sluthomeAnalCowCum1'
  1298. if pcs_health > 50 and hantsexa = 7:act 'Sit down':gt 'hantersex', 'sluthomeAnalCow2'
  1299. if pcs_health > 50 and hantsexa = 8:act 'Sit down':gt 'hantersex', 'sluthomeAnalCowCum2'
  1300. if pcs_health > 50 and hantsexa = 9:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSide2'
  1301. if pcs_health > 50 and hantsexa = 10:act 'Lie on your side':gt 'hantersex', 'sluthomeAnalSideCum2'
  1302. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  1303. end &! --- sluthomeAnalSide1 ---
  1304. if $ARGS[0] = 'sluthomeAnalSideCum1':
  1305. gs 'cum_call', 'anus', $boy, 1
  1306. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalsidecum1.jpg"></center>'
  1307. '<<$boydesc>> puts you on the side, and he added a rear...'
  1308. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1309. '<<$textsexhanter3>>'
  1310. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1311. gs 'arousal', 'end'
  1312. gs 'stat'
  1313. act 'Further':gt'swamphouse'
  1314. end &! --- sluthomeAnalSideCum1 ---
  1315. if $ARGS[0] = 'sluthomeAnalSide2':
  1316. pose = 0
  1317. if boyAsexa = 0:boyAsexa = 1
  1318. hantsexa = rand(1,2)
  1319. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalside2.'+rand(1,2)+'.jpg"></center>'
  1320. 'You lie on your side, cocked his leg high up <<$boydesc>> perched in the back...'
  1321. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1322. '<<$textsexhanter4>>'
  1323. gs 'arousal', 'anal', 5, 'sub'
  1324. gs 'stat'
  1325. dirty_dickA += 1
  1326. if pcs_health > 50 and hantsexa = 1:act 'Suck':gt 'hantersex', 'sluthomeORAL4'
  1327. if pcs_health > 50 and hantsexa = 2:act 'Kneel':gt 'hantersex', 'sluthomeOralCum4'
  1328. if pcs_health <= 50:act 'To lose consciousness':gt 'hanters', 'hantersgroupfaint'
  1329. end &! --- sluthomeAnalSide2 ---
  1330. if $ARGS[0] = 'sluthomeAnalSideCum2':
  1331. gs 'cum_call', 'anus', $boy, 1
  1332. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/sluthomeanalsidecum2.jpg"></center>'
  1333. '<<$boydesc>> puts you on the side, and he added a rear...'
  1334. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  1335. '<<$textsexhanter3>>'
  1336. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1337. gs 'arousal', 'end'
  1338. gs 'stat'
  1339. act 'Further':gt'swamphouse'
  1340. end &! --- sluthomeAnalSideCum2 ---
  1341. if $ARGS[0] = 'hantersgrOasi':
  1342. minut += 5
  1343. pose = 0
  1344. pcs_horny += rand(10,20)
  1345. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/dancesexoasi1.'+rand(1,3)+'.jpg"></center>'
  1346. 'You began to suck around you guys, alternately paying attention to each member.'
  1347. gs 'boyStat', 'A172'
  1348. gs 'arousal', 'bj', 5, 'sub', 'deepthroat', 'gangbang'
  1349. gs 'boyStat', 'A174'
  1350. gs 'arousal', 'bj', 5, 'sub', 'deepthroat', 'gangbang'
  1351. gs 'boyStat', 'A173'
  1352. gs 'arousal', 'bj', 5, 'sub', 'deepthroat', 'gangbang'
  1353. *pl
  1354. gs 'stat'
  1355. hantsexa = rand(1,10)
  1356. hantsexb = rand(1,8)
  1357. if pcs_health > 50 and hantsexa = 1:act 'Suck on':gt 'hantersex', 'hantersgrOasi'
  1358. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOsi'
  1359. if pcs_health > 50 and hantsexa = 2 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOsi'
  1360. if pcs_health > 50 and hantsexa = 2 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVaO'
  1361. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOi'
  1362. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOai'
  1363. if pcs_health > 50 and hantsexa = 3 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsO'
  1364. if pcs_health > 50 and hantsexa = 3 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOai'
  1365. if pcs_health > 50 and hantsexa = 3 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOi'
  1366. if pcs_health > 50 and hantsexa = 4 and hantsexb <= 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViOas'
  1367. if pcs_health > 50 and hantsexa = 4 and hantsexb > 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViO'
  1368. if pcs_health > 50 and hantsexa = 5 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOia'
  1369. if pcs_health > 50 and hantsexa = 5 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOi1'
  1370. if pcs_health > 50 and hantsexa = 5 and hantsexb < 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOis'
  1371. if pcs_health > 50 and hantsexa = 6 and hantsexb = 5:act 'Sit down':gt 'hantersex', 'hantersgrVO'
  1372. if pcs_health > 50 and hantsexa = 6 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOs'
  1373. if pcs_health > 50 and hantsexa = 7 and hantsexb <= 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOsi'
  1374. if pcs_health > 50 and hantsexa = 7 and hantsexb > 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOs'
  1375. if pcs_health > 50 and hantsexa = 8 and hantsexb <= 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAiOs'
  1376. if pcs_health > 50 and hantsexa = 8 and hantsexb > 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAOs'
  1377. if pcs_health > 50 and hantsexa = 9 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiOsa'
  1378. if pcs_health > 50 and hantsexa = 9 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiO'
  1379. if pcs_health > 50 and hantsexa = 9 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAOsa'
  1380. if pcs_health > 50 and hantsexa = 10:act 'Lie on your back':gt 'hantersex', 'hantersgrO3'
  1381. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1382. end &! --- hantersgrOasi ---
  1383. if $ARGS[0] = 'hantersgrVaOsi':
  1384. pose = 0
  1385. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvaosi1.'+rand(1,2)+'.jpg"></center>'
  1386. 'Guys put you on the bed, Andrew started to settle down between his legs, and Igor and Sergei began over you to put their members in front of your face...'
  1387. gs 'boyStat', 'A174'
  1388. gs 'oral','start'
  1389. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1390. gs 'boyStat', 'A173'
  1391. gs 'oral','start'
  1392. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1393. gs 'boyStat', 'A172'
  1394. if boyAsex = 0: boyAsex = 1
  1395. *pl
  1396. gs 'arousal', 'bj', 5, 'sub', 'group'
  1397. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1398. minut -= 5
  1399. gs 'stat'
  1400. hantsexa = rand(2,10)
  1401. hantsexb = rand(1,8)
  1402. if pcs_health > 50 and hantsexa = 1:act 'Suck on':gt 'hantersex', 'hantersgrOasi'
  1403. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOsi'
  1404. if pcs_health > 50 and hantsexa = 2 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOsi'
  1405. if pcs_health > 50 and hantsexa = 2 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVaO'
  1406. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOi'
  1407. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOai'
  1408. if pcs_health > 50 and hantsexa = 3 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsO'
  1409. if pcs_health > 50 and hantsexa = 3 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOai'
  1410. if pcs_health > 50 and hantsexa = 3 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOi'
  1411. if pcs_health > 50 and hantsexa = 4 and hantsexb <= 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViOas'
  1412. if pcs_health > 50 and hantsexa = 4 and hantsexb > 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViO'
  1413. if pcs_health > 50 and hantsexa = 5 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOia'
  1414. if pcs_health > 50 and hantsexa = 5 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOi1'
  1415. if pcs_health > 50 and hantsexa = 5 and hantsexb < 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOis'
  1416. if pcs_health > 50 and hantsexa = 6 and hantsexb = 5:act 'Sit down':gt 'hantersex', 'hantersgrVO'
  1417. if pcs_health > 50 and hantsexa = 6 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOs'
  1418. if pcs_health > 50 and hantsexa = 7 and hantsexb <= 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOsi'
  1419. if pcs_health > 50 and hantsexa = 7 and hantsexb > 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOs'
  1420. if pcs_health > 50 and hantsexa = 8 and hantsexb <= 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAiOs'
  1421. if pcs_health > 50 and hantsexa = 8 and hantsexb > 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAOs'
  1422. if pcs_health > 50 and hantsexa = 9 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiOsa'
  1423. if pcs_health > 50 and hantsexa = 9 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiO'
  1424. if pcs_health > 50 and hantsexa = 9 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAOsa'
  1425. if pcs_health > 50 and hantsexa = 10:act 'Lie on your back':gt 'hantersex', 'hantersgrO3'
  1426. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1427. end &! --- hantersgrVaOsi ---
  1428. if $ARGS[0] = 'hantersgrVOsi':
  1429. pose = 0
  1430. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvosi.jpg"></center>'
  1431. 'Guys put you on the bed, Andrew started to settle down between his legs, and Igor and Sergei began over you to put their members in front of your face...'
  1432. gs 'boyStat', 'A174'
  1433. gs 'oral','start'
  1434. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1435. gs 'boyStat', 'A173'
  1436. gs 'oral','start'
  1437. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1438. gs 'boyStat', 'A172'
  1439. if boyAsex = 0: boyAsex = 1
  1440. gs 'dinsex', 'boy_puts_condom'
  1441. gs 'dinsex','vaginal_sex',10
  1442. gs 'dinsex','sexcum'
  1443. 'Andrew had finished and walked away.'
  1444. gs 'arousal', 'bj', 5, 'sub', 'group'
  1445. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1446. minut -= 5
  1447. gs 'stat'
  1448. hantsexa = rand(1,3)
  1449. hantsexb = rand(1,8)
  1450. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'hantersgr2VsO'
  1451. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AiOs'
  1452. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AiO'
  1453. if pcs_health > 50 and hantsexa = 2 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AOs'
  1454. if pcs_health > 50 and hantsexa = 3 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgr2AOi'
  1455. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgr2AsO'
  1456. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1457. end &! --- hantersgrVOsi ---
  1458. if $ARGS[0] = 'hantersgrVaO':
  1459. pose = 0
  1460. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvao.jpg"></center>'
  1461. 'Guys put you on the bed, Andrew started to settle down between his legs, and Igor and Sergei began over you to put their members in front of your face...'
  1462. gs 'boyStat', 'A174'
  1463. gs 'oral','start'
  1464. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1465. gs 'boyStat', 'A173'
  1466. gs 'oral','start'
  1467. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1468. gs 'boyStat', 'A172'
  1469. if boyAsex = 0: boyAsex = 1
  1470. gs 'dinsex','vaginal_sex',10
  1471. gs 'boyStat', 'A174'
  1472. swallow += 1
  1473. gs 'cum_call', 'mouth', $boy, 1
  1474. gs 'dinsex', 'dinrandswallow'
  1475. gs 'boyStat', 'A173'
  1476. swallow += 1
  1477. gs 'cum_call', 'mouth', $boy, 1
  1478. gs 'dinsex', 'dinrandswallow'
  1479. 'Sergei and Igor had finished and went to rest.'
  1480. gs 'arousal', 'bj', 5, 'sub', 'group'
  1481. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1482. minut -= 5
  1483. gs 'stat'
  1484. hantsexa = rand(1,3)
  1485. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'hantersgr1Va'
  1486. if pcs_health > 50 and hantsexa = 2:act 'Lie on your back':gt 'hantersex', 'hantersgrO1'
  1487. if pcs_health > 50 and hantsexa = 3:act 'Sit down':gt 'hantersex', 'hantersgr1Aa'
  1488. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1489. end &! --- hantersgrVaO ---
  1490. if $ARGS[0] = 'hantersgrVaOi':
  1491. pose = 0
  1492. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvaoi.jpg"></center>'
  1493. 'Guys put you on the bed, Andrew started to settle down between his legs, and Igor and Sergei began over you to put their members in front of your face...'
  1494. gs 'boyStat', 'A174'
  1495. gs 'oral','start'
  1496. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1497. gs 'boyStat', 'A173'
  1498. gs 'oral','start'
  1499. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1500. gs 'boyStat', 'A172'
  1501. if boyAsex = 0: boyAsex = 1
  1502. gs 'dinsex','vaginal_sex',10
  1503. gs 'boyStat', 'A174'
  1504. swallow += 1
  1505. gs 'cum_call', 'mouth', $boy, 1
  1506. gs 'dinsex', 'dinrandswallow'
  1507. 'Sergey came in and sat down, just watch'
  1508. gs 'arousal', 'bj', 5, 'sub', 'group'
  1509. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1510. minut -= 5
  1511. gs 'stat'
  1512. hantsexa = rand(1,3)
  1513. hantsexb = rand(1,8)
  1514. if pcs_health > 50 and hantsexa = 1 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VaOi'
  1515. if pcs_health > 50 and hantsexa = 1 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VO'
  1516. if pcs_health > 50 and hantsexa = 1 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VOi'
  1517. if pcs_health > 50 and hantsexa = 2 and hantsexb <= 4:act 'Be on all fours':gt 'hantersex', 'hantersgr2ViOa'
  1518. if pcs_health > 50 and hantsexa = 2 and hantsexb > 4:act 'Be on all fours':gt 'hantersex', 'hantersgr2ViO'
  1519. if pcs_health > 50 and hantsexa = 3:act 'Lie on your back':gt 'hantersex', 'hantersgrO2'
  1520. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1521. end &! --- hantersgrVaOi ---
  1522. if $ARGS[0] = 'hantersgrVsOai':
  1523. pose = 0
  1524. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvsoai1.'+rand(1,4)+'.jpg"></center>'
  1525. 'Guys put you on the bed. Sergei began to settle between his legs, and Igor and Andrey have become over you to put their members in front of your face...'
  1526. gs 'boyStat', 'A172'
  1527. gs 'oral','start'
  1528. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1529. gs 'boyStat', 'A173'
  1530. gs 'oral','start'
  1531. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1532. gs 'boyStat', 'A174'
  1533. if boyBsex = 0: boyBsex = 1
  1534. gs 'dinsex','vaginal_sex',10
  1535. *pl
  1536. gs 'arousal', 'bj', 5, 'sub', 'group'
  1537. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1538. minut -= 5
  1539. gs 'stat'
  1540. hantsexa = rand(2,10)
  1541. hantsexb = rand(1,8)
  1542. if pcs_health > 50 and hantsexa = 1:act 'Suck on':gt 'hantersex', 'hantersgrOasi'
  1543. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOsi'
  1544. if pcs_health > 50 and hantsexa = 2 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOsi'
  1545. if pcs_health > 50 and hantsexa = 2 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVaO'
  1546. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOi'
  1547. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOai'
  1548. if pcs_health > 50 and hantsexa = 3 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsO'
  1549. if pcs_health > 50 and hantsexa = 3 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOai'
  1550. if pcs_health > 50 and hantsexa = 3 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOi'
  1551. if pcs_health > 50 and hantsexa = 4 and hantsexb <= 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViOas'
  1552. if pcs_health > 50 and hantsexa = 4 and hantsexb > 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViO'
  1553. if pcs_health > 50 and hantsexa = 5 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOia'
  1554. if pcs_health > 50 and hantsexa = 5 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOi1'
  1555. if pcs_health > 50 and hantsexa = 5 and hantsexb < 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOis'
  1556. if pcs_health > 50 and hantsexa = 6 and hantsexb = 5:act 'Sit down':gt 'hantersex', 'hantersgrVO'
  1557. if pcs_health > 50 and hantsexa = 6 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOs'
  1558. if pcs_health > 50 and hantsexa = 7 and hantsexb <= 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOsi'
  1559. if pcs_health > 50 and hantsexa = 7 and hantsexb > 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOs'
  1560. if pcs_health > 50 and hantsexa = 8 and hantsexb <= 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAiOs'
  1561. if pcs_health > 50 and hantsexa = 8 and hantsexb > 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAOs'
  1562. if pcs_health > 50 and hantsexa = 9 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiOsa'
  1563. if pcs_health > 50 and hantsexa = 9 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiO'
  1564. if pcs_health > 50 and hantsexa = 9 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAOsa'
  1565. if pcs_health > 50 and hantsexa = 10:act 'Lie on your back':gt 'hantersex', 'hantersgrO3'
  1566. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1567. end &! --- hantersgrVsOai ---
  1568. if $ARGS[0] = 'hantersgrVOai':
  1569. pose = 0
  1570. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvoai.jpg"></center>'
  1571. 'Guys put you on the bed. Sergei began to settle between his legs, and Igor and Andrey have become over you to put their members in front of your face...'
  1572. gs 'boyStat', 'A172'
  1573. gs 'oral','start'
  1574. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1575. gs 'boyStat', 'A173'
  1576. gs 'oral','start'
  1577. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1578. gs 'boyStat', 'A174'
  1579. if boyBsex = 0: boyBsex = 1
  1580. gs 'dinsex', 'boy_puts_condom'
  1581. gs 'dinsex','vaginal_sex',10
  1582. gs 'dinsex','sexcum'
  1583. 'Sergei had finished and departed.'
  1584. gs 'arousal', 'bj', 5, 'sub', 'group'
  1585. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1586. minut -= 5
  1587. gs 'stat'
  1588. hantsexa = rand(1,3)
  1589. hantsexb = rand(1,8)
  1590. if pcs_health > 50 and hantsexa = 1 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VaOi'
  1591. if pcs_health > 50 and hantsexa = 1 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VO'
  1592. if pcs_health > 50 and hantsexa = 1 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VOi'
  1593. if pcs_health > 50 and hantsexa = 2 and hantsexb <= 4:act 'Be on all fours':gt 'hantersex', 'hantersgr2ViOa'
  1594. if pcs_health > 50 and hantsexa = 2 and hantsexb > 4:act 'Be on all fours':gt 'hantersex', 'hantersgr2ViO'
  1595. if pcs_health > 50 and hantsexa = 3:act 'Lie on your back':gt 'hantersex', 'hantersgrO2'
  1596. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1597. end &! --- hantersgrVOai ---
  1598. if $ARGS[0] = 'hantersgrVsOi':
  1599. pose = 0
  1600. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvsoi.jpg"></center>'
  1601. 'Guys put you on the bed. Sergei began to settle between his legs, and Igor and Andrey have become over you to put their members in front of your face...'
  1602. gs 'boyStat', 'A172'
  1603. gs 'oral','start'
  1604. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1605. gs 'boyStat', 'A173'
  1606. gs 'oral','start'
  1607. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1608. gs 'boyStat', 'A174'
  1609. if boyBsex = 0: boyBsex = 1
  1610. gs 'dinsex','vaginal_sex',10
  1611. gs 'boyStat', 'A172'
  1612. swallow += 1
  1613. gs 'cum_call', 'mouth', $boy, 1
  1614. gs 'dinsex', 'dinrandswallow'
  1615. 'Andrew had finished and went out for a smoke'
  1616. gs 'arousal', 'bj', 5, 'sub', 'group'
  1617. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1618. minut -= 5
  1619. gs 'stat'
  1620. hantsexa = rand(1,3)
  1621. hantsexb = rand(1,8)
  1622. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'hantersgr2VsO'
  1623. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AiOs'
  1624. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AiO'
  1625. if pcs_health > 50 and hantsexa = 2 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AOs'
  1626. if pcs_health > 50 and hantsexa = 3 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgr2AOi'
  1627. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgr2AsO'
  1628. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1629. end &! --- hantersgrVsOi ---
  1630. if $ARGS[0] = 'hantersgrVsO':
  1631. pose = 0
  1632. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvso.jpg"></center>'
  1633. 'Guys put you on the bed. Sergei began to settle between his legs, and Igor and Andrey have become over you to put their members in front of your face...'
  1634. gs 'boyStat', 'A172'
  1635. gs 'oral','start'
  1636. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1637. gs 'boyStat', 'A173'
  1638. gs 'oral','start'
  1639. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1640. gs 'boyStat', 'A174'
  1641. if boyBsex = 0: boyBsex = 1
  1642. gs 'dinsex','vaginal_sex',10
  1643. gs 'boyStat', 'A172'
  1644. swallow += 1
  1645. gs 'cum_call', 'mouth', $boy, 1
  1646. gs 'dinsex', 'dinrandswallow'
  1647. gs 'boyStat', 'A173'
  1648. swallow += 1
  1649. gs 'cum_call', 'mouth', $boy, 1
  1650. gs 'dinsex', 'dinrandswallow'
  1651. 'Sergei and Igor had finished and walked away.'
  1652. gs 'arousal', 'bj', 5, 'sub', 'group'
  1653. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1654. minut -= 5
  1655. gs 'arousal', 'end'
  1656. gs 'stat'
  1657. if pcs_health > 50:act 'Sit down':gt 'hantersex', 'hantersgr1As'
  1658. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1659. end &! --- hantersgrVsO ---
  1660. if $ARGS[0] = 'hantersgrViOas':
  1661. pose = 1
  1662. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvioas1.'+rand(1,4)+'.jpg"></center>'
  1663. 'You put on all fours. Igor began to be attached behind, and Sergei and Andrei stood before you to put their members in front of your face...'
  1664. gs 'boyStat', 'A172'
  1665. gs 'oral','start'
  1666. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1667. gs 'boyStat', 'A174'
  1668. gs 'oral','start'
  1669. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1670. gs 'boyStat', 'A173'
  1671. if boyCsex = 0: boyCsex = 1
  1672. gs 'dinsex','vaginal_sex',10
  1673. *pl
  1674. gs 'arousal', 'bj', 5, 'sub', 'group'
  1675. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1676. minut -= 5
  1677. gs 'stat'
  1678. hantsexa = rand(2,10)
  1679. hantsexb = rand(1,8)
  1680. if pcs_health > 50 and hantsexa = 1:act 'Suck on':gt 'hantersex', 'hantersgrOasi'
  1681. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOsi'
  1682. if pcs_health > 50 and hantsexa = 2 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOsi'
  1683. if pcs_health > 50 and hantsexa = 2 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVaO'
  1684. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOi'
  1685. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOai'
  1686. if pcs_health > 50 and hantsexa = 3 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsO'
  1687. if pcs_health > 50 and hantsexa = 3 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOai'
  1688. if pcs_health > 50 and hantsexa = 3 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOi'
  1689. if pcs_health > 50 and hantsexa = 4 and hantsexb <= 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViOas'
  1690. if pcs_health > 50 and hantsexa = 4 and hantsexb > 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViO'
  1691. if pcs_health > 50 and hantsexa = 5 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOia'
  1692. if pcs_health > 50 and hantsexa = 5 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOi1'
  1693. if pcs_health > 50 and hantsexa = 5 and hantsexb < 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOis'
  1694. if pcs_health > 50 and hantsexa = 6 and hantsexb = 5:act 'Sit down':gt 'hantersex', 'hantersgrVO'
  1695. if pcs_health > 50 and hantsexa = 6 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOs'
  1696. if pcs_health > 50 and hantsexa = 7 and hantsexb <= 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOsi'
  1697. if pcs_health > 50 and hantsexa = 7 and hantsexb > 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOs'
  1698. if pcs_health > 50 and hantsexa = 8 and hantsexb <= 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAiOs'
  1699. if pcs_health > 50 and hantsexa = 8 and hantsexb > 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAOs'
  1700. if pcs_health > 50 and hantsexa = 9 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiOsa'
  1701. if pcs_health > 50 and hantsexa = 9 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiO'
  1702. if pcs_health > 50 and hantsexa = 9 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAOsa'
  1703. if pcs_health > 50 and hantsexa = 10:act 'Lie on your back':gt 'hantersex', 'hantersgrO3'
  1704. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1705. end &! --- hantersgrViOas ---
  1706. if $ARGS[0] = 'hantersgrViO':
  1707. pose = 1
  1708. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvio.jpg"></center>'
  1709. 'You put on all fours. Igor began to be attached behind, and Sergei and Andrei stood before you to put their members in front of your face...'
  1710. gs 'boyStat', 'A172'
  1711. gs 'oral','start'
  1712. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1713. gs 'boyStat', 'A174'
  1714. gs 'oral','start'
  1715. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1716. gs 'boyStat', 'A173'
  1717. if boyCsex = 0: boyCsex = 1
  1718. gs 'dinsex','vaginal_sex',10
  1719. gs 'boyStat', 'A174'
  1720. swallow += 1
  1721. gs 'cum_call', 'mouth', $boy, 1
  1722. gs 'dinsex', 'dinrandswallow'
  1723. gs 'boyStat', 'A172'
  1724. swallow += 1
  1725. gs 'cum_call', 'mouth', $boy, 1
  1726. gs 'dinsex', 'dinrandswallow'
  1727. 'Andrei and Sergei came at the same time and sat down to rest'
  1728. gs 'arousal', 'bj', 5, 'sub', 'group'
  1729. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1730. minut -= 5
  1731. gs 'arousal', 'end'
  1732. gs 'stat'
  1733. if pcs_health > 50:act 'Lie on your back':gt 'hantersex', 'hantersgr1Ai'
  1734. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1735. end &! --- hantersgrViO ---
  1736. if $ARGS[0] = 'hantersgrVsOia':
  1737. pose = 1
  1738. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvsoia1.'+rand(1,3)+'.jpg"></center>'
  1739. 'Sergei sat on the bed, pulling you with him, and Igor and Andrew steel in front of you putting their Dicks in your face...'
  1740. gs 'boyStat', 'A172'
  1741. gs 'oral','start'
  1742. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1743. gs 'boyStat', 'A173'
  1744. gs 'oral','start'
  1745. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1746. gs 'boyStat', 'A174'
  1747. if boyBsex = 0: boyBsex = 1
  1748. gs 'dinsex','vaginal_sex',10
  1749. *pl
  1750. gs 'arousal', 'bj', 5, 'sub', 'group'
  1751. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1752. minut -= 5
  1753. gs 'stat'
  1754. hantsexa = rand(2,10)
  1755. hantsexb = rand(1,8)
  1756. if pcs_health > 50 and hantsexa = 1:act 'Suck on':gt 'hantersex', 'hantersgrOasi'
  1757. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOsi'
  1758. if pcs_health > 50 and hantsexa = 2 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOsi'
  1759. if pcs_health > 50 and hantsexa = 2 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVaO'
  1760. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOi'
  1761. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOai'
  1762. if pcs_health > 50 and hantsexa = 3 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsO'
  1763. if pcs_health > 50 and hantsexa = 3 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOai'
  1764. if pcs_health > 50 and hantsexa = 3 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOi'
  1765. if pcs_health > 50 and hantsexa = 4 and hantsexb <= 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViOas'
  1766. if pcs_health > 50 and hantsexa = 4 and hantsexb > 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViO'
  1767. if pcs_health > 50 and hantsexa = 5 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOia'
  1768. if pcs_health > 50 and hantsexa = 5 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOi1'
  1769. if pcs_health > 50 and hantsexa = 5 and hantsexb < 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOis'
  1770. if pcs_health > 50 and hantsexa = 6 and hantsexb = 5:act 'Sit down':gt 'hantersex', 'hantersgrVO'
  1771. if pcs_health > 50 and hantsexa = 6 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOs'
  1772. if pcs_health > 50 and hantsexa = 7 and hantsexb <= 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOsi'
  1773. if pcs_health > 50 and hantsexa = 7 and hantsexb > 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOs'
  1774. if pcs_health > 50 and hantsexa = 8 and hantsexb <= 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAiOs'
  1775. if pcs_health > 50 and hantsexa = 8 and hantsexb > 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAOs'
  1776. if pcs_health > 50 and hantsexa = 9 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiOsa'
  1777. if pcs_health > 50 and hantsexa = 9 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiO'
  1778. if pcs_health > 50 and hantsexa = 9 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAOsa'
  1779. if pcs_health > 50 and hantsexa = 10:act 'Lie on your back':gt 'hantersex', 'hantersgrO3'
  1780. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1781. end &! --- hantersgrVsOia ---
  1782. if $ARGS[0] = 'hantersgrVsOi1':
  1783. pose = 1
  1784. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvsoi1.1.jpg"></center>'
  1785. 'Sergei sat on the bed, pulling you with him, and Igor and Andrew steel in front of you putting their Dicks in your face...'
  1786. gs 'boyStat', 'A172'
  1787. gs 'oral','start'
  1788. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1789. gs 'boyStat', 'A173'
  1790. gs 'oral','start'
  1791. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1792. gs 'boyStat', 'A174'
  1793. if boyBsex = 0: boyBsex = 1
  1794. gs 'dinsex','vaginal_sex',10
  1795. gs 'boyStat', 'A172'
  1796. swallow += 1
  1797. gs 'cum_call', 'mouth', $boy, 1
  1798. gs 'dinsex', 'dinrandswallow'
  1799. 'Andrey has came and passed, and you continued with Sergei and Igor'
  1800. gs 'arousal', 'bj', 5, 'sub', 'group'
  1801. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1802. minut -= 5
  1803. gs 'stat'
  1804. hantsexa = rand(1,3)
  1805. hantsexb = rand(1,8)
  1806. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'hantersgr2VsO'
  1807. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AiOs'
  1808. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AiO'
  1809. if pcs_health > 50 and hantsexa = 2 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AOs'
  1810. if pcs_health > 50 and hantsexa = 3 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgr2AOi'
  1811. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgr2AsO'
  1812. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1813. end &! --- hantersgrVsOi1 ---
  1814. if $ARGS[0] = 'hantersgrVaOis':
  1815. pose = 1
  1816. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvaois1.'+rand(1,3)+'.jpg"></center>'
  1817. 'Andrew sat on the couch, pulling you with him, and Igor and Sergei perched next to you and putting their cocks in front of your face...'
  1818. gs 'boyStat', 'A174'
  1819. gs 'oral','start'
  1820. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1821. gs 'boyStat', 'A173'
  1822. gs 'oral','start'
  1823. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1824. gs 'boyStat', 'A172'
  1825. if boyAsex = 0: boyAsex = 1
  1826. gs 'dinsex','vaginal_sex',10
  1827. *pl
  1828. gs 'arousal', 'bj', 5, 'sub', 'group'
  1829. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1830. minut -= 5
  1831. gs 'stat'
  1832. hantsexa = rand(2,10)
  1833. hantsexb = rand(1,8)
  1834. if pcs_health > 50 and hantsexa = 1:act 'Suck on':gt 'hantersex', 'hantersgrOasi'
  1835. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOsi'
  1836. if pcs_health > 50 and hantsexa = 2 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOsi'
  1837. if pcs_health > 50 and hantsexa = 2 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVaO'
  1838. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOi'
  1839. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOai'
  1840. if pcs_health > 50 and hantsexa = 3 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsO'
  1841. if pcs_health > 50 and hantsexa = 3 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOai'
  1842. if pcs_health > 50 and hantsexa = 3 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOi'
  1843. if pcs_health > 50 and hantsexa = 4 and hantsexb <= 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViOas'
  1844. if pcs_health > 50 and hantsexa = 4 and hantsexb > 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViO'
  1845. if pcs_health > 50 and hantsexa = 5 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOia'
  1846. if pcs_health > 50 and hantsexa = 5 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOi1'
  1847. if pcs_health > 50 and hantsexa = 5 and hantsexb < 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOis'
  1848. if pcs_health > 50 and hantsexa = 6 and hantsexb = 5:act 'Sit down':gt 'hantersex', 'hantersgrVO'
  1849. if pcs_health > 50 and hantsexa = 6 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOs'
  1850. if pcs_health > 50 and hantsexa = 7 and hantsexb <= 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOsi'
  1851. if pcs_health > 50 and hantsexa = 7 and hantsexb > 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOs'
  1852. if pcs_health > 50 and hantsexa = 8 and hantsexb <= 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAiOs'
  1853. if pcs_health > 50 and hantsexa = 8 and hantsexb > 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAOs'
  1854. if pcs_health > 50 and hantsexa = 9 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiOsa'
  1855. if pcs_health > 50 and hantsexa = 9 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiO'
  1856. if pcs_health > 50 and hantsexa = 9 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAOsa'
  1857. if pcs_health > 50 and hantsexa = 10:act 'Lie on your back':gt 'hantersex', 'hantersgrO3'
  1858. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1859. end &! --- hantersgrVaOis ---
  1860. if $ARGS[0] = 'hantersgrVaOs':
  1861. pose = 1
  1862. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvaos.jpg"></center>'
  1863. 'Andrew sat on the couch, pulling you with him, and Igor and Sergei perched next to you and putting their cocks in front of your face...'
  1864. gs 'boyStat', 'A174'
  1865. gs 'oral','start'
  1866. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1867. gs 'boyStat', 'A173'
  1868. gs 'oral','start'
  1869. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1870. gs 'boyStat', 'A172'
  1871. if boyAsex = 0: boyAsex = 1
  1872. gs 'dinsex','vaginal_sex',10
  1873. gs 'boyStat', 'A173'
  1874. swallow += 1
  1875. gs 'cum_call', 'mouth', $boy, 1
  1876. gs 'dinsex', 'dinrandswallow'
  1877. 'Igor had finished and the blade on the side.'
  1878. gs 'arousal', 'bj', 5, 'sub', 'group'
  1879. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1880. minut -= 5
  1881. gs 'stat'
  1882. hantsexa = rand(1,2)
  1883. hantsexb = rand(1,8)
  1884. if pcs_health > 50 and hantsexa = 1 and hantsexb > 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaOs'
  1885. if pcs_health > 50 and hantsexa = 1 and hantsexb <= 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaO'
  1886. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaAs'
  1887. if pcs_health > 50 and hantsexa = 2 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaA'
  1888. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1889. end &! --- hantersgrVaOs ---
  1890. if $ARGS[0] = 'hantersgrVO':
  1891. pose = 1
  1892. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrvo.jpg"></center>'
  1893. 'Andrew sat on the couch, pulling you with him, and Igor and Sergei perched next to you and putting their cocks in front of your face...'
  1894. gs 'boyStat', 'A174'
  1895. gs 'oral','start'
  1896. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1897. gs 'boyStat', 'A173'
  1898. gs 'oral','start'
  1899. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1900. gs 'boyStat', 'A172'
  1901. if boyAsex = 0: boyAsex = 1
  1902. gs 'dinsex', 'boy_puts_condom'
  1903. gs 'dinsex','vaginal_sex',10
  1904. gs 'dinsex','sexcum'
  1905. gs 'boyStat', 'A173'
  1906. swallow += 1
  1907. gs 'cum_call', 'mouth', $boy, 1
  1908. gs 'dinsex', 'dinrandswallow'
  1909. gs 'boyStat', 'A174'
  1910. swallow += 1
  1911. gs 'cum_call', 'mouth', $boy, 1
  1912. gs 'dinsex', 'dinrandswallow'
  1913. 'The guys finished and immediately fell asleep.'
  1914. gs 'arousal', 'bj', 5, 'sub', 'group'
  1915. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1916. minut -= 5
  1917. gs 'arousal', 'end'
  1918. gs 'stat'
  1919. act 'Pass out': gt 'hantersex', 'hantersGrEnd'
  1920. end &! --- hantersgrVO ---
  1921. if $ARGS[0] = 'hantersgrV2aOsi':
  1922. pose = 1
  1923. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrv2aosi1.'+rand(1,3)+'.jpg"></center>'
  1924. 'Andrew put you to the side and began to settle between his legs, and Igor and Sergei stood before you to put their Dicks in the face...'
  1925. gs 'boyStat', 'A174'
  1926. gs 'oral','start'
  1927. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1928. gs 'boyStat', 'A173'
  1929. gs 'oral','start'
  1930. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1931. gs 'boyStat', 'A172'
  1932. if boyAsex = 0: boyAsex = 1
  1933. gs 'dinsex','vaginal_sex',10
  1934. *pl
  1935. gs 'arousal', 'bj', 5, 'sub', 'group'
  1936. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1937. minut -= 5
  1938. gs 'stat'
  1939. hantsexa = rand(2,10)
  1940. hantsexb = rand(1,8)
  1941. if pcs_health > 50 and hantsexa = 1:act 'Suck on':gt 'hantersex', 'hantersgrOasi'
  1942. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOsi'
  1943. if pcs_health > 50 and hantsexa = 2 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOsi'
  1944. if pcs_health > 50 and hantsexa = 2 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVaO'
  1945. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOi'
  1946. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOai'
  1947. if pcs_health > 50 and hantsexa = 3 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsO'
  1948. if pcs_health > 50 and hantsexa = 3 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOai'
  1949. if pcs_health > 50 and hantsexa = 3 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOi'
  1950. if pcs_health > 50 and hantsexa = 4 and hantsexb <= 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViOas'
  1951. if pcs_health > 50 and hantsexa = 4 and hantsexb > 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViO'
  1952. if pcs_health > 50 and hantsexa = 5 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOia'
  1953. if pcs_health > 50 and hantsexa = 5 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOi1'
  1954. if pcs_health > 50 and hantsexa = 5 and hantsexb < 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOis'
  1955. if pcs_health > 50 and hantsexa = 6 and hantsexb = 5:act 'Sit down':gt 'hantersex', 'hantersgrVO'
  1956. if pcs_health > 50 and hantsexa = 6 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOs'
  1957. if pcs_health > 50 and hantsexa = 7 and hantsexb <= 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOsi'
  1958. if pcs_health > 50 and hantsexa = 7 and hantsexb > 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOs'
  1959. if pcs_health > 50 and hantsexa = 8 and hantsexb <= 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAiOs'
  1960. if pcs_health > 50 and hantsexa = 8 and hantsexb > 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAOs'
  1961. if pcs_health > 50 and hantsexa = 9 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiOsa'
  1962. if pcs_health > 50 and hantsexa = 9 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiO'
  1963. if pcs_health > 50 and hantsexa = 9 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAOsa'
  1964. if pcs_health > 50 and hantsexa = 10:act 'Lie on your back':gt 'hantersex', 'hantersgrO3'
  1965. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1966. end &! --- hantersgrV2aOsi ---
  1967. if $ARGS[0] = 'hantersgrV2aOs':
  1968. pose = 1
  1969. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrv2aos.jpg"></center>'
  1970. 'Andrew put you to the side and began to settle between his legs, and Igor and Sergei stood before you to put their Dicks in the face...'
  1971. gs 'boyStat', 'A174'
  1972. gs 'oral','start'
  1973. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1974. gs 'boyStat', 'A173'
  1975. gs 'oral','start'
  1976. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1977. gs 'boyStat', 'A172'
  1978. if boyAsex = 0: boyAsex = 1
  1979. gs 'dinsex','vaginal_sex',10
  1980. gs 'boyStat', 'A173'
  1981. gs 'dinsex', 'dinrandswallow'
  1982. 'Igor came and went for a smoke.'
  1983. gs 'arousal', 'bj', 5, 'sub', 'group'
  1984. gs 'arousal', 'vaginal', 5, 'sub', 'group', 'rough'
  1985. minut -= 5
  1986. gs 'stat'
  1987. hantsexa = rand(1,2)
  1988. hantsexb = rand(1,8)
  1989. if pcs_health > 50 and hantsexa = 1 and hantsexb > 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaOs'
  1990. if pcs_health > 50 and hantsexa = 1 and hantsexb <= 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaO'
  1991. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaAs'
  1992. if pcs_health > 50 and hantsexa = 2 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaA'
  1993. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  1994. end &! --- hantersgrV2aOs ---
  1995. if $ARGS[0] = 'hantersgrDPVaAiOs':
  1996. pose = 1
  1997. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrdpvaaios1.'+rand(1,2)+'.jpg"></center>'
  1998. gs 'boyStat', 'A174'
  1999. gs 'oral','start'
  2000. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2001. gs 'boyStat', 'A172','a'
  2002. gs 'boyStat', 'A173','b'
  2003. if boyAsex = 0: boyAsex = 1
  2004. if boyCsexa = 0: boyCsexa = 1
  2005. dirty_dickC += 1
  2006. gs 'dinSex','boy_wants_anal',$boydesc2,'lubri'
  2007. gs 'arousal','bj',10,'gangbang','deepthroat'
  2008. 'Andrew lay on the couch, pulling you with him, Igor began to be attached to your second hole, you just have to relax and suck the dick of Sergei...'
  2009. gs 'dinsex2','doublepenetration',10,'sub','gangbang'
  2010. minut -=10
  2011. *pl
  2012. gs 'stat'
  2013. hantsexa = rand(2,10)
  2014. hantsexb = rand(1,8)
  2015. if pcs_health > 50 and hantsexa = 1:act 'Suck on':gt 'hantersex', 'hantersgrOasi'
  2016. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOsi'
  2017. if pcs_health > 50 and hantsexa = 2 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOsi'
  2018. if pcs_health > 50 and hantsexa = 2 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVaO'
  2019. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOi'
  2020. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOai'
  2021. if pcs_health > 50 and hantsexa = 3 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsO'
  2022. if pcs_health > 50 and hantsexa = 3 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOai'
  2023. if pcs_health > 50 and hantsexa = 3 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOi'
  2024. if pcs_health > 50 and hantsexa = 4 and hantsexb <= 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViOas'
  2025. if pcs_health > 50 and hantsexa = 4 and hantsexb > 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViO'
  2026. if pcs_health > 50 and hantsexa = 5 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOia'
  2027. if pcs_health > 50 and hantsexa = 5 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOi1'
  2028. if pcs_health > 50 and hantsexa = 5 and hantsexb < 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOis'
  2029. if pcs_health > 50 and hantsexa = 6 and hantsexb = 5:act 'Sit down':gt 'hantersex', 'hantersgrVO'
  2030. if pcs_health > 50 and hantsexa = 6 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOs'
  2031. if pcs_health > 50 and hantsexa = 7 and hantsexb <= 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOsi'
  2032. if pcs_health > 50 and hantsexa = 7 and hantsexb > 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOs'
  2033. if pcs_health > 50 and hantsexa = 8 and hantsexb <= 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAiOs'
  2034. if pcs_health > 50 and hantsexa = 8 and hantsexb > 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAOs'
  2035. if pcs_health > 50 and hantsexa = 9 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiOsa'
  2036. if pcs_health > 50 and hantsexa = 9 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiO'
  2037. if pcs_health > 50 and hantsexa = 9 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAOsa'
  2038. if pcs_health > 50 and hantsexa = 10:act 'Lie on your back':gt 'hantersex', 'hantersgrO3'
  2039. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2040. end &! --- hantersgrDPVaAiOs ---
  2041. if $ARGS[0] = 'hantersgrDPVaAOs':
  2042. pose = 1
  2043. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgrdpvaaos.jpg"></center>'
  2044. 'Andrew lay on the couch, pulling you with him, Igor began to be attached to your second hole, you just have to relax and suck the dick of Sergei...'
  2045. gs 'boyStat', 'A174'
  2046. gs 'oral','start'
  2047. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2048. gs 'boyStat', 'A172', 'a'
  2049. gs 'boyStat', 'A173', 'b'
  2050. if boyAsex = 0: boyAsex = 1
  2051. if boyCsexa = 0: boyCsexa = 1
  2052. gs 'dinSex','boy_wants_anal',$boydesc2,'lubri'
  2053. gs 'arousal','bj',10,'gangbang','deepthroat'
  2054. gs 'dinsex2','doublepenetration',10,'sub','gangbang'
  2055. gs 'cum_call', 'anus', $boy, 1
  2056. 'After a while <<$boydesc2>> moaned and you felt like your ass fills with heat. He finished and went outside.'
  2057. gs 'stat'
  2058. hantsexa = rand(1,2)
  2059. hantsexb = rand(1,8)
  2060. if pcs_health > 50 and hantsexa = 1 and hantsexb > 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaOs'
  2061. if pcs_health > 50 and hantsexa = 1 and hantsexb <= 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaO'
  2062. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaAs'
  2063. if pcs_health > 50 and hantsexa = 2 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaA'
  2064. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2065. end &! --- hantersgrDPVaAOs ---
  2066. if $ARGS[0] = 'hantersgrAiOsa':
  2067. minut += 5
  2068. pose = 0
  2069. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgraiosa.jpg"></center>'
  2070. 'Guys put you on your back, Igor you with his feet, began to settle down to your ass, and Andrei and Sergei became over you to put their members in front of your face...'
  2071. gs 'boyStat', 'A174'
  2072. gs 'oral','start'
  2073. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2074. gs 'boyStat', 'A172'
  2075. gs 'oral','start'
  2076. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2077. gs 'boyStat', 'A173'
  2078. if boyCsexa = 0: boyCsexa = 1
  2079. dirty_dickC += 1
  2080. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  2081. *pl
  2082. gs 'arousal', 'anal', 5, 'sub', 'group'
  2083. gs 'arousal', 'bj', 5, 'sub', 'group'
  2084. minut -= 5
  2085. gs 'stat'
  2086. hantsexa = rand(2,10)
  2087. hantsexb = rand(1,8)
  2088. if pcs_health > 50 and hantsexa = 1:act 'Suck on':gt 'hantersex', 'hantersgrOasi'
  2089. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOsi'
  2090. if pcs_health > 50 and hantsexa = 2 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOsi'
  2091. if pcs_health > 50 and hantsexa = 2 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVaO'
  2092. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVaOi'
  2093. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOai'
  2094. if pcs_health > 50 and hantsexa = 3 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrVsO'
  2095. if pcs_health > 50 and hantsexa = 3 and hantsexb < 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVOai'
  2096. if pcs_health > 50 and hantsexa = 3 and hantsexb = 4:act 'Lie on your back':gt 'hantersex', 'hantersgrVsOi'
  2097. if pcs_health > 50 and hantsexa = 4 and hantsexb <= 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViOas'
  2098. if pcs_health > 50 and hantsexa = 4 and hantsexb > 5:act 'Be on all fours':gt 'hantersex', 'hantersgrViO'
  2099. if pcs_health > 50 and hantsexa = 5 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOia'
  2100. if pcs_health > 50 and hantsexa = 5 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVsOi1'
  2101. if pcs_health > 50 and hantsexa = 5 and hantsexb < 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOis'
  2102. if pcs_health > 50 and hantsexa = 6 and hantsexb = 5:act 'Sit down':gt 'hantersex', 'hantersgrVO'
  2103. if pcs_health > 50 and hantsexa = 6 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgrVaOs'
  2104. if pcs_health > 50 and hantsexa = 7 and hantsexb <= 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOsi'
  2105. if pcs_health > 50 and hantsexa = 7 and hantsexb > 5:act 'Lie on your side':gt 'hantersex', 'hantersgrV2aOs'
  2106. if pcs_health > 50 and hantsexa = 8 and hantsexb <= 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAiOs'
  2107. if pcs_health > 50 and hantsexa = 8 and hantsexb > 4:act 'Sit down':gt 'hantersex', 'hantersgrDPVaAOs'
  2108. if pcs_health > 50 and hantsexa = 9 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiOsa'
  2109. if pcs_health > 50 and hantsexa = 9 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAiO'
  2110. if pcs_health > 50 and hantsexa = 9 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgrAOsa'
  2111. if pcs_health > 50 and hantsexa = 10:act 'Lie on your back':gt 'hantersex', 'hantersgrO3'
  2112. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2113. end &! --- hantersgrAiOsa ---
  2114. if $ARGS[0] = 'hantersgrAiO':
  2115. pose = 0
  2116. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgraio.jpg"></center>'
  2117. 'Guys put you on your back, Igor you with his feet, began to settle down to your ass, and Andrei and Sergei became over you to put their members in front of your face...'
  2118. gs 'boyStat', 'A174'
  2119. gs 'oral','start'
  2120. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2121. gs 'boyStat', 'A172'
  2122. gs 'oral','start'
  2123. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2124. gs 'boyStat', 'A173'
  2125. if boyCsexa = 0: boyCsexa = 1
  2126. dirty_dickC += 1
  2127. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  2128. gs 'boyStat', 'A172'
  2129. swallow += 1
  2130. gs 'cum_call', 'mouth', $boy, 1
  2131. gs 'dinsex', 'dinrandswallow'
  2132. gs 'boyStat', 'A174'
  2133. swallow += 1
  2134. gs 'cum_call', 'mouth', $boy, 1
  2135. gs 'dinsex', 'dinrandswallow'
  2136. 'Andrei and Sergei came and went at the table.'
  2137. gs 'arousal', 'anal', 5, 'sub', 'group'
  2138. gs 'arousal', 'bj', 5, 'sub', 'group'
  2139. minut -= 5
  2140. gs 'stat'
  2141. if pcs_health > 50:act 'Lie on your back':gt 'hantersex', 'hantersgr1Ai'
  2142. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2143. end &! --- hantersgrAiO ---
  2144. if $ARGS[0] = 'hantersgrO3':
  2145. minut += 1
  2146. pose = 0
  2147. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgro3.'+rand(1,4)+'.jpg"></center>'
  2148. 'Guys put you on your back, and themselves hanging over you. They began to masturbate in front of your face, sometimes inserting the member into your mouth, and you understand that they will soon run out...'
  2149. act 'Wait':
  2150. *clr & cla
  2151. minut += 1
  2152. pose = 0
  2153. gs 'cum_call', 'face', $boy, 1
  2154. gs 'cum_call', 'stomach', $boy, 1
  2155. gs 'cum_call', 'mouth', $boy, 1
  2156. swallow += 1
  2157. gs 'stat'
  2158. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgro3cum1.'+rand(1,6)+'.jpg"></center>'
  2159. 'Finally guys started to cum, jets of sperm struck your face, hit you in the mouth and on the body is also a little came...'
  2160. if hantersexnude = 0:act 'Pass out': gt 'hantersex', 'hantersGrEnd'
  2161. if hantersexnude = 1:act 'Further': hantersexnude = 0 & gt'swamphouse'
  2162. end
  2163. end &! --- hantersgrO3 ---
  2164. if $ARGS[0] = 'hantersgrAOsa':
  2165. pose = 0
  2166. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgraosa.jpg"></center>'
  2167. 'Guys put you on your back, Igor you with his feet, began to settle down to your ass, and Andrei and Sergei became over you to put their members in front of your face...'
  2168. gs 'boyStat', 'A174'
  2169. gs 'oral','start'
  2170. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2171. gs 'boyStat', 'A172'
  2172. gs 'oral','start'
  2173. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2174. gs 'boyStat', 'A173'
  2175. if boyCsexa = 0: boyCsexa = 1
  2176. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  2177. lubonus += 2
  2178. 'Igor came and went at the table.'
  2179. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  2180. gs 'arousal', 'bj', 5, 'sub', 'group'
  2181. minut -= 5
  2182. gs 'stat'
  2183. hantsexa = rand(1,2)
  2184. hantsexb = rand(1,8)
  2185. if pcs_health > 50 and hantsexa = 1 and hantsexb > 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaOs'
  2186. if pcs_health > 50 and hantsexa = 1 and hantsexb <= 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaO'
  2187. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaAs'
  2188. if pcs_health > 50 and hantsexa = 2 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaA'
  2189. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2190. end &! --- hantersgrAOsa ---
  2191. if $ARGS[0] = 'hantersgr2VaOi':
  2192. pose = 0
  2193. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vaoi.jpg"></center>'
  2194. 'Guys put you on the bed, Andrew started to settle down between his legs, and Igor became over you putting your dick in front of your face. Ended earlier, Sergei just watches with interest...'
  2195. gs 'boyStat', 'A173'
  2196. gs 'oral','start'
  2197. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2198. gs 'boyStat', 'A172'
  2199. if boyAsex = 0: boyAsex = 1
  2200. gs 'dinsex','vaginal_sex',10
  2201. *pl
  2202. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  2203. gs 'arousal', 'bj', 5, 'sub', 'group'
  2204. minut -= 5
  2205. gs 'stat'
  2206. hantsexa = rand(1,3)
  2207. hantsexb = rand(1,8)
  2208. if pcs_health > 50 and hantsexa = 1 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VaOi'
  2209. if pcs_health > 50 and hantsexa = 1 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VO'
  2210. if pcs_health > 50 and hantsexa = 1 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VOi'
  2211. if pcs_health > 50 and hantsexa = 2 and hantsexb <= 4:act 'Be on all fours':gt 'hantersex', 'hantersgr2ViOa'
  2212. if pcs_health > 50 and hantsexa = 2 and hantsexb > 4:act 'Be on all fours':gt 'hantersex', 'hantersgr2ViO'
  2213. if pcs_health > 50 and hantsexa = 3:act 'Lie on your back':gt 'hantersex', 'hantersgrO2'
  2214. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2215. end &! --- hantersgr2VaOi ---
  2216. if $ARGS[0] = 'hantersgr2VOi':
  2217. pose = 0
  2218. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2voi.jpg"></center>'
  2219. 'Guys put you on the bed, Andrew started to settle down between his legs, and Igor became over you putting your dick in front of your face. Ended earlier, Sergei just watches with interest...'
  2220. gs 'boyStat', 'A173'
  2221. gs 'oral','start'
  2222. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2223. gs 'boyStat', 'A172'
  2224. if boyAsex = 0: boyAsex = 1
  2225. gs 'dinsex', 'boy_puts_condom'
  2226. gs 'dinsex','vaginal_sex',10
  2227. gs 'dinsex','sexcum'
  2228. 'Andrey has came and went'
  2229. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  2230. gs 'arousal', 'bj', 5, 'sub', 'group'
  2231. minut -= 5
  2232. gs 'stat'
  2233. if pcs_health > 50:act 'Lie on your back':gt 'hantersex', 'hantersgr1Ai'
  2234. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2235. end &! --- hantersgr2VOi ---
  2236. if $ARGS[0] = 'hantersgr2VO':
  2237. pose = 0
  2238. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vo.jpg"></center>'
  2239. 'Guys put you on the bed, Andrew started to settle down between his legs, and Igor became over you putting your dick in front of your face.Ended earlier, Sergei just watches with interest...'
  2240. gs 'boyStat', 'A173'
  2241. gs 'oral','start'
  2242. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2243. gs 'boyStat', 'A172'
  2244. if boyAsex = 0: boyAsex = 1
  2245. gs 'dinsex', 'boy_puts_condom'
  2246. gs 'dinsex','vaginal_sex',10
  2247. gs 'dinsex','sexcum'
  2248. gs 'boyStat', 'A173'
  2249. swallow += 1
  2250. gs 'cum_call', 'mouth', $boy, 1
  2251. gs 'dinsex', 'dinrandswallow'
  2252. 'Guys came and went all together at the table.'
  2253. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  2254. gs 'arousal', 'bj', 5, 'sub', 'group'
  2255. minut -= 5
  2256. gs 'stat'
  2257. act 'Pass out': gt 'hantersex', 'hantersGrEnd'
  2258. end &! --- hantersgr2VO ---
  2259. if $ARGS[0] = 'hantersgr2ViOa':
  2260. pose = 1
  2261. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vioa1.'+rand(1,2)+'.jpg"></center>'
  2262. 'You put on all fours. Igor began to settle back, and Andrew was in front of you put their dick in your face. Sergei with interest...'
  2263. gs 'boyStat', 'A172'
  2264. gs 'oral','start'
  2265. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2266. gs 'boyStat', 'A173'
  2267. if boyCsex = 0: boyCsex = 1
  2268. gs 'dinsex','vaginal_sex',10
  2269. *pl
  2270. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  2271. gs 'arousal', 'bj', 5, 'sub', 'group'
  2272. minut -= 5
  2273. gs 'stat'
  2274. hantsexa = rand(1,3)
  2275. hantsexb = rand(1,8)
  2276. if pcs_health > 50 and hantsexa = 1 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VaOi'
  2277. if pcs_health > 50 and hantsexa = 1 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VO'
  2278. if pcs_health > 50 and hantsexa = 1 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2VOi'
  2279. if pcs_health > 50 and hantsexa = 2 and hantsexb <= 4:act 'Be on all fours':gt 'hantersex', 'hantersgr2ViOa'
  2280. if pcs_health > 50 and hantsexa = 2 and hantsexb > 4:act 'Be on all fours':gt 'hantersex', 'hantersgr2ViO'
  2281. if pcs_health > 50 and hantsexa = 3:act 'Lie on your back':gt 'hantersex', 'hantersgrO2'
  2282. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2283. end &! --- hantersgr2ViOa ---
  2284. if $ARGS[0] = 'hantersgr2ViO':
  2285. pose = 1
  2286. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vio.jpg"></center>'
  2287. 'You put on all fours. Igor began to settle back, and Andrew was in front of you put their dick in your face. Sergei with interest...'
  2288. gs 'boyStat', 'A172'
  2289. gs 'oral','start'
  2290. if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2291. gs 'boyStat', 'A173'
  2292. if boyCsex = 0: boyCsex = 1
  2293. gs 'dinsex','vaginal_sex',10
  2294. gs 'boyStat', 'A172'
  2295. swallow += 1
  2296. gs 'cum_call', 'mouth', $boy, 1
  2297. gs 'dinsex', 'dinrandswallow'
  2298. 'Andrew had finished and walked away, and you continued with Igor.'
  2299. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  2300. gs 'arousal', 'bj', 5, 'sub', 'group'
  2301. minut -= 5
  2302. gs 'stat'
  2303. if pcs_health > 50:act 'Lie on your back':gt 'hantersex', 'hantersgr1Ai'
  2304. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2305. end &! --- hantersgr2ViO ---
  2306. if $ARGS[0] = 'hantersgr2VsO':
  2307. pose = 1
  2308. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vso.jpg"></center>'
  2309. 'Sergei sat on the bed, pulling you with him, and Igor was in front of you putting a dick in your face...'
  2310. gs 'boyStat', 'A173'
  2311. gs 'oral','start'
  2312. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2313. gs 'boyStat', 'A174'
  2314. if boyBsex = 0: boyBsex = 1
  2315. gs 'dinsex','vaginal_sex',10
  2316. gs 'boyStat', 'A173'
  2317. swallow += 1
  2318. gs 'cum_call', 'mouth', $boy, 1
  2319. gs 'dinsex', 'dinrandswallow'
  2320. 'Igor had finished and passed out, and you continued with Sergei.'
  2321. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  2322. gs 'arousal', 'bj', 5, 'sub', 'group'
  2323. minut -= 5
  2324. gs 'stat'
  2325. if pcs_health > 50:act 'Sit down':gt 'hantersex', 'hantersgr1As'
  2326. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2327. end &! --- hantersgr2VsO ---
  2328. if $ARGS[0] = 'hantersgr2VaOs':
  2329. pose = 1
  2330. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vaos.jpg"></center>'
  2331. 'Andrew put you to the side and began to settle between his legs, and Sergei was in front of you putting a dick in your face...'
  2332. gs 'boyStat', 'A174'
  2333. gs 'oral','start'
  2334. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2335. gs 'boyStat', 'A172'
  2336. if boyAsex = 0: boyAsex = 1
  2337. gs 'dinsex','vaginal_sex',10
  2338. *pl
  2339. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  2340. gs 'arousal', 'bj', 5, 'sub', 'group'
  2341. minut -= 5
  2342. gs 'stat'
  2343. hantsexa = rand(1,2)
  2344. hantsexb = rand(1,8)
  2345. if pcs_health > 50 and hantsexa = 1 and hantsexb > 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaOs'
  2346. if pcs_health > 50 and hantsexa = 1 and hantsexb <= 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaO'
  2347. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaAs'
  2348. if pcs_health > 50 and hantsexa = 2 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaA'
  2349. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2350. end &! --- hantersgr2VaOs ---
  2351. if $ARGS[0] = 'hantersgr2VaO':
  2352. pose = 1
  2353. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2vao.jpg"></center>'
  2354. 'Andrew put you to the side and began to settle between his legs, and Sergei was in front of you putting a dick in your face...'
  2355. gs 'boyStat', 'A174'
  2356. gs 'oral','start'
  2357. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2358. gs 'boyStat', 'A172'
  2359. if boyAsex = 0: boyAsex = 1
  2360. gs 'dinsex','vaginal_sex',10
  2361. gs 'boyStat', 'A174'
  2362. swallow += 1
  2363. gs 'cum_call', 'face', $boy, 1
  2364. gs 'cum_call', 'mouth', $boy, 1
  2365. gs 'dinsex', 'dinrandswallow'
  2366. 'Sergei had finished and moved aside, you continued with Andrew.'
  2367. gs 'arousal', 'vaginal', 5, 'sub', 'group'
  2368. gs 'arousal', 'bj', 5, 'sub', 'group'
  2369. minut -= 5
  2370. gs 'stat'
  2371. hantsexa = rand(1,3)
  2372. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'hantersgr1Va'
  2373. if pcs_health > 50 and hantsexa = 2:act 'Lie on your back':gt 'hantersex', 'hantersgrO1'
  2374. if pcs_health > 50 and hantsexa = 3:act 'Sit down':gt 'hantersex', 'hantersgr1Aa'
  2375. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2376. end &! --- hantersgr2VaO ---
  2377. if $ARGS[0] = 'hantersgr2AiOs':
  2378. pose = 0
  2379. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2aios.jpg"></center>'
  2380. 'Guys put you on your back, Igor you with his feet, began to settle down to your ass, and Sergei was over you putting your dick in front of your face...'
  2381. gs 'boyStat', 'A174'
  2382. gs 'oral','start'
  2383. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2384. gs 'boyStat', 'A173'
  2385. if boyCsexa = 0: boyCsexa = 1
  2386. dirty_dickC += 1
  2387. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  2388. *pl
  2389. gs 'arousal', 'anal', 5, 'sub', 'group'
  2390. gs 'arousal', 'bj', 5, 'sub', 'group'
  2391. minut -= 5
  2392. gs 'stat'
  2393. hantsexa = rand(1,3)
  2394. hantsexb = rand(1,8)
  2395. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'hantersgr2VsO'
  2396. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AiOs'
  2397. if pcs_health > 50 and hantsexa = 2 and hantsexb = 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AiO'
  2398. if pcs_health > 50 and hantsexa = 2 and hantsexb < 5:act 'Lie on your back':gt 'hantersex', 'hantersgr2AOs'
  2399. if pcs_health > 50 and hantsexa = 3 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgr2AOi'
  2400. if pcs_health > 50 and hantsexa = 3 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgr2AsO'
  2401. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2402. end &! --- hantersgr2AiOs ---
  2403. if $ARGS[0] = 'hantersgr2AOs':
  2404. pose = 0
  2405. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2aos.jpg"></center>'
  2406. 'Guys put you on your back, Igor you with his feet, began to settle down to your ass, and Sergei was over you putting your dick in front of your face...'
  2407. gs 'boyStat', 'A174'
  2408. gs 'oral','start'
  2409. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2410. gs 'boyStat', 'A173'
  2411. if boyCsexa = 0: boyCsexa = 1
  2412. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  2413. 'Igor had finished and passed out, you are left with Sergei.'
  2414. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  2415. gs 'arousal', 'bj', 5, 'sub', 'group'
  2416. minut -= 5
  2417. gs 'stat'
  2418. if pcs_health > 50:act 'Sit down':gt 'hantersex', 'hantersgr1As'
  2419. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2420. end &! --- hantersgr2AOs ---
  2421. if $ARGS[0] = 'hantersgr2AiO':
  2422. pose = 0
  2423. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2aio.jpg"></center>'
  2424. 'Guys put you on your back, Igor you with his feet, began to settle down to your ass, and Sergei was over you putting your dick in front of your face...'
  2425. gs 'boyStat', 'A174'
  2426. gs 'oral','start'
  2427. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2428. gs 'boyStat', 'A173'
  2429. if boyCsexa = 0: boyCsexa = 1
  2430. dirty_dickC += 1
  2431. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  2432. gs 'boyStat', 'A174'
  2433. swallow += 1
  2434. gs 'cum_call', 'face', $boy, 1
  2435. gs 'cum_call', 'mouth', $boy, 1
  2436. gs 'dinsex', 'dinrandswallow'
  2437. 'Sergei had finished and departed, you are left with Igor.'
  2438. gs 'arousal', 'anal', 5, 'sub', 'group'
  2439. gs 'arousal', 'bj', 5, 'sub', 'group'
  2440. minut -= 5
  2441. gs 'stat'
  2442. if pcs_health > 50:act 'Lie on your back':gt 'hantersex', 'hantersgr1Ai'
  2443. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2444. end &! --- hantersgr2AiO ---
  2445. if $ARGS[0] = 'hantersgr2AOi':
  2446. pose = 1
  2447. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2aoi.jpg"></center>'
  2448. 'Sergei sat on the bed, pulling you with him, and Igor was in front of you putting his cock in front of your face...'
  2449. gs 'boyStat', 'A173'
  2450. gs 'oral','start'
  2451. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2452. gs 'boyStat', 'A174'
  2453. if boyBsexa = 0: boyBsexa = 1
  2454. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  2455. 'Sergei had finished and left the table to Andrew, you were with Igor.'
  2456. gs 'arousal', 'anal', 5, 'sub', 'group', 'rough'
  2457. gs 'arousal', 'bj', 5, 'sub', 'group'
  2458. minut -= 5
  2459. gs 'stat'
  2460. if pcs_health > 50:act 'Lie on your back':gt 'hantersex', 'hantersgr1Ai'
  2461. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2462. end &! --- hantersgr2AOi ---
  2463. if $ARGS[0] = 'hantersgr2AsO':
  2464. pose = 1
  2465. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2aso.jpg"></center>'
  2466. 'Sergei sat on the bed, pulling you with him, and Igor was in front of you putting his cock in front of your face...'
  2467. gs 'boyStat', 'A173'
  2468. gs 'oral','start'
  2469. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhanter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2470. gs 'boyStat', 'A174'
  2471. if boyBsexa = 0: boyBsexa = 1
  2472. dirty_dickB += 1
  2473. gs 'dinSex','boy_wants_anal','lubri' & gs 'dinsex','analsex'
  2474. gs 'boyStat', 'A173'
  2475. swallow += 1
  2476. gs 'cum_call', 'mouth', $boy, 1
  2477. gs 'dinsex', 'dinrandswallow'
  2478. 'Igor had finished and left the table to Andrei, Sergei.'
  2479. gs 'arousal', 'anal', 5, 'sub', 'group'
  2480. gs 'arousal', 'bj', 5, 'sub', 'group'
  2481. minut -= 5
  2482. gs 'stat'
  2483. if pcs_health > 50:act 'Sit down':gt 'hantersex', 'hantersgr1As'
  2484. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2485. end &! --- hantersgr2AsO ---
  2486. if $ARGS[0] = 'hantersgr2DPVaAs':
  2487. pose = 1
  2488. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2dpvaas1.'+rand(1,3)+'.jpg"></center>'
  2489. 'Andrew lay on the couch, pulling you along, Sergei immediately began to settle down to that second hole...'
  2490. gs 'boyStat', 'A172', 'a'
  2491. gs 'boyStat', 'A174', 'b'
  2492. if boyAsex = 0: boyAsex = 1
  2493. if boyBsexa = 0: boyBsexa = 1
  2494. dirty_dickB += 1
  2495. gs 'dinSex','boy_wants_anal',$boydesc2,'lubri'
  2496. gs 'dinsex2','doublepenetration',10,'sub','gangbang'
  2497. *pl
  2498. gs 'stat'
  2499. hantsexa = rand(1,2)
  2500. hantsexb = rand(1,8)
  2501. if pcs_health > 50 and hantsexa = 1 and hantsexb > 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaOs'
  2502. if pcs_health > 50 and hantsexa = 1 and hantsexb <= 4:act 'Lie on your side':gt 'hantersex', 'hantersgr2VaO'
  2503. if pcs_health > 50 and hantsexa = 2 and hantsexb > 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaAs'
  2504. if pcs_health > 50 and hantsexa = 2 and hantsexb <= 5:act 'Sit down':gt 'hantersex', 'hantersgr2DPVaA'
  2505. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2506. end &! --- hantersgr2DPVaAs ---
  2507. if $ARGS[0] = 'hantersgr2DPVaA':
  2508. pose = 1
  2509. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr2dpvaa.jpg"></center>'
  2510. 'Andrew lay on the couch, pulling you along, Sergei immediately began to settle down to that second hole...'
  2511. gs 'boyStat', 'A172','a'
  2512. gs 'boyStat', 'A174','b'
  2513. if boyAsex = 0: boyAsex = 1
  2514. if boyBsexa = 0: boyBsexa = 1
  2515. gs 'dinSex','boy_wants_anal',$boydesc2,'lubri'
  2516. gs 'dinsex2','doublepenetration',10,'sub','gangbang'
  2517. 'After a while <<$boydesc2>> moaned and you felt like your ass fills with heat. He finished and went outside, you stayed with Andrew'
  2518. gs 'cum_call', 'anus', $boy2, 1
  2519. gs 'stat'
  2520. hantsexa = rand(1,3)
  2521. if pcs_health > 50 and hantsexa = 1:act 'Sit down':gt 'hantersex', 'hantersgr1Va'
  2522. if pcs_health > 50 and hantsexa = 2:act 'Lie on your back':gt 'hantersex', 'hantersgrO1'
  2523. if pcs_health > 50 and hantsexa = 3:act 'Sit down':gt 'hantersex', 'hantersgr1Aa'
  2524. if pcs_health <= 50:act 'To lose consciousness':gt 'hantersex', 'hantersexfaint'
  2525. end &! --- hantersgr2DPVaA ---
  2526. if $ARGS[0] = 'hantersgrO2':
  2527. minut += 1
  2528. pose = 0
  2529. gs 'cum_call', 'face', $boy, 1
  2530. gs 'cum_call', 'mouth', $boy, 1
  2531. swallow += 2
  2532. body_write += 1
  2533. gs 'stat'
  2534. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgro2cum1.'+rand(1,2)+'.jpg"></center>'
  2535. 'Sergei Igor put you on your back and immediately a jet of sperm hit in your mouth and face. For fun guys left on the body the inscription on the memory and walked away...'
  2536. act 'Pass out': gt 'hantersex', 'hantersGrEnd'
  2537. end &! --- hantersgrO2 ---
  2538. if $ARGS[0] = 'hantersgr1Va':
  2539. minut += 5
  2540. pose = 1
  2541. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr1va.jpg"></center>'
  2542. 'Andrew sat on the couch, pulling you along, you sat on top of his cock...'
  2543. gs 'boyStat', 'A172'
  2544. if boyAsex = 0: boyAsex = 1
  2545. gs 'arousal', 'vaginal', 5, 'sub'
  2546. gs 'stat'
  2547. 'Andrew had finished and went to the table.'
  2548. act 'Pass out': gt 'hantersex', 'hantersGrEnd'
  2549. end &! --- hantersgr1Va ---
  2550. if $ARGS[0] = 'hantersgr1Ai':
  2551. minut += 5
  2552. pose = 0
  2553. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr1ai.jpg"></center>'
  2554. 'Igor put you on his back and began to settle down to your ass...'
  2555. gs 'boyStat', 'A173'
  2556. if boyCsexa = 0: boyCsexa = 1
  2557. gs 'arousal', 'anal', 5, 'sub', 'rough'
  2558. gs 'stat'
  2559. 'Igor had finished and went to sleep.'
  2560. act 'Pass out': gt 'hantersex', 'hantersGrEnd'
  2561. end &! --- hantersgr1Ai ---
  2562. if $ARGS[0] = 'hantersgr1Aa':
  2563. minut += 5
  2564. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr1aa.jpg"></center>'
  2565. 'Andrew put you on all fours and began to be attached behind...'
  2566. gs 'boyStat', 'A172'
  2567. if boyAsexa = 0: boyAsexa = 1
  2568. gs 'arousal', 'anal', 5, 'sub', 'rough'
  2569. gs 'stat'
  2570. 'Andrew had finished and went outside to smoke.'
  2571. act 'Pass out': gt 'hantersex', 'hantersGrEnd'
  2572. end &! --- hantersgr1Aa ---
  2573. if $ARGS[0] = 'hantersgr1As':
  2574. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgr1as.jpg"></center>'
  2575. 'Andrew sat on the couch, pulling you along, you sat on top of his cock...'
  2576. gs 'boyStat', 'A174'
  2577. npc_sex[$boy] += 1
  2578. gs 'arousal', 'anal', 5, 'sub', 'rough'
  2579. gs 'stat'
  2580. 'Sergey came and went.'
  2581. act 'Pass out': gt 'hantersex', 'hantersGrEnd'
  2582. end &! --- hantersgr1As --
  2583. if $ARGS[0] = 'hantersgrO1':
  2584. minut += 1
  2585. gs 'cum_call', 'face', $boy, 1,'','',20
  2586. gs 'cum_call', 'mouth', $boy, 1,'','',20
  2587. swallow += 1
  2588. body_write += 1
  2589. gs 'stat'
  2590. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/dance/hantersgro1cum.jpg"></center>'
  2591. 'Andrew put you on your back and then pumped cum. Jet of sperm hit in your mouth, and once on the face and the hair. After Andrew left, leaving you alone...'
  2592. act 'Pass out': gt 'hantersex', 'hantersGrEnd'
  2593. end &! --- hantersgrO1 ---
  2594. ! loss of consciousness
  2595. if $ARGS[0] = 'hantersexfaint':
  2596. minut += 1
  2597. pcs_horny += rand(5,10)
  2598. gs 'stat'
  2599. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersgroupfaint.jpg"></center>'
  2600. 'A sudden unbearable pain in the eyes you darkened, the world spun and you collapsed...'
  2601. if hantersRape = 4 or hantdanceslut = 4:
  2602. act 'Wake up':
  2603. *clr & cla
  2604. minut += 10
  2605. pcs_health += 100
  2606. pcs_mood = 100
  2607. pcs_willpwr +=100
  2608. gs 'stat'
  2609. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersgroupfaint1.jpg"></center>'
  2610. 'You woke up from the flow of water, poured out on you...'
  2611. '-Well, <<$pcs_nickname>>, alive? - asked Andrew making sure that you come to.'
  2612. 'You weakly shook her head.'
  2613. '-Well, okay, " he said and walked away.'
  2614. act 'Further': gt $loc, $metka
  2615. end
  2616. else
  2617. act 'Wake up':
  2618. *clr & cla
  2619. minut += 10
  2620. pcs_health += 100
  2621. pcs_mood = 100
  2622. pcs_willpwr +=100
  2623. gs 'stat'
  2624. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersgroupfaint2.jpg"></center>'
  2625. 'You woke up from a light Pat on the cheeks...'
  2626. '-Well, <<$pcs_nickname>>, you`re like, alive? - asked Andrew making sure that you come to.'
  2627. 'You weakly shook her head.'
  2628. '-You scared us, frankly, fucked up, " he said and walked away. - Go to the hut and rest.'
  2629. gs 'arousal', 'end'
  2630. gs 'stat'
  2631. act 'Further': gt'swamphouse'
  2632. end
  2633. end
  2634. end &! --- hantersexfaint ---
  2635. if $ARGS[0] = 'hantersGrEnd':
  2636. minut += 1
  2637. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/dancesexson.jpg"></center>'
  2638. 'As soon as the guys moved away from you, you instantly passed out not dressing and not changing the posture...'
  2639. act 'Wake up':
  2640. *clr & cla
  2641. minut += 600
  2642. pcs_sleep += 60
  2643. pcs_health += 50
  2644. pcs_mood += 50
  2645. pcs_willpwr +=50
  2646. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/drunk_ev/pohmel1.jpg"></center>'
  2647. 'You slept for awhile, waking up disheveled barely tore the head from the pillow. Headache and you vaguely remembered what happened yesterday.'
  2648. gs 'arousal', 'end'
  2649. gs 'stat'
  2650. act 'Further': gt'SwampHouse'
  2651. end
  2652. end &! --- hantersGrEnd ---
  2653. if $ARGS[0] = 'killvar':
  2654. killvar '$doubleloveOral12'
  2655. killvar '$doubleloveOralCum12_1'
  2656. killvar '$doubleloveOralCum12_2'
  2657. killvar '$doubleloveDog112'
  2658. killvar '$doubleloveDogCum112_1'
  2659. killvar '$doubleloveDogCum112_2'
  2660. killvar '$doubleloveDog212'
  2661. killvar '$doubleloveDogCum212_1'
  2662. killvar '$doubleloveDogCum212_2'
  2663. killvar '$doubleloveSide12'
  2664. killvar '$doubleloveSideCum12_1'
  2665. killvar '$doubleloveSideCum12_2'
  2666. killvar '$doubleloveCow112'
  2667. killvar '$doubleloveCowCum112_1'
  2668. killvar '$doubleloveCowCum112_2'
  2669. killvar '$doubleloveCow212'
  2670. killvar '$doubleloveCowCum212_1'
  2671. killvar '$doubleloveCowCum212_2'
  2672. killvar '$doubleloveSide2'
  2673. killvar '$doubleloveSideCum2'
  2674. killvar '$doubleloveCow1'
  2675. killvar '$doubleloveCowCum1'
  2676. killvar '$doubleloveOral1'
  2677. killvar '$doubleloveOralCum1'
  2678. killvar '$doubleloveOral2'
  2679. killvar '$doubleloveOralCum2'
  2680. killvar '$doubleloveOralCum12'
  2681. killvar '$sluthomeSTART'
  2682. killvar '$sluthomeORAL1'
  2683. killvar '$sluthomeOralCum1'
  2684. killvar '$sluthomeORAL2'
  2685. killvar '$sluthomeOralCum2'
  2686. killvar '$sluthomeORAL3'
  2687. killvar '$sluthomeOralCum3'
  2688. killvar '$sluthomeORAL4'
  2689. killvar '$sluthomeOralCum4'
  2690. killvar '$sluthomeTanga'
  2691. killvar '$sluthomeAnalDog1'
  2692. killvar '$sluthomeAnalDogCum1'
  2693. killvar '$sluthomeAnalDog2'
  2694. killvar '$sluthomeAnalDogCum2'
  2695. killvar '$sluthomeAnalCow1'
  2696. killvar '$sluthomeAnalCowCum1'
  2697. killvar '$sluthomeAnalCow2'
  2698. killvar '$sluthomeAnalCowCum2'
  2699. killvar '$sluthomeAnalSide1'
  2700. killvar '$sluthomeAnalSideCum1'
  2701. killvar '$sluthomeAnalSide2'
  2702. killvar '$sluthomeAnalSideCum2'
  2703. killvar '$hantergrOi'
  2704. killvar '$hantersgrOasi'
  2705. killvar '$hantersgrVaOsi'
  2706. killvar '$hantersgrVOsi'
  2707. killvar '$hantersgrVaO'
  2708. killvar '$hantersgrVaOi'
  2709. killvar '$hantersgrVsOai'
  2710. killvar '$hantersgrVOai'
  2711. killvar '$hantersgrVsOi'
  2712. killvar '$hantersgrVsO'
  2713. killvar '$hantersgrViOas'
  2714. killvar '$hantersgrViO'
  2715. killvar '$hantersgrVsOia'
  2716. killvar '$hantersgrVsOi1'
  2717. killvar '$hantersgrVaOis'
  2718. killvar '$hantersgrVaOs'
  2719. killvar '$hantersgrVO'
  2720. killvar '$hantersgrV2aOsi'
  2721. killvar '$hantersgrV2aOs'
  2722. killvar '$hantersgrDPVaAiOs'
  2723. killvar '$hantersgrDPVaAOs'
  2724. killvar '$hantersgrAiOsa'
  2725. killvar '$hantersgrAiO'
  2726. killvar '$hantersgrO3'
  2727. killvar '$hantersgrEND'
  2728. killvar '$hantersgrAOsa'
  2729. killvar '$hantersgr2VaOi'
  2730. killvar '$hantersgr2VOi'
  2731. killvar '$hantersgr2VO'
  2732. killvar '$hantersgr2ViOa'
  2733. killvar '$hantersgr2ViO'
  2734. killvar '$hantersgr2VsO'
  2735. killvar '$hantersgr2VaOs'
  2736. killvar '$hantersgr2VaO'
  2737. killvar '$hantersgr2AiOs'
  2738. killvar '$hantersgr2AOs'
  2739. killvar '$hantersgr2AiO'
  2740. killvar '$hantersgr2AOi'
  2741. killvar '$hantersgr2AsO'
  2742. killvar '$hantersgr2DPVaAs'
  2743. killvar '$hantersgr2DPVaA'
  2744. killvar '$hantersgrO2'
  2745. killvar '$hantersgr1Va'
  2746. killvar '$hantersgr1Ai'
  2747. killvar '$hantersgr1Aa'
  2748. killvar '$hantersgr1As'
  2749. killvar '$hantersgrO1'
  2750. killvar '$hantersexfaint'
  2751. end
  2752. --- hantersex ---------------------------------