hunters.qsrc 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027
  1. # hunters
  2. !!2022/05/06
  3. if $ARGS[0] = 'start':
  4. menu_off = 1
  5. gs 'stat'
  6. !disabled - maybe hook into enema realism?
  7. !$textsexhunter = 'From a member of the unpleasant smells and remains in the mouth tastes foul feces. "-Damn, I had to do an enema." - belatedly dumaeete you.'
  8. if hunters_were_met > 0:
  9. if hunters_chattime = 1:
  10. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanters.jpg"></center>'
  11. if hunters_evening = 0:
  12. 'The three hunters, Sergei, Igor and Andrei are sitting and telling each other all kinds of hunting stories.'
  13. else
  14. 'The two hunters, Sergei and Igor are sitting and telling each other all kinds of hunting stories.'
  15. end
  16. else
  17. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterswork1.'+rand(1,9)+'.jpg"></center>'
  18. if hunters_evening = 0:
  19. 'The three hunters, Sergei, Igor and Andrei, are all minding their own business.'
  20. else
  21. 'The three hunters, Sergei, Igor and Andrei, are all minding their own business.'
  22. end
  23. end
  24. else
  25. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanters.jpg"></center>'
  26. 'You see three strangers talking to each other. Each one of them telling all kinds of hunting stories.'
  27. end
  28. act 'Walk away':gt 'swamp_yard', 'start'
  29. if hunters_were_met = 0:
  30. act 'Greet them':
  31. *clr & cla
  32. minut += 5
  33. hunters_were_met = 1
  34. huntersAndreiQw += 1
  35. huntersIgorQw += 1
  36. huntersSergeiQw += 1
  37. gs 'stat'
  38. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanters1.jpg"></center>'
  39. 'You approached the hunters and politely greeted them. The man telling the story stopped and greeted you back.'
  40. if pcs_apprnc >= 60:'"What''s your name, beautiful?" one of them asked.'
  41. if pcs_apprnc < 60:'"What should we call you?" one of them asked.'
  42. '"<<$pcs_nickname>>", you answer.'
  43. if gadriver_gang <= 0:
  44. '"I''m Andrei, replied the oldest man, and these are my friends Igor and Sergei."'
  45. '"Could your surname be <<$pcs_lastname>>?" he asked. You look at him nodding.'
  46. '"Don''t act surprised <<$pcs_nickname>>, you look a lot like your mother when she was younger. I... Hmmm... that''s good to know, I''m also from Gadukino." said Andrei.'
  47. '"Don''t be shy, have a seat, we won''t hurt you." said Sergei, freeing up some space for you to sit on.'
  48. else
  49. '"Well well, look what the cat dragged in. If it isn''t <<$pcs_nickname>> <<$pcs_lastname>>, the local slut." said Andrei.'
  50. '"Don''t be afraid, I''m also from Gadukino, you look just like your mother when she was younger, you''ve both been blessed with good looks." he says.'
  51. '"I''m Andrei," he continues on and these are my friends Igor and Sergei.'
  52. '"Come here sweetheart, sit down, we aren''t bad, we won''t bite." said Sergei, freeing up some space for you to sit on.'
  53. huntersKnowSlut = 1
  54. huntersRape = 1
  55. end
  56. $npc_usedname['A172'] = 'Andrei'
  57. $npc_usedname['A173'] = 'Igor'
  58. $npc_usedname['A174'] = 'Sergei'
  59. act 'Sit down': gt 'hunters', 'start'
  60. act 'Move away': gt 'swamp_yard', 'start'
  61. end
  62. elseif hunters_chattime = 1:
  63. if huntersKnowSlut > 0 and pcs_horny > 50 and mesec <= 0:
  64. act 'Stick around':
  65. *clr & cla
  66. gs 'boyStat', 'A172','1' &! Andrei
  67. gs 'boyStat', 'A173','2' &! Igor
  68. gs 'boyStat', 'A174','3' &! Sergei
  69. gang +=1
  70. npc_sex[$boy[1]] += 1
  71. npc_sex[$boy[2]] += 1
  72. npc_sex[$boy[3]] += 1
  73. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanters1.jpg"></center>'
  74. 'You make eye contact with the men while making a lewd reference. The men immediately drop everything and turn their attention to you...'
  75. '"We know you find us irresistible <<$pcs_nickname>>." Andrei said smiling.'
  76. gs 'arousal', 'foreplay', 5, 'sub', 'gangbang'
  77. gs 'stat'
  78. act 'Further':
  79. *clr & cla
  80. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupundress.jpg"></center>'
  81. 'Igor and Sergei quickly approach you taking you by the hand and lead you towards Andrei. They start taking your clothes off on the go...'
  82. gs 'arousal', 'foreplay', 5, 'sub', 'gangbang'
  83. gs 'stat'
  84. act 'Further':
  85. *clr & cla
  86. huntsexa = rand(1,3)
  87. huntsexb = rand(1,3)
  88. huntslutsex += rand(9,12)
  89. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouptanga.jpg"></center>'
  90. 'They make you lay down on the blanket, pull off your panties exposing your bare vagina. Surrounding you the men take off their pants and you get excited by seeing their swollen members.'
  91. gs 'arousal', 'foreplay', 1, 'sub', 'gangbang'
  92. gs 'stat'
  93. if huntsexa < 3 : act 'Suck':gt 'hunters', 'huntersgroupORALasi'
  94. if huntsexa = 3 and huntsexb = 1:act 'Suck':gt 'hunters', 'huntersgroupORALsi'
  95. if huntsexa = 3 and huntsexb = 2:act 'Suck':gt 'hunters', 'huntersgroupORALai'
  96. if huntsexa = 3 and huntsexb = 3:act 'Suck':gt 'hunters', 'huntersgroupORALas'
  97. end
  98. end
  99. end
  100. end
  101. act 'Chat (0:30)':
  102. *clr & cla
  103. minut += rand (15,30)
  104. pcs_mood += rand(10,20)
  105. if huntersAndreiQw < 10:huntersAndreiQw += 1
  106. if huntersIgorQw < 10:huntersIgorQw += 1
  107. if huntersSergeiQw < 10:huntersSergeiQw += 1
  108. gs 'stat'
  109. if PCloSkirt > 0 and $pantyworntype = 'none':
  110. *clr & cla
  111. if huntersKnowSlut > 0:hunterslut += 1
  112. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersnotanga1.jpg"></center>'
  113. 'You are sitting in front of the men, not wearing any panties, so the stories they tell get jumbled and most of the time is spent on throwing sideways glances at your naked vagina.'
  114. gs 'arousal', 'foreplay', 5, 'sub', 'gangbang'
  115. gs 'stat'
  116. else
  117. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanters1.jpg"></center>'
  118. 'You enthusiastically listen to the their hunting stories and even share some of your stories.'
  119. gs 'hunters', 'hunters_talk'
  120. 'You get so caught up in the conversation, you don''t even notice how fast the time flies by.'
  121. end
  122. act 'Move away': gt 'swamp_yard', 'start'
  123. end
  124. if huntersAndreiQw >= 10 and huntersSergeiQw >= 10 and huntersIgorQw >= 10 and shootingday ! daystart:
  125. if huntersKnowSlut = 0:
  126. if shooting = 0:
  127. act 'Ask to learn how to shoot the rifle':
  128. *clr & cla
  129. minut += 5
  130. shootingday = daystart
  131. gs 'stat'
  132. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/claps_eyes.jpg"></center>'
  133. '"Can''t you guys teach me how to shoot a rifle?'
  134. '"You''re a girl, why would you want to learn something like that <<$pcs_nickname>>?" Andrei said smiling. "You should pursue sewing or maybe a girly sport instead. Shooting is for boys."'
  135. '"Pretty please." you look at them while making puppy eyes.'
  136. if pcs_apprnc >= 60:
  137. shooting = 1
  138. if huntersAndreiQw < 20:huntersAndreiQw += 1
  139. if huntersIgorQw < 20:huntersIgorQw += 1
  140. if huntersSergeiQw < 20:huntersSergeiQw += 1
  141. '"Okay <<$pcs_nickname>>, we give up", they say smiling. "You''ve persuaded us, we''ll teach you how to shoot...'
  142. else
  143. huntersAndreiQw -= 1
  144. huntersIgorQw -= 1
  145. huntersSergeiQw -= 1
  146. '"No, <<$pcs_nickname>>, that will not work." they answer. "And don''t assume that those puppy eyes will work on us.'
  147. 'You frown your lips and turn your back on the men. "You guys are no fun, I''m leaving." you say angrily while moving away from the hunters.'
  148. end
  149. if shooting = 1:
  150. act 'Learn how to shoot the rifle (0:30)':
  151. *clr & cla
  152. minut += 30
  153. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/shooting.jpg"></center>'
  154. 'The hunters explain how to hold the rifle, aim, and when to squeeze the trigger. You feel that you are ready and decide to take a...'
  155. gs 'stat'
  156. act 'Shot':
  157. *clr & cla
  158. minut += 1
  159. fingal += rand(1,3)
  160. gs 'exp_gain', 'shoot', 1
  161. '<center><video autoplay loop src="images/locations/gadukino/hunters/shooting1.mp4"></video></center>'
  162. 'The recoil wasn''t at all as you expected it to be. You hear a loud bang, and the last thing you remember is something hitting you on the forehead...'
  163. gs 'stat'
  164. act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  165. end
  166. end
  167. else
  168. act'Go':gt 'swamp_yard', 'start'
  169. end
  170. end
  171. else
  172. act 'Ask to shoot the rifle':
  173. if fingal = 0:
  174. *clr & cla
  175. minut += 5
  176. shootingday = daystart
  177. gs 'stat'
  178. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/claps_eyes.jpg"></center>'
  179. 'You approach the hunters sitting in a clearing. "Guys, could you give me the rifle? I want to try it out again." You ask the hunters.'
  180. if shooting = 1:
  181. shooting = 2
  182. '"Okay, <<$pcs_nickname>>, just don''t end up like the first time," Andrei said jokingly.'
  183. elseif pcs_shoot <= 10:
  184. '"Sure, <<$pcs_nickname>>, just be careful." Andrei said smiling.'
  185. else
  186. '"Here, <<$pcs_nickname>>, just don''t shoot too much, the bullets are expensive." Andrei said smiling.'
  187. end
  188. if pcs_shoot >= 1 and pcs_shoot <= 10:
  189. act 'Go shooting (1:00)':
  190. if (pcs_stren + pcs_shoot > 20) or (pcs_stren + pcs_shoot < 20 and rand(1,2) = 1):
  191. *clr & cla
  192. minut += 60
  193. gs 'exp_gain', 'shoot', 1
  194. gs 'stat'
  195. '<center><video autoplay loop src="images/locations/gadukino/hunters/shooting2.mp4"></video></center>'
  196. 'You fire the rifle for an hour under the hunters watchful eyes.'
  197. act'Further':gt 'swamp_yard', 'start'
  198. else
  199. *clr & cla
  200. minut += 5
  201. gs 'exp_gain', 'shoot', 1
  202. gs 'stat'
  203. '<center><video autoplay loop src="images/locations/gadukino/hunters/shooting1.mp4"></video></center>'
  204. 'Everything went wrong just like the first time. You take a shot and got hit once again by the rifle on the forehead...'
  205. '"<<$pcs_nickname>>, are you still alive?" Igor asked you with some concern in his voice.'
  206. '"Yeah, I think so..." you reply, holding your bruised forehead.'
  207. '"I''m glad to hear that," Andrei said laughing. "Go get some rest, little Rambo".'
  208. act'Further':
  209. *clr & cla
  210. minut += 1
  211. gs 'stat'
  212. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/tongue.jpg"></center>'
  213. '"I''m not Rambo, I''m Lara Croft," you reply. Andrei, stands there looking confused not understanding the reference.'
  214. act'Further':gt 'swamp_yard', 'start'
  215. end
  216. end
  217. end
  218. else
  219. act 'Go shooting (1:00)':
  220. *clr & cla
  221. minut += 60
  222. gs 'exp_gain', 'shoot', 1
  223. gs 'stat'
  224. '<center><video autoplay loop src="images/locations/gadukino/hunters/shooting2.mp4"></video></center>'
  225. 'You fire the rifle for an hour under the hunters watchful eyes.'
  226. act'Further':gt 'swamp_yard', 'start'
  227. end
  228. end
  229. else
  230. *clr & cla
  231. minut += 5
  232. shootingday = daystart
  233. gs 'stat'
  234. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/claps_eyes.jpg"></center>'
  235. 'You approach the hunters sitting in a clearing. "Guys, could you give me the rifle? I want to try it out again." You ask the hunters.'
  236. '"You need to heal your forehead first." Andrei says smiling. "You have the spirit of an Amazon, you need to relax."'
  237. act'Further':gt 'swamp_yard', 'start'
  238. end
  239. end
  240. end
  241. else
  242. if huntslutsex = 0:
  243. *clr & cla
  244. minut += 5
  245. shootingday = daystart
  246. huntersexnude = 1
  247. gs 'stat'
  248. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/claps_eyes.jpg"></center>'
  249. 'You approach the hunters sitting in the meadow. "Guys, let me shoot the rifle," you look at them with your puppy eyes.'
  250. '"<<$pcs_nickname>>, come closer," replied Andrei. "If you want to shoot you need to repay us somehow."'
  251. act'Approach':gt 'hunters', 'start'
  252. else
  253. *clr & cla
  254. minut += 5
  255. shootingday = daystart
  256. gs 'stat'
  257. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/claps_eyes.jpg"></center>'
  258. '"Please guys, I really want to shoot with the rifle."'
  259. '"Don''t you worry <<$pcs_nickname>>, you have other talents that are more needed." Andrei replied.'
  260. 'He scoffs, pleased with the joke.'
  261. act'Move away':gt 'swamp_yard', 'start'
  262. end
  263. end
  264. end
  265. else
  266. if hunters_evening = 0: act'Talk to Andrei':gt 'andreihunter'
  267. act'Talk to Sergei':gt 'sergeihunter'
  268. act'Talk to Igor':gt 'igorhunter'
  269. end
  270. !actions if the SG slut in Gadukino
  271. if huntersRape = 3:
  272. *clr & cla
  273. minut += 5
  274. huntersKnowSlut = 1
  275. boyAsex = 0
  276. boyBsex = 0
  277. boyCsex = 0
  278. boyAsexa = 0
  279. boyBsexa = 0
  280. boyCsexa = 0
  281. if hunterandreisex = 0:hunterandreisex = 1 & guy += 1
  282. if huntersergeisex = 0:huntersergeisex = 1 & guy += 1
  283. if hunterigorsex = 0:hunterigorsex = 1 & guy += 1
  284. if huntersIgorLove = 1:huntersIgorLove = 0 & huntersIgorQw -= 100
  285. if huntersIgorLove = 2:huntersIgorLove = 0 & huntersIgorQw -= 100 & bfA = 0
  286. if huntersIgorLove = 3:huntersIgorLove = 0 & huntersIgorQw -= 100 & husband = 0 & divorced += 1 & husbandMark = 0 & husbharmin = 0 & husbizvradd = 0
  287. if huntersSergeiLove = 1:huntersSergeiLove = 0 & huntersSergeiQw -= 100
  288. if huntersAndreiLove = 1:huntersAndreiLove = 0 & huntersAndreiQw -= 100
  289. gs 'stat'
  290. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax2.jpg"></center>'
  291. 'You''re sitting down in the meadow near the road, relaxing, enjoying the nice weather, when all of a sudden Andrei, Sergei and Igor approach you. They quickly surround you not letting move away.'
  292. '"Hey, <<$pcs_nickname>>, we''ve been talking with each other, and we feel that you need to repay us somehow for the lessons. So what do you say?"'
  293. act 'Agree':
  294. *clr & cla
  295. huntersRape = 5
  296. gs 'stat'
  297. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupundress.jpg"></center>'
  298. '"I guess you''re right I need to repay you somehow..."'
  299. 'As soon you''ve agreed the guys change their attitude towards you. Igor helps you up and leads you away from the road while Andrei and Sergei already began taking your clothes off...'
  300. gs 'arousal', 'foreplay', 5, 'sub', 'gangbang'
  301. gs 'stat'
  302. act 'Further':
  303. *clr & cla
  304. dirty_dickA = 0
  305. dirty_dickB = 0
  306. dirty_dickC = 0
  307. huntsexa = rand(1,3)
  308. huntsexb = rand(1,3)
  309. huntslutsex += rand(9,12)
  310. huntersexnude = 1
  311. gs 'stat'
  312. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouptanga.jpg"></center>'
  313. 'They lay you down on the blanket and quickly pull off your panties. They drop their pants and are standing in front of you with their cocks hanging in the open. "So what are you waiting for? Start sucking."'
  314. gs 'arousal', 'foreplay', 2, 'sub', 'gangbang'
  315. gs 'stat'
  316. if huntsexa < 3 : act 'Suck':gt 'hunters', 'huntersgroupORALasi'
  317. if huntsexa = 3 and huntsexb = 1:act 'Suck':gt 'hunters', 'huntersgroupORALsi'
  318. if huntsexa = 3 and huntsexb = 2:act 'Suck':gt 'hunters', 'huntersgroupORALai'
  319. if huntsexa = 3 and huntsexb = 3:act 'Suck':gt 'hunters', 'huntersgroupORALas'
  320. end
  321. end
  322. act 'Refuse':
  323. *clr & cla
  324. minut += 5
  325. gs 'stat'
  326. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax3.jpg"></center>'
  327. 'You politely refuse saying you don''t owe them anything, but the men won''t accept a no and you can see that they''re clearly not satisfied with your answer.'
  328. '"<<$pcs_nickname>>, don''t fuck around with us. Deep inside you know you need to repay us." said Andrei, grabbing you by the hair.'
  329. act 'Agree':
  330. *clr & cla
  331. minut += 5
  332. gang += 1
  333. huntersRape = 5
  334. gs 'stat'
  335. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax4.jpg"></center>'
  336. 'Andrei orders Sergei to grab you by the arms, so you can''t run away if you change your mind again...'
  337. act 'Further':
  338. *clr & cla
  339. gs 'stat'
  340. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax5.'+rand(1,3)+'.jpg"></center>'
  341. 'While Sergei is holding you by the arms Andrei and Igor start groping every inch of your body...'
  342. gs 'arousal', 'foreplay', 5, 'sub', 'gangbang'
  343. gs 'stat'
  344. act 'Further':
  345. *clr & cla
  346. dirty_dickA = 0
  347. dirty_dickB = 0
  348. dirty_dickC = 0
  349. huntsexa = rand(1,3)
  350. huntsexb = rand(1,3)
  351. huntslutsex += rand(9,12)
  352. huntersexnude = 1
  353. gs 'stat'
  354. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouptanga.jpg"></center>'
  355. 'They force you on the back, yanking your panties, Sergei keeps holding you down while Andrei and Igor take off their pants. "On your knees and start sucking!" Andrei commands you. "Sergei take off your pants, this little bitch is going to please you too."'
  356. gs 'arousal', 'foreplay', 2, 'sub', 'gangbang'
  357. gs 'stat'
  358. if huntsexa < 3 : act 'Suck':gt 'hunters', 'huntersgroupORALasi'
  359. if huntsexa = 3 and huntsexb = 1:act 'Suck':gt 'hunters', 'huntersgroupORALsi'
  360. if huntsexa = 3 and huntsexb = 2:act 'Suck':gt 'hunters', 'huntersgroupORALai'
  361. if huntsexa = 3 and huntsexb = 3:act 'Suck':gt 'hunters', 'huntersgroupORALas'
  362. end
  363. end
  364. end
  365. act 'Resist':
  366. *clr & cla
  367. minut += 5
  368. gang += 1
  369. rape +=1
  370. huntersRape = 4
  371. gs 'stat'
  372. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax6.jpg"></center>'
  373. 'You desperately begin to resist, but the men are too strong for you. Andrei orders Igor and Sergei to grab you and while you''re fighting them Andrei approaches and slaps you across the face...'
  374. act 'Further':
  375. *clr & cla
  376. minut += 5
  377. gs 'stat'
  378. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax7.jpg"></center>'
  379. 'Andrei keeps holding you down, grabbing the clothes, tearing them off...'
  380. act 'Further':
  381. *clr & cla
  382. gs 'stat'
  383. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax8.jpg"></center>'
  384. 'While Igor and Sergei are holding you down Andrei takes off his pants, bringing his cock closer towards your mouth. You shake your head trying to pull away, but he grabs you by the head, and violently shoves his cock into your mouth.'
  385. '"Suck on it, bitch," you hear him say while tearing up. "And God forbid, if I feel any teeth, I''ll fucking bury you!"'
  386. gs 'boyStat', 'A172'
  387. 'At the same time Sergei, feeling he can take advantage of the situation, pulls your panties to the side and begins fondling your vagina.'
  388. 'Igor grabs your hand, takes out his cock, places it in the palm of your hand, leaving you with no choice but to begin jerking him off.'
  389. gs 'arousal', 'bj', 5, 'sub', 'gangbang', 'rough'
  390. gs 'arousal', 'hj', 5, 'sub', 'gangbang'
  391. gs 'arousal', 'vaginal_finger', 5, 'sub', 'gangbang'
  392. minut -= 5
  393. gs 'stat'
  394. act 'Further':
  395. *clr & cla
  396. minut += 5
  397. gs 'stat'
  398. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax9.jpg"></center>'
  399. 'After playing around for a while, Sergei and Andrei grab you by your hands and feet and carry you into a clearing behind the hut.'
  400. act 'Further':
  401. *clr & cla
  402. minut += 5
  403. gs 'stat'
  404. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax10.jpg"></center>'
  405. 'There they twist your arms, so you don''t attempt to escape, while Igor fetches a blanket from the hut...'
  406. act 'Further':
  407. *clr & cla
  408. minut += 5
  409. gs 'stat'
  410. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax11.jpg"></center>'
  411. 'The men throw you down on the blanket and pull off your panties...'
  412. act 'Further':
  413. *clr & cla
  414. gs 'stat'
  415. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax12.jpg"></center>'
  416. 'The men start exploring your body. Sergei grabs you by the face, Igor squeezes your breast, while Andrei starts caressing your vagina...'
  417. gs 'arousal', 'foreplay', 5, 'sub', 'gangbang', 'rough'
  418. gs 'stat'
  419. act 'Further':
  420. *clr & cla
  421. gs 'stat'
  422. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax14.jpg"></center>'
  423. 'Andrei finger-fucks you with his two fingers. Sergei and Igor go down on their knees whip out their cocks and make you jerk them off...'
  424. gs 'arousal', 'vaginal_finger', 5, 'sub', 'gangbang', 'rough'
  425. gs 'arousal', 'hj', 5, 'sub', 'gangbang'
  426. minut -= 5
  427. gs 'stat'
  428. act 'Further':
  429. *clr & cla
  430. minut += 1
  431. dirty_dickA = 0
  432. dirty_dickB = 0
  433. dirty_dickC = 0
  434. huntslutsex += rand(9,12)
  435. huntersexnude = 1
  436. gs 'stat'
  437. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax13.jpg"></center>'
  438. 'Andrei pulls out of his fingers and the men surround you holding their cocks. Their animal instincts have taken over and they''re ready for some real action.'
  439. '"Now that we''re past the foreplay <<$pcs_nickname>>, let''s have some real fun," said Andrei.'
  440. act 'Suck':gt 'hunters', 'huntersgroupORALasi'
  441. end
  442. end
  443. end
  444. end
  445. end
  446. end
  447. end
  448. end
  449. end
  450. end
  451. end
  452. !if he agreed to a Blowjob after Striptease and later sex
  453. if huntdanceslut = 2:
  454. *clr & cla
  455. minut += 1
  456. huntdanceslut = 4
  457. huntersRape = 5
  458. boyAsex = 0
  459. boyBsex = 0
  460. boyCsex = 0
  461. boyAsexa = 0
  462. boyBsexa = 0
  463. boyCsexa = 0
  464. gs 'stat'
  465. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax2.jpg"></center>'
  466. 'Andrei, Igor and Sergei walk up to you and strike up a conversation. Before you know it they''ve surrounded you, unzipping their pants.'
  467. act 'Suck':
  468. *clr & cla
  469. dirty_dickA = 0
  470. dirty_dickB = 0
  471. dirty_dickC = 0
  472. pcs_horny += rand(10,20)
  473. gs 'stat'
  474. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupbj3.6.jpg"></center>'
  475. 'Without any hesitation you begin sucking off Sergei and jerking off Igor. Andrei stands next to you playing with himself. Not to let him feel left out, you start sucking Andrei off. Thereafter you alternate your attention to each one of the men.'
  476. gs 'boyStat', 'A172'
  477. gs 'boyStat', 'A174'
  478. gs 'boyStat', 'A173'
  479. gs 'arousal', 'bj', 15, 'sub', 'gangbang'
  480. gs 'stat'
  481. act 'Continue sucking':
  482. *clr & cla
  483. gs 'cum_call', 'face', $boy, 1
  484. if $clothingworntype = 'nude':gs 'cum_call', 'stomach', $boy, 1
  485. if ($clothingworntype ! 'nude' and PCloswimwear = 0):gs 'cum_call', 'clothes_hidden', $boy, 1
  486. gs 'boyStat', 'A174'
  487. gs 'cum_call', 'face', $boy, 1
  488. if $clothingworntype = 'nude':gs 'cum_call', 'stomach', $boy, 1
  489. if ($clothingworntype ! 'nude' and PCloswimwear = 0):gs 'cum_call', 'clothes_hidden', $boy, 1
  490. gs 'boyStat', 'A172'
  491. gs 'cum_call', 'face', $boy, 1
  492. if $clothingworntype = 'nude':gs 'cum_call', 'stomach', $boy, 1
  493. if ($clothingworntype ! 'nude' and PCloswimwear = 0):gs 'cum_call', 'clothes_hidden', $boy, 1
  494. huntersKnowSlut = 2
  495. huntslutsex += rand(9,12)
  496. gs 'stat'
  497. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupo1.0.jpg"></center>'
  498. 'You continue orally pleasuring the men, noticing their pulsating cocks ready to explode. Few moments later the men all cum on your face. Feeling satisfied the men start walking away from you.'
  499. '"Not bad, <<$pcs_nickname>>," you hear Andrei saying. "Now we know that you are really good at this."'
  500. '"We''ll be seeing you again, <<$pcs_nickname>>. And don''t worry, you should be proud of how good you are at pleasuring men."'
  501. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  502. gs 'stat'
  503. act 'Wonder':
  504. *clr & cla
  505. minut += 5
  506. gs 'stat'
  507. '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big172.jpg"></center>'
  508. '"What are you saying?," you ask Andrei angrily. "You''ve just made me feel like a whore."'
  509. 'Andrei turns to you, "You see <<$pcs_nickname>>, you were always like this, you just had to stop running away from it. You can see it''s way better that this happened with us. Don''t worry, we won''t tell anyone. Now that you''ve gained some experience, you''ll become better at controlling that pretty mouth of yours.'
  510. '"You really think so?" you ask.'
  511. '"Of course! You enjoy giving head, we love reciving head, there is no need we should''nt be enjoying ourself together."'
  512. '"And you never know, maybe this newfound experience will make you good." said Andrei while thoughtfully scratching his chin.'
  513. gs 'arousal', 'end'
  514. gs 'stat'
  515. act 'Further':gt $loc, $loc_arg
  516. end
  517. end
  518. end
  519. end
  520. !if he otkazalas to suck after the Striptease and the subsequent sex
  521. if huntdanceslut = 3:
  522. *clr & cla
  523. minut += 1
  524. huntdanceslut = 4
  525. boyAsex = 0
  526. boyBsex = 0
  527. boyCsex = 0
  528. boyAsexa = 0
  529. boyBsexa = 0
  530. boyCsexa = 0
  531. gs 'stat'
  532. '<center><img <<$set_imgh>> src="images/pc/reactions/fuckoff1.jpg"></center>'
  533. '"Go fuck yourself, you creep!" you said out loudly while showing Andrei the middle finger.'
  534. act 'Move away':
  535. *clr & cla
  536. minut += 5
  537. gang += 1
  538. rape +=1
  539. huntersRape = 4
  540. gs 'stat'
  541. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax6.jpg"></center>'
  542. 'Andrei runs up to you. "Are you out of your fucking mind bitch?!!!" He grabs you by the hair and tosses you on to the ground.'
  543. 'You start desperatly resisting, but Andrei has his hand already up, slapping you, your head starts ringing by the impact...'
  544. act 'Further':
  545. *clr & cla
  546. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax8.jpg"></center>'
  547. '"You stupid whore. Who do you think you are?!!!" Andrei says angrily. You come to your senses and try to pull away, but he grabs you by the hair, commands the others to hold you down and violently shoves his cock into your mouth.'
  548. '"Suck on it, bitch, go deep." you hear him say. "And God forbid, I will kill you if I feel any teeth!"'
  549. gs 'arousal', 'bj', 5, 'sub', 'gangbang', 'rough', 'deepthroat'
  550. gs 'boyStat', 'A172'
  551. 'Sergei, seeing he can take advantage of the situation, pulls your panties to the side and begins fondling your clitoris.'
  552. 'Igor grabs you by the hand, takes out his cock, places it in the palm of your hand, leaving you with no choice but to begin jerking him off.'
  553. gs 'arousal', 'hj', 5, 'sub', 'gangbang'
  554. gs 'arousal', 'vaginal_finger', 5, 'sub', 'gangbang'
  555. minut -= 5
  556. gs 'stat'
  557. act 'Further':
  558. *clr & cla
  559. minut += 5
  560. gs 'stat'
  561. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax9.jpg"></center>'
  562. 'After pleasuring them for a while, Sergei and Andrei grab you by your hands and feet and carry you into a clearing behind the hut.'
  563. act 'Further':
  564. *clr & cla
  565. minut += 5
  566. gs 'stat'
  567. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax10.jpg"></center>'
  568. 'They make you stand there twisting your arms, so you don''t attempt to escape, while Igor fetches a blanket from the hut...'
  569. act 'Further':
  570. *clr & cla
  571. minut += 5
  572. gs 'stat'
  573. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax11.jpg"></center>'
  574. 'The men throw you down on the blanket and pull off your panties...'
  575. act 'Further':
  576. *clr & cla
  577. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax12.jpg"></center>'
  578. 'The men start exploring your body. Sergei grabs you by the face, Igor squeezes your breast, while Andrei starts caressing your clitoris...'
  579. gs 'arousal', 'foreplay', 5, 'sub', 'gangbang'
  580. gs 'stat'
  581. act 'Further':
  582. *clr & cla
  583. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax14.jpg"></center>'
  584. 'While laying on your back Andrei starts finger-fucking you. Sergei and Igor go down on their knees whip out their cocks and make you jerk them off...'
  585. gs 'arousal', 'vaginal_finger', 5, 'sub', 'gangbang'
  586. gs 'stat'
  587. act 'Further':
  588. *clr & cla
  589. dirty_dickA = 0
  590. dirty_dickB = 0
  591. dirty_dickC = 0
  592. huntslutsex += rand(9,12)
  593. huntersexnude = 1
  594. gs 'stat'
  595. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax13.jpg"></center>'
  596. 'Andrei pulls out of his fingers and the men surround you holding their cocks. Their animal instincts have taken over and they''re ready for some real action.'
  597. '"Now that we''re past the foreplay <<$pcs_nickname>>, let''s have some real fun," said Andrei.'
  598. act 'Suck':gt 'hunters', 'huntersgroupORALasi'
  599. end
  600. end
  601. end
  602. end
  603. end
  604. end
  605. end
  606. end
  607. end
  608. !sex if naked in front of GG hunters
  609. if huntersexnude = 1 or forest_huntersex = 3 or forest_gopsex = 3:
  610. *clr & cla
  611. huntslutsex += rand(3,6)
  612. gang += 1
  613. dirty_dickA = 0
  614. dirty_dickB = 0
  615. dirty_dickC = 0
  616. boyAsex = 0
  617. boyBsex = 0
  618. boyCsex = 0
  619. boyAsexa = 0
  620. boyBsexa = 0
  621. boyCsexa = 0
  622. if hunterandreisex = 0 and (huntersexnude = 1 or forest_huntersex = 3):hunterandreisex = 1 & guy += 1
  623. if huntersergeisex = 0 and (huntersexnude = 1 or forest_huntersex = 3):huntersergeisex = 1 & guy += 1
  624. if hunterigorsex = 0 and (huntersexnude = 1 or forest_huntersex = 3):hunterigorsex = 1 & guy += 1
  625. gs 'stat'
  626. if huntersexnude = 1 or forest_huntersex = 3:'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanters1.jpg"></center>'
  627. if forest_gopsex = 3:'<center><img <<$set_imgh>> src="images/locations/gadukino/forest/3boys.1.jpg"></center>'
  628. if huntersexnude = 1 or forest_huntersex = 3:'You approach the men with a playful smile...'
  629. '"You know what to do <<$pcs_nickname>>," said one of the men smiling. "Come here, show us how much you want it."'
  630. gs 'arousal', 'foreplay', 3, 'sub', 'gangbang'
  631. gs 'stat'
  632. huntsexa = rand(1,3)
  633. huntsexb = rand(1,3)
  634. if huntsexa < 3 : act 'Suck':gt 'hunters', 'huntersgroupORALasi'
  635. if huntsexa = 3 and huntsexb = 1:act 'Suck':gt 'hunters', 'huntersgroupORALsi'
  636. if huntsexa = 3 and huntsexb = 2:act 'Suck':gt 'hunters', 'huntersgroupORALai'
  637. if huntsexa = 3 and huntsexb = 3:act 'Suck':gt 'hunters', 'huntersgroupORALas'
  638. end
  639. ! sex if GG whore
  640. if slutgosex = 1 or forest_huntersex = 1 or forest_gopsex = 1:
  641. *clr & cla
  642. dirty_dickA = 0
  643. dirty_dickB = 0
  644. dirty_dickC = 0
  645. boyAsex = 0
  646. boyBsex = 0
  647. boyCsex = 0
  648. boyAsexa = 0
  649. boyBsexa = 0
  650. boyCsexa = 0
  651. huntslutsex += rand(3,6)
  652. ! for a break between the sex, is taken away -1 every hour
  653. if forest_gopsex = 1:
  654. gs 'clothing', 'strip_all', 'forest_edge'
  655. elseif slutgosex = 1 or forest_huntersex = 1 :
  656. gs 'clothing', 'strip_all', 'backwater'
  657. else
  658. gs 'clothing', 'strip_all'
  659. end
  660. if hunterandreisex = 0 and temphunt = 1:hunterandreisex = 1 & guy += 1
  661. if huntersergeisex = 0 and temphunt = 2:huntersergeisex = 1 & guy += 1
  662. if hunterigorsex = 0 and temphunt = 3:hunterigorsex = 1 & guy += 1
  663. if temphunt = 1:gs 'boyStat', 'A172'
  664. if temphunt = 2:gs 'boyStat', 'A174'
  665. if temphunt = 3:gs 'boyStat', 'A173'
  666. if temphunt = 4:gs 'boyStat', 'A63'
  667. if temphunt = 5:gs 'boyStat', 'A61'
  668. if temphunt = 6:gs 'boyStat', 'A62'
  669. gs 'stat'
  670. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/slutgosex1.jpg"></center>'
  671. '<<$boydesc>> takes you by the hand and leads you to a clearing next to some trees. He immediately begins to undress you.'
  672. '"You know why I''ve brought you here <<$pcs_nickname>>," said the guy smiling.'
  673. gs 'arousal', 'foreplay', 5, 'sub'
  674. gs 'stat'
  675. act 'Squat':gt 'hunters', 'hunterslutSTART'
  676. end
  677. end
  678. if $ARGS[0]='huntersgroupORALsi':
  679. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporalsi1.'+rand(0,3)+'.jpg"></center>'
  680. 'The men surround you with their cocks out, telling you to suck them off.'
  681. 'You began to suck their cocks alternately, while carefully paying equal attention to each member.'
  682. 'Each of them start groaning as soon as your lips touch their penis head.'
  683. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  684. if forest_gopsex = 3:gs 'boyStat', 'A61'
  685. gs 'oral','start', 5, 'gangbang'
  686. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  687. if forest_gopsex = 3:gs 'boyStat', 'A62'
  688. gs 'oral','start', 5, 'gangbang'
  689. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  690. if forest_gopsex = 3:gs 'boyStat', 'A63'
  691. gs 'cum_call', 'mouth_swallow', $boy, 1
  692. gs 'dinsex', 'dinrandswallow'
  693. 'You hear <<$boydesc>> groaning more intensely, indicating he''s ready to cum. You look up at him, smiling with your eyes and speed up you head motion. You keep on pleasuring him until he finishes on your face. He walks away, blissfuly smiling.'
  694. huntsexa = rand(1,5)
  695. gs 'hunters', 'rng_1'
  696. end
  697. if $ARGS[0]='huntersgroupORALsi1':
  698. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporalsi2.'+rand(0,2)+'.jpg"></center>'
  699. if huntersexnude = 1 or forest_huntersex = 3:'You begin sucking Sergei and Igor off, altering pleasuring them orally.'
  700. if forest_gopsex = 3:'You begin sucking Kolyamba and Vasyan off, altering pleasuring them orally.'
  701. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  702. if forest_gopsex = 3:gs 'boyStat', 'A61'
  703. gs 'oral','start', 5, 'gangbang'
  704. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  705. if forest_gopsex = 3:gs 'boyStat', 'A62'
  706. gs 'oral','start', 5, 'gangbang'
  707. gs 'stat'
  708. huntsexa = rand(1,5)
  709. gs 'hunters', 'rng_1'
  710. end
  711. if $ARGS[0]='huntersgroupORALs':
  712. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporals.jpg"></center>'
  713. if huntersexnude = 1 or forest_huntersex = 3:'Sergei grabs you by the head and shoves his cock into your mouth. Igor, feeling left out and just stands there with his cock out. You look at Igor with lust while sucking Sergei''s cock. Igor pushes Sergei away and shoves his cock inside your mouth.'
  714. if forest_gopsex = 3:'Kolyamba grabs you by the head and shoves his cock into your mouth. Vasyan, feeling left out and just stands there with his cock out. You look at Vasyan with lust while sucking Kolyamba''s cock. Vasyan pushes Kolyamba away and shoves his cock inside your mouth.'
  715. '"There, there, don''t fight I can do you both at the same time." you say. You start altering between their cocks, pleasuring them both.'
  716. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  717. if forest_gopsex = 3:gs 'boyStat', 'A61'
  718. gs 'oral','start', 5, 'gangbang'
  719. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  720. if forest_gopsex = 3:gs 'boyStat', 'A62'
  721. gs 'dinsex', 'dinrandswallow'
  722. gs 'cum_call', 'mouth_swallow', $boy, 1
  723. 'You hear <<$boydesc>> groaning more intensely, indicating they''re ready to cum. You look at them, smiling with your eyes and speed up you head motion. You keep on pleasuring them until they finish on your face. They walks away, blissfuly smiling.'
  724. gs 'stat'
  725. huntsexa = rand(1,4)
  726. gs 'hunters', 'rng_2'
  727. end
  728. if $ARGS[0]='huntersgroupORALs1':
  729. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporals1.'+rand(0,1)+'.jpg"></center>'
  730. if huntersexnude = 1 or forest_huntersex = 3:'You begin pleasuring Sergei. He grabs you by the head giving him the control over how deep you will go...'
  731. if forest_gopsex = 3:'You begin pleasuring Kolyamba. He grabs you by the head giving him the control over how deep you will go...'
  732. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  733. if forest_gopsex = 3:gs 'boyStat', 'A61'
  734. gs 'oral','start', 5, 'gangbang'
  735. gs 'stat'
  736. huntsexa = rand(1,4)
  737. gs 'hunters', 'rng_2'
  738. end
  739. if $ARGS[0]='huntersgroupORALs1end':
  740. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporals1end.jpg"></center>'
  741. if huntersexnude = 1 or forest_huntersex = 3:'You begin pleasuring Sergei. He tells you that he wants to enjoy this so you should only suck his penis head...'
  742. if forest_gopsex = 3:'You begin pleasuring Kolyamba. He tells you that he wants to enjoy this so you should only suck his penis head...'
  743. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  744. if forest_gopsex = 3:gs 'boyStat', 'A61'
  745. gs 'oral','start', 5, 'gangbang'
  746. gs 'dinsex', 'dinrandswallow'
  747. '<<$boydesc>> finishes in your mouth and walks away with a satisfied smiles on their faces, leaving you alone sitting on the blanket...'
  748. gs 'cum_call', 'mouth_swallow', $boy, 1
  749. gs 'arousal', 'bj', 2, 'sub'
  750. gs 'arousal', 'end'
  751. gs 'stat'
  752. act 'Further':gt $loc, $loc_arg
  753. end
  754. if $ARGS[0]='huntersgroupORALi1end':
  755. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  756. if forest_gopsex = 3:gs 'boyStat', 'A62'
  757. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporalend1.'+rand(0,1)+'.jpg"></center>'
  758. 'You get down on your knees. <<$boydesc>> grabs you by the head and tells you he wants you to lick his penis head...'
  759. gs 'oral','start', 5, 'gangbang'
  760. gs 'dinsex', 'dinrandswallow'
  761. gs 'cum_call', 'mouth_swallow', $boy, 1
  762. gs 'arousal', 'bj', 2, 'sub'
  763. 'You lick <<$boydesc>>''s penis head until he finishes and walks away satisfied. He leaves you sitting alone on the blanket...'
  764. gs 'arousal', 'end'
  765. gs 'stat'
  766. if forest_huntersex = 0:act 'Further':gt $loc, $loc_arg
  767. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  768. end
  769. if $ARGS[0]='huntersgroupORALa1end':
  770. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  771. if forest_gopsex = 3:gs 'boyStat', 'A62'
  772. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporalend1.'+rand(0,1)+'.jpg"></center>'
  773. 'You get down on your knees. <<$boydesc>> grabs you by the head and tells you he wants you to lick his penis head...'
  774. gs 'oral','start', 5, 'gangbang'
  775. gs 'cum_call', 'mouth_swallow', $boy, 1
  776. gs 'dinsex', 'dinrandswallow'
  777. 'You lick <<$boydesc>>''s penis head until he finishes and walks away satisfied. He leaves you sitting alone on the blanket...'
  778. gs 'arousal', 'bj', 2, 'sub'
  779. gs 'arousal', 'end'
  780. gs 'stat'
  781. if forest_huntersex = 0:act 'Further':gt $loc, $loc_arg
  782. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  783. end
  784. if $ARGS[0]='huntersgroupORALi':
  785. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporali.jpg"></center>'
  786. if huntersexnude = 1 or forest_huntersex = 3:'You alternate between Sergeis'' and Igors'' penises, skillfully pleasuring the men.'
  787. if forest_gopsex = 3:'You alternate between Kolambas'' and Vasyas'' penises, skillfully pleasuring the men.'
  788. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  789. if forest_gopsex = 3:gs 'boyStat', 'A62'
  790. gs 'oral','start', 5, 'gangbang'
  791. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  792. if forest_gopsex = 3:gs 'boyStat', 'A61'
  793. gs 'oral','start', 5, 'gangbang'
  794. gs 'cum_call', 'mouth_swallow', $boy, 1
  795. gs 'dinsex', 'dinrandswallow'
  796. '<<$boydesc>> cums in your mouth and walks away with a satisfied smile on their faces.'
  797. gs 'arousal', 'bj', 2, 'sub', 'gangbang'
  798. gs 'stat'
  799. huntsexa = rand(1,4)
  800. gs 'hunters', 'rng_3'
  801. end
  802. if $ARGS[0]='huntersgroupORALend1':
  803. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporalend1.jpg"></center>'
  804. if huntersexnude = 1 or forest_huntersex = 3:'You kneel down in front Sergei and Igor, they unzip their pants. You start sucking them off, paying attention to each member.'
  805. if forest_gopsex = 3:'You kneel down in front Kolyamba and Vasyan, they unzip their pants. You start sucking them off, paying attention to each member.'
  806. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  807. if forest_gopsex = 3:gs 'boyStat', 'A62'
  808. gs 'oral', 'start', 5, 'gangbang'
  809. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  810. if forest_gopsex = 3:gs 'boyStat', 'A61'
  811. gs 'dinsex', 'dinrandswallow'
  812. gs 'oral', 'start', 5, 'gangbang'
  813. gs 'cum_call', 'face', $boy, 1,'','',20
  814. gs 'cum_call', 'mouth_swallow', $boy, 1,'','',20
  815. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  816. if forest_gopsex = 3:gs 'boyStat', 'A62'
  817. gs 'cum_call', 'face', $boy, 1,'','',20
  818. gs 'dinsex', 'dinrandswallow'
  819. gs 'cum_call', 'mouth_swallow', $boy, 1,'','',20
  820. if huntersexnude = 1 or forest_huntersex = 3:'The men order you to swallow all of the sperm. You enthusiasticly open your mouth ready to recive their loads. The men started groaning loudly and began cumming, the quantity of sperm was so overwhelming that you were not able to swallow all of it and some of drips onto your face. You see the displeasure in Sergeis'' and Igors'' faces not being able to swallow it all...'
  821. if forest_gopsex = 3:'The men order you to swallow all of the sperm. You enthusiasticly open your mouth ready to recive their loads. The men started groaning loudly and began cumming, the quantity of sperm was so overwhelming that you were not able to swallow all of it and some of drips onto your face. You see the displeasure in Kolambas'' with Vasyas'' faces not being able to swallow it all...'
  822. *nl
  823. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  824. gs 'arousal', 'end'
  825. gs 'stat'
  826. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  827. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  828. end
  829. if $ARGS[0]='huntersgroupORALai':
  830. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporalsi1.'+rand(0,3)+'.jpg"></center>'
  831. 'You begin to pleasure the three men, diligently giving all the men equal attention.'
  832. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  833. if forest_gopsex = 3:gs 'boyStat', 'A63'
  834. gs 'oral', 'start', 5, 'gangbang'
  835. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  836. if forest_gopsex = 3:gs 'boyStat', 'A62'
  837. gs 'oral', 'start', 5, 'gangbang'
  838. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  839. if forest_gopsex = 3:gs 'boyStat', 'A61'
  840. gs 'oral', 'start', 5, 'gangbang'
  841. gs 'dinsex', 'dinrandswallow'
  842. gs 'cum_call', 'mouth_swallow', $boy, 1
  843. '<<$boydesc>> finish and walk away with a blissful smile on their face.'
  844. gs 'arousal', 'bj', 2, 'sub', 'gangbang'
  845. gs 'stat'
  846. huntsexa = rand(1,5)
  847. gs 'hunters', 'rng_4'
  848. end
  849. if $ARGS[0]='huntersgroupORALai1':
  850. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporalai1.'+rand(0,3)+'.jpg"></center>'
  851. 'You began sucking the men, trying to fit two cocks in your mouth at the same time.'
  852. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  853. if forest_gopsex = 3:gs 'boyStat', 'A63'
  854. gs 'oral', 'start', 5, 'gangbang'
  855. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  856. if forest_gopsex = 3:gs 'boyStat', 'A62'
  857. gs 'oral', 'start', 5, 'gangbang'
  858. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  859. gs 'stat'
  860. huntsexa = rand(1,5)
  861. gs 'hunters', 'rng_4'
  862. end
  863. if $ARGS[0]='huntersgroupORALi1':
  864. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporali1.jpg"></center>'
  865. 'You began to suck the men, trying to fit two cocks in your mouth at the same time.'
  866. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  867. if forest_gopsex = 3:gs 'boyStat', 'A62'
  868. gs 'oral', 'start', 5, 'gangbang'
  869. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  870. if forest_gopsex = 3:gs 'boyStat', 'A63'
  871. gs 'cum_call', 'mouth_swallow', $boy, 1
  872. gs 'oral', 'start', 5, 'gangbang'
  873. gs 'dinsex', 'dinrandswallow'
  874. '<<$boydesc>> groans loudly while cumming. He zips his pants and walks away.'
  875. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  876. gs 'stat'
  877. huntsexa = rand(1,4)
  878. gs 'hunters', 'rng_3'
  879. end
  880. if $ARGS[0]='huntersgroupORALas':
  881. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouporalsi1.'+rand(0,3)+'.jpg"></center>'
  882. 'You began to suck their cocks alternately, while carefully paying equal attention to each one of them.'
  883. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  884. if forest_gopsex = 3:gs 'boyStat', 'A63'
  885. gs 'oral', 'start', 5, 'gangbang'
  886. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  887. if forest_gopsex = 3:gs 'boyStat', 'A61'
  888. gs 'oral', 'start', 5, 'gangbang'
  889. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  890. if forest_gopsex = 3:gs 'boyStat', 'A62'
  891. gs 'cum_call', 'mouth_swallow', $boy, 1
  892. gs 'oral', 'start', 5, 'gangbang'
  893. gs 'dinsex', 'dinrandswallow'
  894. '<<$boydesc>> finish and walk away with a blissful smile on their face.'
  895. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  896. gs 'stat'
  897. huntsexa = rand(1,4)
  898. gs 'hunters', 'rng_5'
  899. end
  900. if $ARGS[0]='huntersgroupORALasi':
  901. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupbj3.'+rand(0,8)+'.jpg"></center>'
  902. 'The men take turns, grabbing your head, forcing their cock down your throat.'
  903. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  904. if forest_gopsex = 3:gs 'boyStat', 'A63'
  905. gs 'oral', 'start', 5, 'gangbang'
  906. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  907. if forest_gopsex = 3:gs 'boyStat', 'A61'
  908. gs 'oral', 'start', 5, 'gangbang'
  909. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  910. if forest_gopsex = 3:gs 'boyStat', 'A62'
  911. gs 'oral', 'start', 5, 'gangbang'
  912. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  913. gs 'stat'
  914. huntsexa = rand(1,5)
  915. gs 'hunters', 'rng_6'
  916. end
  917. if $ARGS[0]='huntersgroupVias':
  918. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvias3.'+rand(0,4)+'.jpg"></center>'
  919. if huntersexnude = 1 or forest_huntersex = 3:'Igor lies down on the ground with his cock out, he commands you to straddle him. While Igor enters you... Andrei and Sergei tell you to start sucking them off.'
  920. if forest_gopsex = 3:'Igor lies on the ground, grabbing you by the hips, pulling you towards his cock... Mitka and Kolyamba stand there waiting to get their cock sucked...'
  921. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  922. if forest_gopsex = 3:gs 'boyStat', 'A61'
  923. gs 'oral', 'start', 5, 'gangbang'
  924. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  925. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  926. if forest_gopsex = 3:gs 'boyStat', 'A63'
  927. gs 'oral', 'start', 5, 'gangbang'
  928. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  929. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  930. if forest_gopsex = 3:gs 'boyStat', 'A62'
  931. if boyCsex = 0: boyCsex = 1
  932. gs 'dinsex','vaginal_sex',10
  933. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  934. gs 'arousal', 'vaginal', 5, 'sub'
  935. minut -= 5
  936. gs 'stat'
  937. huntsexa = rand(2,5)
  938. gs 'hunters', 'rng_6'
  939. end
  940. if $ARGS[0]='huntersgroupVas':
  941. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvas.jpg"></center>'
  942. if huntersexnude = 1 or forest_huntersex = 3:'Igor lies on the ground, makes you straddle him while he''s fucking you relentlessly... At the same time you grab Andreis'' and Sergeis'' cocks and start jerking them off.'
  943. if forest_gopsex = 3:'Igor lies on the ground, you straddle him and he lead his cock inside you... You grab Mitkas'' and Kolyambas'' cocks and start jerking them off.'
  944. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  945. if forest_gopsex = 3:gs 'boyStat', 'A61'
  946. gs 'oral', 'start', 5, 'gangbang'
  947. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  948. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  949. if forest_gopsex = 3:gs 'boyStat', 'A63'
  950. gs 'oral', 'start', 5, 'gangbang'
  951. if klismaday ! daystart and andrhuntanal > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  952. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  953. if forest_gopsex = 3:gs 'boyStat', 'A62'
  954. if boyCsex = 0: boyCsex = 1
  955. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  956. gs 'arousal', 'vaginal', 5, 'sub'
  957. minut -= 5
  958. gs 'stat'
  959. huntsexa = rand(1,4)
  960. gs 'hunters', 'rng_5'
  961. end
  962. if $ARGS[0]='huntersgroupVas1':
  963. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvas1.'+rand(0,4)+'.jpg"></center>'
  964. if huntersexnude = 1 or forest_huntersex = 3:'Andrei positions you on all fours and enters you from the behind while Sergei steps in front of you and thrusts his cock inside your mouth...'
  965. if forest_gopsex = 3:'Mitka puts you on all fours and begins to fuck you from behind, you tell Kolyamba to near you as you want to taste his cock...'
  966. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  967. if forest_gopsex = 3:gs 'boyStat', 'A61'
  968. gs 'oral', 'start', 5, 'gangbang'
  969. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  970. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  971. if forest_gopsex = 3:gs 'boyStat', 'A63'
  972. if boyAsex = 0: boyAsex = 1
  973. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  974. gs 'arousal', 'vaginal', 5, 'sub'
  975. minut -= 5
  976. gs 'stat'
  977. huntsexa = rand(1,4)
  978. gs 'hunters', 'rng_5'
  979. end
  980. if $ARGS[0]='huntersgroupVa':
  981. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupva.jpg"></center>'
  982. if huntersexnude = 1 or forest_huntersex = 3:'Andrei enters you from the behind, Sergei''s cock is dangling in front of your mouth...'
  983. if forest_gopsex = 3:'Mitka enters you from the behind, Kolyamba ''s cock is dangling in front of your mouth...'
  984. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  985. if forest_gopsex = 3:gs 'boyStat', 'A61'
  986. gs 'oral', 'start', 5, 'gangbang'
  987. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  988. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  989. if forest_gopsex = 3:gs 'boyStat', 'A63'
  990. if boyAsex = 0: boyAsex = 1
  991. gs 'dinsex','vaginal_sex',10
  992. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  993. if forest_gopsex = 3:gs 'boyStat', 'A61'
  994. gs 'cum_call', 'mouth_swallow', $boy, 1
  995. gs 'dinsex', 'dinrandswallow'
  996. '<<$boydesc>> came in your mouth...'
  997. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  998. gs 'arousal', 'vaginal', 5, 'sub'
  999. minut -= 5
  1000. gs 'stat'
  1001. huntsexa = rand(1,4)
  1002. gs 'hunters', 'rng_7'
  1003. end
  1004. if $ARGS[0]='huntersgroupVs':
  1005. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvs.jpg"></center>'
  1006. if huntersexnude = 1 or forest_huntersex = 3:'Andrei thrusts inside you, while you suck Sergei off...'
  1007. if forest_gopsex = 3:'Mitka thrusts inside you, while you suck Kolyamba off...'
  1008. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1009. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1010. gs 'oral', 'start', 5, 'gangbang'
  1011. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1012. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1013. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1014. if boyAsex = 0: boyAsex = 1
  1015. gs 'dinsex', 'boy_puts_condom'
  1016. gs 'dinsex','vaginal_sex',10
  1017. gs 'dinsex','sexcum'
  1018. '<<$boydesc>> cums and lies down exhausted next to you...'
  1019. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1020. gs 'arousal', 'vaginal', 5, 'sub'
  1021. minut -= 5
  1022. gs 'stat'
  1023. huntsexa = rand(2,4)
  1024. gs 'hunters', 'rng_2'
  1025. end
  1026. if $ARGS[0]='huntersgroupVi':
  1027. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvi.jpg"></center>'
  1028. if huntersexnude = 1 or forest_huntersex = 3:'Igor lies down on the ground with his cock out, he commands you to straddle him. While Igor enters you... Andrei and Sergei tell you to start sucking them off.'
  1029. if forest_gopsex = 3:'Vasyan lies down on the ground with his cock out, he commands you to straddle him. Mitka and Kolyamba tell you to start sucking them off.'
  1030. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1031. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1032. gs 'oral', 'start', 5, 'gangbang'
  1033. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1034. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1035. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1036. gs 'oral', 'start', 5, 'gangbang'
  1037. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1038. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1039. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1040. if boyCsex = 0: boyCsex = 1
  1041. gs 'dinsex','vaginal_sex',10
  1042. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1043. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1044. gs 'cum_call', 'face', $boy, 1
  1045. gs 'cum_call', 'mouth_swallow', $boy, 1
  1046. gs 'dinsex', 'dinrandswallow'
  1047. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1048. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1049. gs 'cum_call', 'face', $boy, 1
  1050. gs 'cum_call', 'mouth_swallow', $boy, 1
  1051. gs 'dinsex', 'dinrandswallow'
  1052. if huntersexnude = 1 or forest_huntersex = 3:'Andrei and Sergei reached climax pretty quickly finishing in your mouth. You tried to swallow it all but fail to hold it inside your mouth, trickling down your chin. Andrei and Sergei walk away satisfied, while you continue riding Igor...'
  1053. if forest_gopsex = 3:'Mitka with Kolyamba reached climax pretty quickly finishing in your mouth. You tried to swallow it all but fail to hold it inside your mouth, trickling down your chin. Mitka with Kolyamba walk away satisfied, while you continue riding Vasyan... '
  1054. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1055. gs 'arousal', 'vaginal', 5, 'sub'
  1056. minut -= 5
  1057. gs 'stat'
  1058. huntsexa = rand(2,4)
  1059. gs 'hunters', 'rng_3'
  1060. end
  1061. if $ARGS[0]='huntersgroupVis':
  1062. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvis.jpg"></center>'
  1063. if huntersexnude = 1 or forest_huntersex = 3:'Igor lies down on the ground with his cock out, he commands you to straddle him. While Igor enters you... Andrei and Sergei tell you to start sucking them off.'
  1064. if forest_gopsex = 3:'Vasyan lies down on the ground with his cock out, he commands you to straddle him. Mitka and Kolyamba tell you to start sucking them off.'
  1065. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1066. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1067. gs 'oral', 'start', 5, 'gangbang'
  1068. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1069. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1070. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1071. gs 'oral', 'start', 5, 'gangbang'
  1072. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1073. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1074. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1075. if boyCsex = 0: boyCsex = 1
  1076. gs 'dinsex','vaginal_sex',10
  1077. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1078. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1079. gs 'cum_call', 'mouth_swallow', $boy, 1
  1080. gs 'dinsex', 'dinrandswallow'
  1081. if huntersexnude = 1 or forest_huntersex = 3:'A satisfied Andrei steps aside, you continue fucking Igor, and sucking Sergei off... '
  1082. if forest_gopsex = 3:'A satisfied Mitka steps aside, you continue fucking Vasyan, and sucking Kolyamba off... '
  1083. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1084. gs 'arousal', 'vaginal', 5, 'sub'
  1085. minut -= 5
  1086. gs 'stat'
  1087. huntsexa = rand(2,5)
  1088. gs 'hunters', 'rng_8'
  1089. end
  1090. if $ARGS[0]='huntersgroupVis1':
  1091. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvis1.'+rand(0,4)+'.jpg"></center>'
  1092. if huntersexnude = 1 or forest_huntersex = 3:'Sergei positions you on all fours and enters you from the behind while Igor steps in front of you and thrusts his cock inside your mouth...'
  1093. if forest_gopsex = 3:'Kolyamba positions you on all fours and enters you from the behind while Vasyan steps in front of you and thrusts his cock inside your mouth...'
  1094. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1095. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1096. gs 'oral', 'start', 5, 'gangbang'
  1097. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1098. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1099. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1100. if boyBsex = 0: boyBsex = 1
  1101. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1102. gs 'arousal', 'vaginal', 5, 'sub'
  1103. minut -= 5
  1104. gs 'stat'
  1105. huntsexa = rand(2,5)
  1106. gs 'hunters', 'rng_1'
  1107. end
  1108. if $ARGS[0]='huntersgroupVi1':
  1109. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvi1.jpg"></center>'
  1110. if huntersexnude = 1 or forest_huntersex = 3:'Sergei enters you from the behind, Igor''s cock is dangling in front of your mouth...'
  1111. if forest_gopsex = 3:'Kolyamba enters you from the behind, Vasyan''s cock is dangling in front of your mouth...'
  1112. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1113. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1114. gs 'oral', 'start', 5, 'gangbang'
  1115. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1116. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1117. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1118. if boyBsex = 0: boyBsex = 1
  1119. gs 'dinsex', 'boy_puts_condom'
  1120. gs 'dinsex','vaginal_sex',10
  1121. gs 'dinsex','sexcum'
  1122. '<<$boydesc>> finish and search for a spot where they could rest in the shade...'
  1123. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1124. gs 'arousal', 'vaginal', 5, 'sub'
  1125. minut -= 5
  1126. gs 'stat'
  1127. huntsexa = rand(2,4)
  1128. gs 'hunters', 'rng_3'
  1129. end
  1130. if $ARGS[0]='huntersgroupVs1':
  1131. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvs1.jpg"></center>'
  1132. if huntersexnude = 1 or forest_huntersex = 3:'Sergei spreads and enters your vagina while you''re on all fours, Igor grabs you by the head making you suck him off...'
  1133. if forest_gopsex = 3:'Kolyamba spreads and enters your vagina while you''re on all fours, Vasyan rabs you by the head making you suck him off...'
  1134. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1135. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1136. gs 'oral', 'start', 5, 'gangbang'
  1137. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1138. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1139. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1140. if boyBsex = 0: boyBsex = 1
  1141. gs 'dinsex','vaginal_sex',10
  1142. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1143. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1144. gs 'cum_call', 'mouth_swallow', $boy, 1
  1145. gs 'dinsex', 'dinrandswallow'
  1146. if huntersexnude = 1 or forest_huntersex = 3:'Igor cums in your mouth and crashes next you, while Sergei keeps fucking you...'
  1147. if forest_gopsex = 3:'Vasyan cums in your mouth and crashes next you, while Kolyamba keeps fucking you...'
  1148. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1149. gs 'arousal', 'vaginal', 5, 'sub'
  1150. minut -= 5
  1151. gs 'stat'
  1152. huntsexa = rand(2,4)
  1153. gs 'hunters', 'rng_2'
  1154. end
  1155. if $ARGS[0]='huntersgroupVia':
  1156. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvia.jpg"></center>'
  1157. if huntersexnude = 1 or forest_huntersex = 3:'Igor lies on the ground, makes you straddle him while he''s fucking you relentlessly... At the same time you grab Andreis'' and Sergeis'' cocks and start jerking them off.'
  1158. if forest_gopsex = 3:'Vasyan lies on the ground, makes you straddle him while he''s fucking you relentlessly... At the same time you grab Mitkas'' and Kolambas'' cocks and start jerking them off.'
  1159. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1160. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1161. gs 'oral', 'start', 5, 'gangbang'
  1162. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1163. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1164. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1165. gs 'oral', 'start', 5, 'gangbang'
  1166. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1167. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1168. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1169. if boyCsex = 0: boyCsex = 1
  1170. gs 'dinsex','vaginal_sex',10
  1171. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1172. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1173. gs 'cum_call', 'face', $boy, 1
  1174. gs 'cum_call', 'mouth_swallow', $boy, 1
  1175. gs 'dinsex', 'dinrandswallow'
  1176. if huntersexnude = 1 or forest_huntersex = 3:'Sergei cums in your mouth. You''re not able to swallow the load and the some part of it gets smeared over your face. Sergei steppes aside satisfied, you keep on fucking Igor, and sucking Andrei...'
  1177. if forest_gopsex = 3:' Kolyamba cums in your mouth. You''re not able to swallow the load and the some part of it gets smeared over your face. Kolyamba steppes aside satisfied, you keep on fucking Vasyan, and sucking Mitka...'
  1178. gs 'arousal', 'hj', 5, 'sub', 'gangbang'
  1179. gs 'arousal', 'vaginal', 5, 'sub', 'rough'
  1180. minut -= 5
  1181. gs 'stat'
  1182. huntsexa = rand(2,5)
  1183. gs 'hunters', 'rng_4'
  1184. end
  1185. if $ARGS[0]='huntersgroupVia1':
  1186. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvia1.'+rand(0,2)+'.jpg"></center>'
  1187. if huntersexnude = 1 or forest_huntersex = 3:'Igor spreads your anus, using his spit as lube while he enters you, Andrei makes you suck him off...'
  1188. if forest_gopsex = 3:'Vasyan spreads your anus, using his spit as lube while he enters you, Mitka makes you suck him off...'
  1189. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1190. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1191. gs 'oral', 'start', 5, 'gangbang'
  1192. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1193. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1194. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1195. if boyCsex = 0: boyCsex = 1
  1196. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1197. gs 'arousal', 'anal', 5, 'sub'
  1198. minut -= 5
  1199. gs 'stat'
  1200. huntsexa = rand(2,5)
  1201. gs 'hunters', 'rng_4'
  1202. end
  1203. if $ARGS[0]='huntersgroupVi2':
  1204. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvi2.jpg"></center>'
  1205. if huntersexnude = 1 or forest_huntersex = 3:'Igor starts fucking you in the ass, Andrei puts his cock in your mouth...'
  1206. if forest_gopsex = 3:'Vasyan starts fucking you in the ass, Mitka puts his cock in your mouth...'
  1207. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1208. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1209. gs 'oral', 'start', 5, 'gangbang'
  1210. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1211. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1212. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1213. if boyCsex = 0: boyCsex = 1
  1214. gs 'dinsex','vaginal_sex',10
  1215. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1216. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1217. gs 'cum_call', 'mouth_swallow', $boy, 1
  1218. gs 'dinsex', 'dinrandswallow'
  1219. if huntersexnude = 1 or forest_huntersex = 3:'Andrei cums and walks away, you continue to accustom your anus with Igors'' thrusts...'
  1220. if forest_gopsex = 3:'Mitka cums and walks away, you continue to accustom your anus with Vasyan''s thrusts...'
  1221. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1222. gs 'arousal', 'anal', 5, 'sub'
  1223. minut -= 5
  1224. gs 'stat'
  1225. huntsexa = rand(2,4)
  1226. gs 'hunters', 'rng_3'
  1227. end
  1228. if $ARGS[0]='huntersgroupVa1':
  1229. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupva1.jpg"></center>'
  1230. if huntersexnude = 1 or forest_huntersex = 3:'Igor enters your ass. You start sucking Andrei...'
  1231. if forest_gopsex = 3:'Vasyan enters your ass. You start sucking Mitka...'
  1232. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1233. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1234. gs 'oral', 'start', 5, 'gangbang'
  1235. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1236. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1237. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1238. if boyCsex = 0: boyCsex = 1
  1239. gs 'dinsex', 'boy_puts_condom'
  1240. gs 'dinSex','boy_wants_anal','','lubri'
  1241. gs 'dinsex','vaginal_sex',10
  1242. gs 'dinsex','sexcum'
  1243. if huntersexnude = 1 or forest_huntersex = 3:'A satisfied Igor stepped aside, you continue on with Andrei...'
  1244. if forest_gopsex = 3:'Vasyan walks away satisfied, you continue pleasuring Mitka... '
  1245. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1246. gs 'arousal', 'anal', 5, 'sub'
  1247. minut -= 5
  1248. gs 'stat'
  1249. huntsexa = rand(1,4)
  1250. gs 'hunters', 'rng_7'
  1251. end
  1252. if $ARGS[0]='huntersgroupVaOsHi':
  1253. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvaoshi1.'+rand(0,3)+'.jpg"></center>'
  1254. if huntersexnude = 1 or forest_huntersex = 3:'You go down on all fours, Andrei enters you from behind, Sergei and Igor stand in front of you. You begin sucking Sergei''s cock while you jerk off Igor...'
  1255. if forest_gopsex = 3:'You go down on all fours, Mitka enters you from behind, Kolyamba and Vasyan stand in front of you. You begin sucking Kolyamba''s cock while you jerk off Vasyan...'
  1256. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1257. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1258. gs 'oral', 'start', 5, 'gangbang'
  1259. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1260. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1261. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1262. if boyAsex = 0: boyAsex = 1
  1263. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1264. gs 'arousal', 'anal', 5, 'sub', 'gangbang'
  1265. gs 'arousal', 'hj', 5, 'sub', 'gangbang'
  1266. minut -= 5
  1267. gs 'stat'
  1268. huntsexa = rand(2,5)
  1269. gs 'hunters', 'rng_6'
  1270. end
  1271. if $ARGS[0]='huntersgroupVOsHi':
  1272. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvaoshi1.2.jpg"></center>'
  1273. if huntersexnude = 1 or forest_huntersex = 3:'You go down on all fours, Andrei starts pounding you from behind, Sergei and Igor stand in front of you. You begin sucking Sergei''s cock while you jerk off Igor...'
  1274. if forest_gopsex = 3:'You go down on all fours, Mitka starts pounding you from behind, Kolyamba and Vasyan stand in front of you. You begin sucking Kolyamba''s cock while you jerk off Vasyan...'
  1275. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1276. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1277. gs 'oral', 'start', 5, 'gangbang'
  1278. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1279. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1280. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1281. if boyAsex = 0: boyAsex = 1
  1282. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1283. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1284. gs 'arousal', 'hj', 5, 'sub', 'gangbang'
  1285. minut -= 5
  1286. gs 'stat'
  1287. huntsexa = rand(2,5)
  1288. gs 'hunters', 'rng_8'
  1289. end
  1290. if $ARGS[0]='huntersgroupVaOHi':
  1291. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvaohi.jpg"></center>'
  1292. if huntersexnude = 1 or forest_huntersex = 3:'The men make you go down on all fours, Andrei starts pounding you from behind, Sergei and Igor stand in front of you. You begin sucking Sergei''s cock while you jerk off Igor...'
  1293. if forest_gopsex = 3:'The men make you go down on all fours, Mitka starts pounding you from behind, Kolyamba and Vasyan stand in front of you. You begin sucking Kolyamba''s cock while you jerk off Vasyan...'
  1294. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1295. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1296. gs 'oral', 'start', 5, 'gangbang'
  1297. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1298. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1299. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1300. if boyAsex = 0: boyAsex = 1
  1301. gs 'dinsex','vaginal_sex',10
  1302. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1303. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1304. gs 'cum_call', 'mouth_swallow', $boy, 1
  1305. gs 'dinsex', 'dinrandswallow'
  1306. if huntersexnude = 1 or forest_huntersex = 3:'Sergei steps away satisfied, Andrei continues fucking while you keep masturbating Igor... '
  1307. if forest_gopsex = 3:'Kolyamba steps away satisfied, Mitka continues fucking while you keep masturbating Vasyan... '
  1308. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1309. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1310. gs 'arousal', 'hj', 5, 'sub', 'gangbang'
  1311. minut -= 5
  1312. gs 'stat'
  1313. huntsexa = rand(2,5)
  1314. gs 'hunters', 'rng_4'
  1315. end
  1316. if $ARGS[0]='huntersgroupDPasi':
  1317. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupdpasi1.'+rand(0,2)+'.jpg"></center>'
  1318. if huntersexnude = 1 or forest_huntersex = 3:'Andrei pulls you on top of him. Igor steps behind you, goes down on his knees and starts fucking you in the ass. While you are adjusting to getting fucked by two cocks Sergei steps up to you and shoves his cock in your mouth...'
  1319. if forest_gopsex = 3:'You straddle Mitka laying on the ground, he starts fucking you. Vasyan steps behind you, goes down on his knees and starts fucking you in the ass. While you are adjusting to getting fucked by two cocks Kolyamba steps up to you and shoves his cock in your mouth...'
  1320. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1321. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1322. gs 'oral', 'start', 5, 'gangbang'
  1323. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1324. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1325. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1326. if huntersexnude = 1 or forest_huntersex = 3:$boy2 = 'Igor' & silavag = 2 & dick2 = 16
  1327. if forest_gopsex = 3:$boy2 = 'Vasyan' & silavag = 0 & dick2 = 14
  1328. if boyAsex = 0: boyAsex = 1
  1329. if boyCsexa = 0: boyCsexa = 1
  1330. dirty_dickC += 1
  1331. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1332. gs 'arousal', 'anal', 5, 'sub', 'gangbang'
  1333. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1334. minut -= 5
  1335. gs 'stat'
  1336. if lubonus = 0:lubonus += 1
  1337. huntsexa = rand(2,5)
  1338. gs 'hunters', 'rng_6'
  1339. end
  1340. if $ARGS[0]='huntersgroupDPsi':
  1341. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupdpai.jpg"></center>'
  1342. if huntersexnude = 1 or forest_huntersex = 3:'You straddle Andrei laying on the ground, he starts fucking you. Igor comes from behind, goes down on his knees and shoves his cock in your ass. You keep thinking to yourself you just have to relax and that it will soon be over. As you take a sigh of relief Sergei steps in front of you and sticks his cock deep inside your mouth...'
  1343. if forest_gopsex = 3:'You straddle Mitka, he starts fucking you. Vasyan comes from behind, goes down on his knees and shoves his cock in your ass. You keep thinking to yourself you just have to relax and that it will soon be over. As you take a sigh of relief Kolyamba steps in front of you and sticks his cock deep inside your mouth...'
  1344. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1345. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1346. gs 'oral', 'start', 5, 'gangbang'
  1347. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1348. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172','a'
  1349. if forest_gopsex = 3:gs 'boyStat', 'A63','a'
  1350. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173','b'
  1351. if forest_gopsex = 3:gs 'boyStat', 'A62','b'
  1352. if boyAsex = 0: boyAsex = 1
  1353. if boyCsexa = 0: boyCsexa = 1
  1354. dirty_dickC += 1
  1355. gs 'dinsex', 'boy_puts_his_condom',$boydesc1
  1356. gs 'dinSex','boy_wants_anal',$boydesc2,'lubri'
  1357. gs 'dinsex2','doublepenetration',15,'sub','gangbang'
  1358. gs 'dinsex','sexcum'
  1359. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1360. '<<$boydesc>> cums and walks away...'
  1361. minut -= 5
  1362. gs 'stat'
  1363. huntsexa = rand(2,5)
  1364. gs 'hunters', 'rng_8'
  1365. end
  1366. if $ARGS[0]='huntersgroupDPas':
  1367. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupdpas.jpg"></center>'
  1368. if huntersexnude = 1 or forest_huntersex = 3:'Andrei starts pounding your vagina while Igor enters your anus, you just have to relax and suck Sergei''s cock...'
  1369. if forest_gopsex = 3:'Mitka starts pounding your vagina while Vasyan enters your anus, you just have to relax and suck Kolyamba''s cock...'
  1370. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1371. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1372. gs 'oral', 'start', 5, 'gangbang'
  1373. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1374. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172','a'
  1375. if forest_gopsex = 3:gs 'boyStat', 'A63','a'
  1376. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173','b'
  1377. if forest_gopsex = 3:gs 'boyStat', 'A62','b'
  1378. if boyAsex = 0: boyAsex = 1
  1379. if boyCsexa = 0: boyCsexa = 1
  1380. gs 'dinsex', 'boy_puts_his_condom',$boydesc1
  1381. gs 'dinSex','boy_wants_anal',$boydesc2,'lubri'
  1382. gs 'dinsex2','doublepenetration',10,'sub','gangbang'
  1383. 'After a while <<$boydesc2>> grunts and you feel your ass filling up with sprem. He finishes and walks away.'
  1384. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1385. minut -= 5
  1386. gs 'stat'
  1387. lubonus += rand(2,3)
  1388. huntsexa = rand(1,4)
  1389. gs 'hunters', 'rng_5'
  1390. end
  1391. if $ARGS[0]='huntersgroupDPai':
  1392. pose = 1
  1393. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupdpai.jpg"></center>'
  1394. if huntersexnude = 1 or forest_huntersex = 3:'You straddle Andrei laying on the ground, he starts fucking you. Igor steps behind you, goes down on his knees and starts fucking you in the ass. While you are adjusting to getting fucked by two cocks Sergei steps up to you and shoves his dick in your mouth...'
  1395. if forest_gopsex = 3:'You straddle Mitka laying on the ground, he starts fucking you. Vasyan steps behind you, goes down on his knees and starts fucking you in the ass. While you are adjusting to getting fucked by two cocks Kolyamba steps up to you and shoves his cock in your mouth...'
  1396. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1397. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1398. gs 'oral', 'start', 5, 'gangbang'
  1399. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1400. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1401. if forest_gopsex = 3:gs 'boyStat', 'A63','a'
  1402. if huntersexnude = 1 or forest_huntersex = 3:$boy2 = 'Igor' & silavag = 2 & dick2 = 16
  1403. if forest_gopsex = 3:gs 'boyStat', 'A62','b'
  1404. if boyAsex = 0: boyAsex = 1
  1405. if boyCsexa = 0: boyCsexa = 1
  1406. dirty_dickC += 1
  1407. gs 'dinsex', 'boy_puts_his_condom',$boydesc1
  1408. gs 'dinSex','boy_wants_anal',$boydesc2,'lubri'
  1409. gs 'dinsex2','doublepenetration',15,'sub','gangbang'
  1410. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1411. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1412. gs 'cum_call', 'mouth_swallow', $boy, 1
  1413. gs 'dinsex', 'dinrandswallow'
  1414. if huntersexnude = 1 or forest_huntersex = 3:'Satisfied <<$boydesc>> steps away while Andrei and Igor continue to fuck you relentlessly... '
  1415. if huntersexnude = 1 or forest_huntersex = 3:'Satisfied <<$boydesc>> steps away while Mitka and Vasyan continue to fuck you relentlessly... '
  1416. *pl
  1417. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1418. gs 'arousal', 'anal', 5, 'sub', 'gangbang'
  1419. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1420. minut -= 5
  1421. gs 'stat'
  1422. huntsexa = rand(2,5)
  1423. gs 'hunters', 'rng_4'
  1424. end
  1425. if $ARGS[0]='huntersgroupVsOaHi':
  1426. pose = 0
  1427. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvsoahi1.'+rand(0,1)+'.jpg"></center>'
  1428. if huntersexnude = 1 or forest_huntersex = 3:'Sergei positions you on your side and enters from behind. Andrei buries his cock in your mouth...'
  1429. if forest_gopsex = 3:'Kolyamba positions you on your side and enters from behind. Mitka buries his cock in your mouth...'
  1430. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1431. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1432. gs 'oral', 'start', 5, 'gangbang'
  1433. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1434. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1435. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1436. if boyBsex = 0: boyBsex = 1
  1437. gs 'dinsex', 'boy_puts_condom'
  1438. gs 'dinsex','vaginal_sex',10
  1439. if huntersexnude = 1 or forest_huntersex = 3:'Igor grabs one of your hands and makes you jerk him off...'
  1440. if forest_gopsex = 3:'Vasyan grabs one of your hands and makes you jerk him off...'
  1441. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1442. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1443. minut -= 5
  1444. gs 'stat'
  1445. huntsexa = rand(2,5)
  1446. gs 'hunters', 'rng_6'
  1447. end
  1448. if $ARGS[0]='huntersgroupVsOHi':
  1449. pose = 0
  1450. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvsoahi1.'+rand(0,1)+'.jpg"></center>'
  1451. if huntersexnude = 1 or forest_huntersex = 3:'Sergei puts you on your side and starts fucking you. Andrei shoves his cock in your mouth. You grab Igor''s member and begin to masturbate him...'
  1452. if forest_gopsex = 3:'Kolyamba puts you on your side and starts fucking you. Mitka shoves his cock in your mouth. You grab Vasyan''s member and begin to masturbate him...'
  1453. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1454. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1455. gs 'oral', 'start', 5, 'gangbang'
  1456. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1457. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1458. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1459. if boyBsex = 0: boyBsex = 1
  1460. gs 'dinsex','vaginal_sex',10
  1461. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1462. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1463. gs 'cum_call', 'mouth_swallow', $boy, 1
  1464. gs 'dinsex', 'dinrandswallow'
  1465. if huntersexnude = 1 or forest_huntersex = 3:'A satisfied Andrei stepes aside, you continue pleasuring Sergei and Igor... '
  1466. if forest_gopsex = 3:'A satisfied Mitka steps aside, you continue pleasuring Kolyamba and Vasyan... '
  1467. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1468. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1469. gs 'arousal', 'hj', 5, 'sub', 'gangbang'
  1470. minut -= 5
  1471. gs 'stat'
  1472. huntsexa = rand(2,5)
  1473. gs 'hunters', 'rng_8'
  1474. end
  1475. if $ARGS[0]='huntersgroupVsOi':
  1476. pose = 0
  1477. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvsoi1.'+rand(0,2)+'.jpg"></center>'
  1478. if huntersexnude = 1 or forest_huntersex = 3:'Sergei positions you on the side and enters you from behind. Igor grabs you by the head and thrusts his cock inside your mouth...'
  1479. if forest_gopsex = 3:'Kolyamba positions you on the side and enters you from behind. Vasyan grabs you by the head and thrusts his cock inside your mouth...'
  1480. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1481. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1482. gs 'oral', 'start', 5, 'gangbang'
  1483. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1484. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1485. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1486. if boyBsex = 0: boyBsex = 1
  1487. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1488. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1489. minut -= 5
  1490. gs 'stat'
  1491. huntsexa = rand(2,5)
  1492. gs 'hunters', 'rng_8'
  1493. end
  1494. if $ARGS[0]='huntersgroupVOi':
  1495. pose = 0
  1496. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvoi.jpg"></center>'
  1497. if huntersexnude = 1 or forest_huntersex = 3:'Sergei fucks you sideways while Igor shoves his cock deep inside your mouth...'
  1498. if forest_gopsex = 3:'Kolyamba fucks you sideways while Vasyan shoves his cock deep inside your mouth...'
  1499. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1500. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1501. gs 'oral', 'start', 5, 'gangbang'
  1502. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1503. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1504. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1505. if boyBsex = 0: boyBsex = 1
  1506. gs 'arousal', 'bj', 5, 'sub', 'gangbang', 'deepthroat'
  1507. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1508. minut -= 5
  1509. gs 'stat'
  1510. huntsexa = rand(2,4)
  1511. gs 'hunters', 'rng_3'
  1512. end
  1513. if $ARGS[0]='huntersgroupVsO':
  1514. pose = 0
  1515. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvso.jpg"></center>'
  1516. if huntersexnude = 1 or forest_huntersex = 3:'Sergei keeps fucking you sideways, Igor buries his cock in your mouth...'
  1517. if forest_gopsex = 3:'Kolyamba keeps fucking you sideways, Vasyan buries his cock in your mouth...'
  1518. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1519. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1520. gs 'oral', 'start', 5, 'gangbang'
  1521. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1522. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1523. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1524. if boyBsex = 0: boyBsex = 1
  1525. gs 'dinsex','vaginal_sex',10
  1526. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1527. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1528. gs 'cum_call', 'mouth_swallow', $boy, 1
  1529. gs 'dinsex', 'dinrandswallow'
  1530. if huntersexnude = 1 or forest_huntersex = 3:'Igor cums, feeling satisfied he steps aside, Sergei keeps on fucking you... '
  1531. if forest_gopsex = 3:'Vasyan cums, feeling satisfied he walks away, Kolyamba keeps on fucking you... '
  1532. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1533. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1534. minut -= 5
  1535. gs 'stat'
  1536. huntsexa = rand(2,4)
  1537. gs 'hunters', 'rng_2'
  1538. end
  1539. if $ARGS[0]='huntersgroupVOaHi':
  1540. pose = 0
  1541. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvsoahi1.'+rand(0,1)+'.jpg"></center>'
  1542. if huntersexnude = 1 or forest_huntersex = 3:'Sergei positions you on your side and enters from behind. Andrei buries his cock in your mouth. Igor grabs one of your hands and makes you jerk him off...'
  1543. if forest_gopsex = 3:'Kolyamba positions you on your side and enters from behind. Mitka buries his cock in your mouth. Vasyan grabs one of your hands and makes you jerk him off...'
  1544. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1545. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1546. gs 'oral', 'start', 5, 'gangbang'
  1547. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1548. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1549. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1550. if boyBsex = 0: boyBsex = 1
  1551. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1552. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1553. gs 'arousal', 'hj', 5, 'sub', 'gangbang'
  1554. minut -= 5
  1555. gs 'stat'
  1556. huntsexa = rand(2,5)
  1557. gs 'hunters', 'rng_4'
  1558. end
  1559. if $ARGS[0]='huntersgroupViOa':
  1560. pose = 0
  1561. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvioa1.'+rand(0,1)+'.jpg"></center>'
  1562. if huntersexnude = 1 or forest_huntersex = 3:'Igor fucks you sideways while Andrei shoves his cock deep inside your mouth...'
  1563. if forest_gopsex = 3:'Vasyan fucks you sideways while Mitka shoves his cock deep inside your mouth...'
  1564. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1565. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1566. gs 'oral', 'start', 5, 'gangbang'
  1567. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1568. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1569. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1570. if boyCsex = 0: boyCsex = 1
  1571. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1572. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1573. minut -= 5
  1574. gs 'stat'
  1575. huntsexa = rand(2,5)
  1576. gs 'hunters', 'rng_4'
  1577. end
  1578. if $ARGS[0]='huntersgroupViO':
  1579. pose = 0
  1580. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvio.jpg"></center>'
  1581. if huntersexnude = 1 or forest_huntersex = 3:'Igor positions you sideways and enters you from behind. Andrei buries his cock in your mouth...'
  1582. if forest_gopsex = 3:'Vasyan positions you sideways and enters you from behind. Mitka buries his cock in your mouth...'
  1583. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1584. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1585. gs 'oral', 'start', 5, 'gangbang'
  1586. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1587. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1588. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1589. if boyCsex = 0: boyCsex = 1
  1590. gs 'dinsex','vaginal_sex',10
  1591. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1592. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1593. gs 'cum_call', 'mouth_swallow', $boy, 1
  1594. gs 'dinsex', 'dinrandswallow'
  1595. 'A satisfied <<$boydesc>> steps aside, the other guy keeps going on...'
  1596. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1597. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1598. minut -= 5
  1599. gs 'stat'
  1600. huntsexa = rand(2,4)
  1601. gs 'hunters', 'rng_3'
  1602. end
  1603. if $ARGS[0]='huntersgroupVaOs':
  1604. pose = 1
  1605. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvaos1.'+rand(0,3)+'.jpg"></center>'
  1606. if huntersexnude = 1 or forest_huntersex = 3:'Laying on your stomach, Andrei grabs hold of his cock and leads it inside you from behind. You begin pleasuring Sergei with your mouth...'
  1607. if forest_gopsex = 3:'Laying on your stomach, Mitka grabs hold of his cock and leads it inside you from behind. You begin pleasuring Kolyamba with your mouth...'
  1608. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1609. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1610. gs 'oral', 'start', 5, 'gangbang'
  1611. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1612. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1613. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1614. if boyAsex = 0: boyAsex = 1
  1615. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1616. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1617. minut -= 5
  1618. gs 'stat'
  1619. huntsexa = rand(1,4)
  1620. gs 'hunters', 'rng_5'
  1621. end
  1622. if $ARGS[0]='huntersgroupVOs':
  1623. pose = 1
  1624. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvos.jpg"></center>'
  1625. if huntersexnude = 1 or forest_huntersex = 3:'Andrei makes you lay down on your stomach, he steps behind you, spreads your pussy lips and starts thrusting. Sergei shoves his cock down your mouth...'
  1626. if forest_gopsex = 3:'Mitka makes you lay down on your stomach, he steps behind you, spreads your pussy lips and starts thrusting. Kolyamba shoves his cock down your mouth...'
  1627. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1628. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1629. gs 'oral', 'start', 5, 'gangbang'
  1630. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1631. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1632. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1633. if boyAsex = 0: boyAsex = 1
  1634. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1635. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1636. minut -= 5
  1637. gs 'stat'
  1638. huntsexa = rand(2,4)
  1639. gs 'hunters', 'rng_2'
  1640. end
  1641. if $ARGS[0]='huntersgroupVaO':
  1642. pose = 1
  1643. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvao.jpg"></center>'
  1644. if huntersexnude = 1 or forest_huntersex = 3:'Sergei enjoying the head he''s getting, grabs you by the head and forces you to go deeper. Engrossed by your cock sucking skills Andrei starts jerking off...'
  1645. if forest_gopsex = 3:'Mitka enjoying the head he''s getting, grabs you by the head and forces you to go deeper. Engrossed by your cock sucking skills Kolyamba starts jerking off...'
  1646. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1647. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1648. gs 'oral', 'start', 5, 'gangbang'
  1649. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1650. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1651. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1652. if boyAsex = 0: boyAsex = 1
  1653. gs 'dinsex','vaginal_sex',10
  1654. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1655. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1656. gs 'cum_call', 'mouth_swallow', $boy, 1
  1657. gs 'dinsex', 'dinrandswallow'
  1658. if huntersexnude = 1 or forest_huntersex = 3:'You feel Sergei''s cock throbbing inside your mouth, he starts grunting loudly and releases his spunk inside your mouth. Andrei now alone and warmed up tells you to...'
  1659. if forest_gopsex = 3:'You feel Mitka''s cock throbbing inside your mouth, he starts grunting loudly and releases his spunk inside your mouth. Kolyamba now alone and warmed up tells you to...'
  1660. *nl
  1661. gs 'arousal', 'bj', 5, 'sub', 'gangbang', 'deepthroat'
  1662. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1663. minut -= 5
  1664. gs 'stat'
  1665. huntsexa = rand(1,4)
  1666. gs 'hunters', 'rng_7'
  1667. end
  1668. if $ARGS[0]='huntersgroupAsOa':
  1669. pose = 1
  1670. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupasoa.jpg"></center>'
  1671. if huntersexnude = 1 or forest_huntersex = 3:'Sergei positions you on all fours, takes out his cock, spits on his hand, lubes his cock and enters your anus. Andrei kneels in front of you, grabs you by the neck and tells you to start sucking his penis head...'
  1672. if forest_gopsex = 3:'Kolyamba positions you on all fours, takes out his cock, spits on his hand, lubes his cock and enters your anus. Mitka kneels in front of you, grabs you by the neck and tells you to start sucking his penis head...'
  1673. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1674. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1675. gs 'oral', 'start', 5, 'gangbang'
  1676. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1677. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1678. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1679. if boyBsexa = 0: boyBsexa = 1
  1680. dirty_dickB += 1
  1681. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1682. gs 'arousal', 'anal', 5, 'sub', 'gangbang'
  1683. minut -= 5
  1684. gs 'stat'
  1685. huntsexa = rand(1,4)
  1686. gs 'hunters', 'rng_5'
  1687. end
  1688. if $ARGS[0]='huntersgroupAsO':
  1689. pose = 1
  1690. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupaso.jpg"></center>'
  1691. if huntersexnude = 1 or forest_huntersex = 3:'Positioned on all fours Sergei takes out his cock and began pounding you from behind, Andrei whips out his cock and shoves it down your throat...'
  1692. if forest_gopsex = 3:'Positioned on all fours Kolambatakes out his cock and began pounding you from behind, Mitka whips out his cock and shoves it down your throat...'
  1693. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1694. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1695. gs 'oral', 'start', 5, 'gangbang'
  1696. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1697. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1698. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1699. if boyBsexa = 0: boyBsexa = 1
  1700. dirty_dickB += 1
  1701. gs 'dinSex','boy_wants_anal','','lubri' & gs 'dinsex','analsex'
  1702. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1703. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1704. gs 'cum_call', 'mouth_swallow', $boy, 1
  1705. gs 'dinsex', 'dinrandswallow'
  1706. if huntersexnude = 1 or forest_huntersex = 3:'A satisfied Andrei cums and moves away while Sergei continues to pound you wondering if he should...'
  1707. if forest_gopsex = 3:'A satisfied Mitka cums and moves away while Kolyamba continues to pound you wondering if he should...'
  1708. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1709. gs 'arousal', 'anal', 5, 'sub', 'gangbang'
  1710. minut -= 5
  1711. gs 'stat'
  1712. huntsexa = rand(2,4)
  1713. gs 'hunters', 'rng_2'
  1714. end
  1715. if $ARGS[0]='huntersgroupAOa':
  1716. pose = 1
  1717. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupaoa.jpg"></center>'
  1718. if huntersexnude = 1 or forest_huntersex = 3:'You go down on all fours, Sergei grabs his cock and leads it inside you. Andrei kneels down with his swollen member right by your mouth...'
  1719. if forest_gopsex = 3:'You go down on all fours, Kolyamba grabs his cock and leads it inside you. Mitka kneels down with his swollen member right by your mouth...'
  1720. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1721. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1722. gs 'oral', 'start', 5, 'gangbang'
  1723. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  1724. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1725. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1726. if boyBsexa = 0: boyBsexa = 1
  1727. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1728. gs 'arousal', 'anal', 5, 'sub', 'gangbang', 'rough'
  1729. minut -= 5
  1730. gs 'stat'
  1731. huntsexa = rand(1,4)
  1732. gs 'hunters', 'rng_7'
  1733. end
  1734. if $ARGS[0]='huntersgroupDPis':
  1735. pose = 1
  1736. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupdpis.jpg"></center>'
  1737. if huntersexnude = 1 or forest_huntersex = 3:'Igor, laying on the ground, leads you on top of him, entering your vagina. Sergei immediately crouches behind you and enters your anus...'
  1738. if forest_gopsex = 3:'Vasyan, laying on the ground, leads you on top of him, entering your vagina. Kolyamba immediately crouches behind you and enters your anus...'
  1739. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1740. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1741. if huntersexnude = 1 or forest_huntersex = 3:$boy2 = 'Sergei' & silavag = 1 & dick2 = 18
  1742. if forest_gopsex = 3:$boy2 = 'Calamba' & silavag = 0 & dick2 = 15
  1743. if boyCsex = 0: boyCsex = 1
  1744. if boyBsexa = 0: boyBsexa = 1
  1745. dirty_dickB += 1
  1746. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1747. gs 'arousal', 'anal', 5, 'sub', 'gangbang'
  1748. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1749. minut -= 5
  1750. gs 'stat'
  1751. huntsexa = rand(2,5)
  1752. gs 'hunters', 'rng_8'
  1753. end
  1754. if $ARGS[0]='huntersgroupDPia':
  1755. pose = 1
  1756. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupdpia.jpg"></center>'
  1757. if huntersexnude = 1 or forest_huntersex = 3:'Feeling ecstatic you tell the men you want to feel them both inside you simultaneously. Igor lies down on the ground, leading you on top of him while Andrei starts pounding your second hole...'
  1758. if forest_gopsex = 3:'Feeling ecstatic you tell the men you want to feel them both inside you simultaneously. Vasyan lies down on the ground, leading you on top of him while Mitka starts pounding your second hole...'
  1759. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1760. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1761. if huntersexnude = 1 or forest_huntersex = 3:$boy2 = 'Andrei' & silavag = 0 & dick2 = 20
  1762. if forest_gopsex = 3:$boy2 = 'Mitka' & silavag = 0 & dick2 = 16
  1763. if boyCsex = 0: boyCsex = 1
  1764. if boyAsexa = 0: boyAsexa = 1
  1765. dirty_dickA += 1
  1766. gs 'arousal', 'bj', 5, 'sub', 'gangbang'
  1767. gs 'arousal', 'anal', 5, 'sub', 'gangbang'
  1768. gs 'arousal', 'vaginal', 5, 'sub', 'gangbang'
  1769. minut -= 5
  1770. gs 'stat'
  1771. huntsexa = rand(2,5)
  1772. gs 'hunters', 'rng_4'
  1773. end
  1774. if $ARGS[0]='huntersgroupOis':
  1775. minut += 5
  1776. pose = 1
  1777. gs 'cum_call', 'face', $boy, 1
  1778. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupo1.'+rand(0,1)+'.jpg"></center>'
  1779. 'You''re on your knees masturbating their throbbing cocks right in front of your face. You see them grimace, they''re edging and are ready to cover your pretty little face with spunk. The men cum all over your face, satisfied they leave you by the bedspread...'
  1780. gs 'arousal', 'end'
  1781. gs 'stat'
  1782. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  1783. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  1784. end
  1785. if $ARGS[0]='huntersgroupOia':
  1786. minut += 5
  1787. pose = 1
  1788. gs 'cum_call', 'face', $boy, 1
  1789. if ($clothingworntype ! 'nude' and PCloswimwear = 0): gs 'cum_call', 'clothes_hidden', $boy, 1
  1790. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupo1.'+rand(0,1)+'.jpg"></center>'
  1791. 'You''re kneeling down eagerly awaiting the men to finish, hoping they''ll cover your face with their sprem. The men cum simultaneously, grunting loudly, shooting their spunk all over your face. They leave you behind sitting on a blanket craving for more...'
  1792. gs 'arousal', 'end'
  1793. gs 'stat'
  1794. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  1795. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  1796. end
  1797. if $ARGS[0]='huntersgroupOsa':
  1798. minut += 5
  1799. pose = 1
  1800. gs 'cum_call', 'face', $boy, 1
  1801. if ($clothingworntype ! 'nude' and PCloswimwear = 0):
  1802. gs 'cum_call', 'clothes_hidden', $boy, 1
  1803. else
  1804. gs 'cum_call', 'stomach', $boy, 1
  1805. end
  1806. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupo1.'+rand(0,1)+'.jpg"></center>'
  1807. 'The men order you on your knees, they''ve had enough and want to finish. You can see on their faces that they''re at the edge and you''ll soon feel their warm sperm all over the face. The sperm flowes down your chin, dripping down on your chest. The men leave you behind on a blanket covered in their spunk.'
  1808. gs 'arousal', 'end'
  1809. gs 'stat'
  1810. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  1811. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  1812. end
  1813. if $ARGS[0]='huntersgroupAa':
  1814. pose = 1
  1815. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1816. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1817. if boyAsexa = 0: boyAsexa = 1
  1818. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupa1.'+rand(0,4)+'.jpg"></center>'
  1819. '<<$boydesc>> tells you to go ass up face down. Without any hesitation he starts pounding your anus relentlessly...'
  1820. 'You hear <<$boydesc>> grunting from behind, his cock getting stiffer and stiffer. He should be reaching his limit soon you think to yourself. All of a sudden you hear a loud moan and you feel something warm inside your ass...'
  1821. gs 'cum_call', 'butt', $boy, 1
  1822. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1823. gs 'stat'
  1824. huntsexa = rand(1,4)
  1825. gs 'hunters', 'rng_7'
  1826. end
  1827. if $ARGS[0]='huntersgroupAaEnd1':
  1828. pose = 1
  1829. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1830. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1831. if boyAsexa = 0: boyAsexa = 1
  1832. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupaend1.jpg"></center>'
  1833. '<<$boydesc>> starts ravaging your anus, determinedly not slowing down...'
  1834. 'You hear <<$boydesc>> grunting from behind, his cock getting stiffer and stiffer. He should be reaching his limit soon you think to yourself. All of a sudden you hear a loud moan and you feel something warm inside your ass...'
  1835. gs 'cum_call', 'butt', $boy, 1
  1836. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1837. gs 'arousal', 'end'
  1838. gs 'stat'
  1839. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  1840. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  1841. end
  1842. if $ARGS[0]='huntersgroupAaEnd2':
  1843. pose = 1
  1844. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1845. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1846. if boyAsexa = 0: boyAsexa = 1
  1847. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupaaend2.jpg"></center>'
  1848. '<<$boydesc>> whispers that he''ll enjoy this and starts pummeling your anus. You let out a whimper, clearly enjoying yourself...'
  1849. 'You hear <<$boydesc>> grunting from behind, his cock getting stiffer and stiffer. He should be reaching his limit soon you think to yourself. All of a sudden you hear a loud moan and you feel something warm inside your ass...'
  1850. gs 'cum_call', 'butt', $boy, 1
  1851. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1852. gs 'arousal', 'end'
  1853. gs 'stat'
  1854. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  1855. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  1856. end
  1857. if $ARGS[0]='huntersgroupAs':
  1858. pose = 1
  1859. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1860. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1861. if boyBsexa = 0: boyBsexa = 1
  1862. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupa1.'+rand(0,4)+'.jpg"></center>'
  1863. '<<$boydesc>> positions you on all fours and begins slowly fucking you in the anus...'
  1864. gs 'arousal', 'anal', 5, 'sub'
  1865. gs 'stat'
  1866. huntsexa = rand(2,4)
  1867. gs 'hunters', 'rng_2'
  1868. end
  1869. if $ARGS[0]='huntersgroupAsEnd1':
  1870. pose = 1
  1871. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1872. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1873. if boyBsexa = 0: boyBsexa = 1
  1874. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupaend1.jpg"></center>'
  1875. 'Without any lube <<$boydesc>> shoves his cock in your anus making you scream out with pain...'
  1876. 'You hear <<$boydesc>> grunting from behind, his cock getting stiffer and stiffer. It should be over soon you think to yourself. All of a sudden you hear a loud moan and you feel something warm inside your ass...'
  1877. gs 'cum_call', 'butt', $boy, 1
  1878. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1879. gs 'arousal', 'end'
  1880. gs 'stat'
  1881. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  1882. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  1883. end
  1884. if $ARGS[0]='huntersgroupAsEnd2':
  1885. pose = 1
  1886. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1887. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1888. if boyBsexa = 0: boyBsexa = 1
  1889. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupaend2.jpg"></center>'
  1890. 'While on all fours <<$boydesc>> comes in from behind and starts fucking you...'
  1891. 'You hear <<$boydesc>> grunting from behind, his cock getting stiffer and stiffer. He should be reaching his limit soon you think to yourself. All of a sudden you hear a loud moan and you feel something warm all over your back...'
  1892. gs 'cum_call', 'butt', $boy, 1
  1893. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1894. gs 'arousal', 'end'
  1895. gs 'stat'
  1896. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  1897. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  1898. end
  1899. if $ARGS[0]='huntersgroupAi':
  1900. pose = 1
  1901. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1902. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1903. if boyCsexa = 0: boyCsexa = 1
  1904. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupa1.'+rand(0,4)+'.jpg"></center>'
  1905. '<<$boydesc>> grabs his cock and crouches down, guiding his cock inside your anus...'
  1906. gs 'arousal', 'anal', 5, 'sub'
  1907. gs 'stat'
  1908. huntsexa = rand(2,4)
  1909. gs 'hunters', 'rng_3'
  1910. end
  1911. if $ARGS[0]='huntersgroupAiEnd1':
  1912. pose = 1
  1913. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1914. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1915. if boyCsexa = 0: boyCsexa = 1
  1916. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupaend1.jpg"></center>'
  1917. '<<$boydesc>> orders you on all fours, he steps behind you loudly proclaiming you''re going to get a real pounding now. With a sly look he guides his unlubed penis inside your anus, telling you he wants to strech it out...'
  1918. 'You hear <<$boydesc>> grunting from behind, his cock getting stiffer and stiffer. It should be over soon you think to yourself. All of a sudden you hear a loud moan and you feel something warm inside your ass...'
  1919. gs 'cum_call', 'butt', $boy, 1
  1920. gs 'arousal', 'anal', 5, 'sub', 'rough'
  1921. gs 'arousal', 'end'
  1922. gs 'stat'
  1923. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  1924. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  1925. end
  1926. if $ARGS[0]='huntersgroupAiEnd2':
  1927. pose = 1
  1928. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1929. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1930. if boyCsexa = 0: boyCsexa = 1
  1931. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupaend2.jpg"></center>'
  1932. '<<$boydesc>> starts fucking you in the ass, both of you are enjoying yourselves...'
  1933. 'You hear <<$boydesc>> grunting from behind, his cock getting stiffer and stiffer. He should be reaching his limit soon you think to yourself. All of a sudden you hear a loud moan and you feel something warm all over your back...'
  1934. gs 'cum_call', 'butt', $boy, 1
  1935. gs 'arousal', 'anal', 5, 'sub'
  1936. gs 'arousal', 'end'
  1937. gs 'stat'
  1938. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  1939. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  1940. end
  1941. if $ARGS[0]='huntersgroupVa2':
  1942. pose = 1
  1943. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1944. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1945. if boyAsex = 0: boyAsex = 1
  1946. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupv0.'+rand(0,1)+'.jpg"></center>'
  1947. '<<$boydesc>> pulls you on top of him, spreading one of your ass cheeks while you grab hold of the other and spread it so he can enter you more easily...'
  1948. gs 'arousal', 'vaginal', 5, 'sub'
  1949. gs 'stat'
  1950. huntsexa = rand(1,4)
  1951. gs 'hunters', 'rng_7'
  1952. end
  1953. if $ARGS[0]='huntersgroupVa2end':
  1954. pose = 1
  1955. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  1956. if forest_gopsex = 3:gs 'boyStat', 'A63'
  1957. if boyAsex = 0: boyAsex = 1
  1958. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvend.jpg"></center>'
  1959. '<<$boydesc>> pulls you on top of him, spreads your pussy lips and enters you...'
  1960. 'After a while, you see that <<$boydesc>> is at the edge and will be cumming soon. You feel his cock throbbing and him cumming...'
  1961. gs 'arousal', 'vaginal', 5, 'sub'
  1962. gs 'arousal', 'end'
  1963. gs 'stat'
  1964. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  1965. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  1966. end
  1967. if $ARGS[0]='huntersgroupVs2':
  1968. pose = 1
  1969. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1970. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1971. if boyBsex = 0: boyBsex = 1
  1972. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupv0.'+rand(0,1)+'.jpg"></center>'
  1973. '<<$boydesc>> pulls you on top of him, spreading one of your ass cheeks while you grab hold of the other and spread it so he can enter you more easily...'
  1974. gs 'arousal', 'vaginal', 5, 'sub'
  1975. gs 'stat'
  1976. huntsexa = rand(2,4)
  1977. gs 'hunters', 'rng_2'
  1978. end
  1979. if $ARGS[0]='huntersgroupVs2end':
  1980. pose = 1
  1981. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  1982. if forest_gopsex = 3:gs 'boyStat', 'A61'
  1983. if boyBsex = 0: boyBsex = 1
  1984. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvend.jpg"></center>'
  1985. '<<$boydesc>> pulls you on top of him, spreads your pussy lips so he can more easily enter you...'
  1986. 'After a while, you see that <<$boydesc>> is at the edge and will be cumming soon. You feel his cock throbbing and him soon thereafter cumming...'
  1987. gs 'arousal', 'vaginal', 5, 'sub'
  1988. gs 'arousal', 'end'
  1989. gs 'stat'
  1990. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  1991. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  1992. end
  1993. if $ARGS[0]='huntersgroupVi3':
  1994. pose = 1
  1995. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  1996. if forest_gopsex = 3:gs 'boyStat', 'A62'
  1997. if boyCsex = 0: boyCsex = 1
  1998. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupv0.'+rand(0,1)+'.jpg"></center>'
  1999. '<<$boydesc>> pulls you on top of him, spreading one of your ass cheeks while you grab hold of the other and spread it so he can enter you more easily...'
  2000. gs 'arousal', 'vaginal', 5, 'sub'
  2001. gs 'stat'
  2002. huntsexa = rand(2,4)
  2003. gs 'hunters', 'rng_3'
  2004. end
  2005. if $ARGS[0]='huntersgroupVi3end':
  2006. minut += 5
  2007. pose = 1
  2008. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  2009. if forest_gopsex = 3:gs 'boyStat', 'A62'
  2010. if boyCsex = 0: boyCsex = 1
  2011. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupvend.jpg"></center>'
  2012. '<<$boydesc>> pulls you on top of him and starts fucking you relentlessly...'
  2013. 'After a while, you see that <<$boydesc>> is at the edge and will be cumming soon. You feel his cock throbbing and him cumming...'
  2014. gs 'arousal', 'vaginal', 5, 'sub', 'rough'
  2015. gs 'arousal', 'end'
  2016. gs 'stat'
  2017. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  2018. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  2019. end
  2020. if $ARGS[0]='huntersgroupOsend':
  2021. pose = 0
  2022. minut += 5
  2023. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A174'
  2024. if forest_gopsex = 3:gs 'boyStat', 'A61'
  2025. gs 'cum_call', 'face', $boy, 1
  2026. if $clothingworntype = 'nude':gs 'cum_call', 'stomach', $boy, 1
  2027. if ($clothingworntype ! 'nude' and PCloswimwear = 0):gs 'cum_call', 'clothes_hidden', $boy, 1
  2028. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupoend1.'+rand(0,2)+'.jpg"></center>'
  2029. 'Not wanting to get you pregnant, <<$boydesc>> starts jerking off his cock in front of you...'
  2030. gs 'oral', 'start', 5, 'gangbang'
  2031. if klismaday ! daystart and dirty_dickB > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2032. 'You watch as <<$boydesc>> is trying hard to finish. All of a sudden he screams out that he''s edging and you should get ready to get covered in this spunk. Hot sperm hits your face, most of it hitting your face and chin. The sperm drips down on your chest...'
  2033. gs 'arousal', 'end'
  2034. gs 'stat'
  2035. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  2036. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  2037. end
  2038. if $ARGS[0]='huntersgroupOaend':
  2039. pose = 0
  2040. minut += 5
  2041. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A172'
  2042. if forest_gopsex = 3:gs 'boyStat', 'A63'
  2043. gs 'cum_call', 'face', $boy, 1
  2044. if $clothingworntype = 'nude':gs 'cum_call', 'stomach', $boy, 1
  2045. if ($clothingworntype ! 'nude' and PCloswimwear = 0):gs 'cum_call', 'clothes_hidden', $boy, 1
  2046. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupoend1.'+rand(0,2)+'.jpg"></center>'
  2047. 'Making you kneel down, <<$boydesc>> starts masturbating in front of your face...'
  2048. gs 'oral', 'start', 5, 'gangbang'
  2049. !if klismaday ! daystart and dirty_dickA > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2050. '<<$boydesc>> tells you he''s edging and that you should get ready. He lets out a grunt and a hot jet of sperm hits you in the face. It runs down your chin, dripping down on your chest...'
  2051. gs 'arousal', 'end'
  2052. gs 'stat'
  2053. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  2054. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  2055. end
  2056. if $ARGS[0]='huntersgroupOiend':
  2057. pose = 0
  2058. minut += 5
  2059. if huntersexnude = 1 or forest_huntersex = 3:gs 'boyStat', 'A173'
  2060. if forest_gopsex = 3:gs 'boyStat', 'A62'
  2061. gs 'cum_call', 'face', $boy, 1
  2062. if $clothingworntype = 'nude':gs 'cum_call', 'stomach', $boy, 1
  2063. if ($clothingworntype ! 'nude' and PCloswimwear = 0):gs 'cum_call', 'clothes_hidden', $boy, 1
  2064. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupoend1.'+rand(0,2)+'.jpg"></center>'
  2065. '<<$boydesc>> tells you that he wants you kneeling down, cause he wants to cover your face with his spunk...'
  2066. gs 'oral', 'start', 5, 'gangbang'
  2067. if klismaday ! daystart and dirty_dickC > 0:'<<$textsexhunter>>' & pcs_mood -= 5 & pcs_horny -= 20
  2068. 'You noticed <<$boydesc>>''s facial expression getting tense, nearing the edge. A stream of hot sperm hits you in the face, then another stream and it keeps on going not letting up. It runs down your chin, dripping down on your chest...'
  2069. gs 'arousal', 'end'
  2070. gs 'stat'
  2071. if forest_huntersex = 0:act 'Further':huntersexnude = 0 & forest_gopsex = 0 & gt $loc, $loc_arg
  2072. if forest_huntersex > 0:act 'Further':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  2073. end
  2074. if $ARGS[0]='hunterslutSTART':
  2075. pose = 0
  2076. boyAsex = 0
  2077. boyBsex = 0
  2078. boyCsex = 0
  2079. boyAsexa = 0
  2080. boyBsexa = 0
  2081. boyCsexa = 0
  2082. dirty_dickA = 0
  2083. dirty_dickB = 0
  2084. dirty_dickC = 0
  2085. if rand(1,2) = 1:
  2086. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hanterslutstart1.jpg"></center>'
  2087. 'Crouching, you took the cock in your hand and brought it towards the mouth. You began kissing the penis head...'
  2088. gs 'arousal', 'foreplay', 5, 'sub'
  2089. gs 'stat'
  2090. else
  2091. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hanterslutstart2.jpg"></center>'
  2092. 'You crouched down, gripped the cock, and brought it toward your lips and began licking the penis head...'
  2093. gs 'arousal', 'foreplay', 5, 'sub'
  2094. gs 'stat'
  2095. end
  2096. act 'Start sucking':gt 'hunters', 'hunterslutORAL'
  2097. end
  2098. if $ARGS[0]='hunterslutEND':
  2099. pose = 0
  2100. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hanterslutend1.jpg"></center>'
  2101. if protect = 1:'After disposing of the used condom, <<$boydesc>> puts you in front of him. Kneeling down, you licked the head of the cock while masturbating him... '
  2102. if protect = 0:'You went down on your knees. Took the cock in hand and began masturbating <<$boydesc>>, licking the penis head at the same time...'
  2103. gs 'arousal', 'hj', 5, 'sub'
  2104. gs 'stat'
  2105. act 'Jerk him off':
  2106. *clr & cla
  2107. protect = 0
  2108. huntsex = 0
  2109. gs 'cum_call', 'face', $boy, 1
  2110. gs 'cum_call', 'stomach', $boy, 1
  2111. gs 'stat'
  2112. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hanterslutend2.'+rand(1,2)+'.jpg"></center>'
  2113. gs 'dinsex', 'dinrandswallow'
  2114. 'The quantity of sperm was so overwhelming that you were not able to swallow all of it and some of it runs down the chin, dripping down, staining your chest and stomach. <<$boydesc>> used his pants to clean the cock and went about his business, leaving you alone to freshen up.'
  2115. gs 'arousal', 'hj', 5, 'sub'
  2116. gs 'arousal', 'end'
  2117. gs 'stat'
  2118. if slutgosex = 1:act 'Go to the river':slutgosex = 0 & gt 'backwater'
  2119. if forest_huntersex = 1:act 'Go to the hut':forest_huntersex = 0 & minut += 60 & gt 'swamp_yard', 'start'
  2120. if forest_gopsex = 1:act 'Go to forest':forest_gopsex = 0 & gt 'gadforest','forest_edge'
  2121. end
  2122. end
  2123. if $ARGS[0]='hunterslutORAL':
  2124. pose = 0
  2125. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hanterslutoral1.'+rand(1,2)+'.jpg"></center>'
  2126. 'You''re hunching down, sucking the tip of his cock...'
  2127. gs 'arousal', 'bj', 5, 'sub'
  2128. gs 'stat'
  2129. huntsexa = rand(1,10)
  2130. if pcs_sleep >= 10 and huntsexa <= 7:'Interrupting you, the guy says...'
  2131. if pcs_sleep >= 10 and huntsexa > 7:'All of a sudden <<$boydesc>> begins moving faster, making sounds, you quickly realize he''s edging and would be cumming soon.'
  2132. gs 'hunters', 'rng_9'
  2133. end
  2134. if $ARGS[0]='hunterslutCOW':
  2135. pose = 0
  2136. if boyAsex = 0: boyAsex = 1
  2137. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hanterslutcow1.'+rand(1,4)+'.jpg"></center>'
  2138. '<<$boydesc>> lies down on the ground, pulling you towards him. You straddle him and he leads his cock inside you...'
  2139. gs 'arousal', 'vaginal', 5, 'sub'
  2140. gs 'stat'
  2141. huntsexa = rand(2,10)
  2142. if pcs_sleep >= 10 and huntsexa <= 7:'You can see that <<$boydesc>> enjoys fucking you in this position...'
  2143. if pcs_sleep >= 10 and huntsexa > 7:'Suddenly <<$boydesc>> began moving faster, grunting, you quickly realize he was edging and would be cumming soon.'
  2144. gs 'hunters', 'rng_9'
  2145. end
  2146. if $ARGS[0]='hunterslutHANDS':
  2147. pose = 0
  2148. if boyAsex = 0: boyAsex = 1
  2149. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersluthands1.'+rand(1,2)+'.jpg"></center>'
  2150. '<<$boydesc>> lifts you up by the legs and stars relentlessly fucking you...'
  2151. gs 'arousal', 'vaginal', 5, 'sub', 'rough'
  2152. gs 'stat'
  2153. huntsexa = rand(2,10)
  2154. if pcs_sleep >= 10 and huntsexa <= 7:'<<$boydesc>> lets out some grunts, he really enjoys fucking you in this position...'
  2155. if pcs_sleep >= 10 and huntsexa > 7:'<<$boydesc>> starts breathing heavily and grunting loudly, you realize he''s edging and is going to finish soon.'
  2156. gs 'hunters', 'rng_9'
  2157. end
  2158. if $ARGS[0]='hunterslutTREE':
  2159. pose = 1
  2160. if boyAsex = 0: boyAsex = 1
  2161. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersluttree1.'+rand(1,3)+'.jpg"></center>'
  2162. 'You lean on the tree for support while <<$boydesc>> enters you from behind...'
  2163. gs 'arousal', 'vaginal', 5, 'sub'
  2164. gs 'stat'
  2165. huntsexa = rand(2,10)
  2166. if pcs_sleep >= 10 and huntsexa <= 7:'<<$boydesc>> tells you that he enjoys fucking you in this position ...'
  2167. if pcs_sleep >= 10 and huntsexa > 7:'Suddenly <<$boydesc>> began moving faster, grunting, you quickly realize he was edging and would be cumming soon.'
  2168. gs 'hunters', 'rng_9'
  2169. end
  2170. if $ARGS[0]='hunterslutTREELEG':
  2171. pose = 1
  2172. if boyAsex = 0: boyAsex = 1
  2173. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersluttreeleg1.'+rand(1,4)+'.jpg"></center>'
  2174. 'You turn your back to <<$boydesc>> and lean on the tree for balance. <<$boydesc>> raises your thigh from behind, entering you more easily...'
  2175. gs 'arousal', 'vaginal', 5, 'sub', 'rough'
  2176. gs 'stat'
  2177. huntsexa = rand(2,10)
  2178. if pcs_sleep >= 10 and huntsexa <= 7:'<<$boydesc>> tells you that he could fuck you forever in this position...'
  2179. if pcs_sleep >= 10 and huntsexa > 7:'Suddenly <<$boydesc>> starts breathing heavily and grunting loudly, you realize he''s edging and is going to finish soon.'
  2180. gs 'hunters', 'rng_9'
  2181. end
  2182. if $ARGS[0]='hunterslutLEG1':
  2183. pose = 1
  2184. if boyAsex = 0: boyAsex = 1
  2185. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hanterslutleg1.'+rand(1,2)+'.jpg"></center>'
  2186. 'You turn your back to <<$boydesc>> and hugged him around the neck. <<$boydesc>> raised your thigh so he could enter you more easily...'
  2187. gs 'arousal', 'vaginal', 5, 'sub'
  2188. gs 'stat'
  2189. huntsexa = rand(2,10)
  2190. if pcs_sleep >= 10 and huntsexa <= 7:'<<$boydesc>> whispers in your ear that he really enjoys fucking you in this position...'
  2191. if pcs_sleep >= 10 and huntsexa > 7:'All of a sudden <<$boydesc>> begins moving faster, making sounds, you quickly realize he''s edging and would be cumming soon.'
  2192. gs 'hunters', 'rng_9'
  2193. end
  2194. if $ARGS[0]='hunterslutLEG2':
  2195. pose = 1
  2196. if boyAsex = 0: boyAsex = 1
  2197. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hanterslutleg2.'+rand(1,2)+'.jpg"></center>'
  2198. 'You turned towards <<$boydesc>> and hug him by the neck. <<$boydesc>> raised your thigh, making it easier to enter you...'
  2199. gs 'arousal', 'vaginal', 5, 'sub', 'rough'
  2200. gs 'stat'
  2201. huntsexa = rand(2,10)
  2202. if pcs_sleep >= 10 and huntsexa <= 7:'<<$boydesc>> tells you that he could fuck you forever in this position...'
  2203. if pcs_sleep >= 10 and huntsexa > 7:'Suddenly <<$boydesc>> began moving faster, grunting, you quickly realize he was edging and would be cumming soon.'
  2204. gs 'hunters', 'rng_9'
  2205. end
  2206. if $ARGS[0] = 'hunters_talk':
  2207. temp = rand(1,35)
  2208. if temp = 1:
  2209. '"What''s the difference between a dog and a fox?"'
  2210. '"Two shots of vodka!"'
  2211. elseif temp = 2:
  2212. '"The Dachshund is a hunting dog. They??????re pretty funny looking, only a half size of a regular dog."'
  2213. elseif temp = 3:
  2214. '"We once found a perfect spot while hunting. We got settled and checked what we brought with us. There were rifles, ammo and pickles. But we forgot the vodka. I had to go back all the way..."'
  2215. elseif temp = 4:
  2216. 'The men had gathered for a hunt, all but one were joyful. He had fallen in trouble with his wife. She had said: "I know what you do when you go hunt, you only get drunk as pigs and then crawl home..." In the middle of the argument the man had enough and told his wife that she could join them. When the rest of the men noticed that a woman was supposed to join them they got quite irritated.'
  2217. 'They walked into the forest, found a suitable clearing, and the man gave his wife a rifle and said:'
  2218. '"You can sit here hidden in the bushes, and I will drive the moose towards you. I will drive it straight at you and you better do not miss, or else all the hard work will go waste..."'
  2219. 'The man leaves, and joins the other men near a hut and they start to drink. Time passed by and all of a sudden the man woke up after sundown... The man grabbed his head, thinking that he would get a scolding by his wife.'
  2220. 'He comes near the clearing and sees an odd picture: in the middle of the clearing there lies a carcass and the wife is jumping with joy around it. Standing next to her is an upset man, rubbing his bald head.'
  2221. '"Yes dear, look at the elk you killed. We just need to remove the saddle..."'
  2222. elseif temp = 5:
  2223. 'This one happened to my dad...'
  2224. 'He was crossing a stubble field one morning before dawn and heard something moving toward him in the darkness. He froze and shone his flashlight in the direction of the sounds and discovered a skunk was making his way down a row of corn stubble and was headed toward him on a direct collision course.'
  2225. 'Not wanting to spook the little fella into spraying him, my dad slowly retreated toward the fence line, walking backwards and keeping the light trained on the skunk.'
  2226. 'Suddenly, he felt something brush across his shoulders and back and quickly swung the flashlight around and shone it directly into the face of a scarecrow!'
  2227. elseif temp = 6:
  2228. 'There once was politician that was going hunting. He drove out in his fancy jeep, dressed in camouflage and had a super fancy rifle with optical sight night vision... He walks into the forest, and met a man in sandals, a simple hat and a torn jacket, he looked like a typical village guy.'
  2229. 'Man: "Where are you heading?"'
  2230. 'Politician: "I''m gonna shoot a bear!"'
  2231. 'Man: "Yes, you seem well prepared..."'
  2232. 'Politician: "Yes, you see! This rifle can shoot down an elephant..."'
  2233. 'He continues on walking into the woods.'
  2234. 'Sighing deeply the man says: "Too bad you''re going deeper into the forest... There haven''t been any bears here for quite a while now..."'
  2235. elseif temp = 7:
  2236. 'After a shot a hunter asks his partner:'
  2237. '"Can you take a look what beast I''ve put down?"'
  2238. 'He comes back after a while:'
  2239. '"Judging by the beasts passport, his last name was Ivanov."'
  2240. elseif temp = 8:
  2241. 'There are two types of trips you can get from the mushrooms in the forest.'
  2242. 'The first can lead you to an extremely thoughtful introspection.'
  2243. 'While the second can make you feel paranoid as if you were being chased by a guy with a chainsaw in a maze.'
  2244. elseif temp = 9:
  2245. 'The three hunters are talking:'
  2246. '"I once killed a whale with one shot."'
  2247. '"I strangled a bear with my bare hands."'
  2248. '"Have you ever heard of the Dead Sea?"'
  2249. '"Who hasn''t heard of it?"'
  2250. '"So I..."'
  2251. elseif temp = 10:
  2252. '"As I''m getting out of the house I see something resembling an eagle standing on the telephone pole."'
  2253. '"I run into the house and get my rifle, aim. Bang, Bang, Bang."'
  2254. '"I hit the eagle and it falls down to the ground. As I look at the telephone pole I see pole spurs on both sides..."'
  2255. elseif temp = 11:
  2256. 'If nothing comes by while you''re hunting, that means the you''ve become one with the forest.'
  2257. elseif temp = 12:
  2258. pcs_horny +=rand(5,20)
  2259. 'You hear the hunter discuss their dogs:'
  2260. 'First one:'
  2261. '"I once went hunting. I brought my rifle but forgot the cartridges. I let the dog sniff the rifle and she retrieved the ammo!"'
  2262. 'Second one:'
  2263. '"I once went hunting. I brought the bullets with me but forgot the rifle. I let the dog sniff the ammo and she retrieved the rifle!"'
  2264. 'Third one:'
  2265. 'I went to swim with my wife but she forgot the swimsuit. I let the dog sniff my wife between her legs and she retrieved the neighbor by his balls!!!"'
  2266. elseif temp = 13:
  2267. 'A man returned happy from hunting. The wife asks him:'
  2268. '"Did you get something good?"'
  2269. '"I sure did! I shot many hedgehogs!"'
  2270. '"Are you out of your fucking mind? Why the fuck did you do that!"'
  2271. '"Well, my dear. I was thinking you could wear it as a collar or your mother could use it as an insole."'
  2272. elseif temp = 14:
  2273. 'Met two birds. One of them asks:'
  2274. '"What are you hunting?"'
  2275. '"Are you even a hunter?"'
  2276. '"Oh, I''m a hunter."'
  2277. '"So what are you hunting?!"'
  2278. '"Nothing special... I was just cleaning my rifle."'
  2279. elseif temp = 15:
  2280. 'The man returns home being out hunting for a month. A friend asks him:'
  2281. '"Well, I guess you''ve made quite a fortune. You''ve been away for a month. Your wife will be able buy lots of things!"'
  2282. '"So much did you earn?"'
  2283. '"Nothing, I drank it all up."'
  2284. elseif temp = 16:
  2285. pcs_horny +=rand(5,20)
  2286. 'A hunter was chasing a bear. The bear was though and healthy and ran quickly, leaving the hunter behind. While looking backwards the bear got stuck between two trees. A rabbit runs by and asks the bear:'
  2287. '"How did you get stuck there?"'
  2288. '"Well..." the bear began its story but the rabbit jumps on the bear and starts fucking it in the ass. The bear got upset but could not get out.'
  2289. 'Then he saw a fox running by and called it over:'
  2290. '"Hey fox, come over here and help me out!"'
  2291. 'The fox thought about it and like the rabbit it started fucking the bear. The bear was now getting desperate, when he saw the wolf. The wolf comes over and asks:'
  2292. '"What happened to you?"'
  2293. 'The bear answers: "Well, wolf, you might as well fuck me over first then I''ll tell you!!"'
  2294. elseif temp = 17:
  2295. pcs_horny +=rand(5,20)
  2296. 'I went out with some men hunting and as usual we got drunk. One of the men grabs his rifle and goes to hunt. All of a sudden a bear appears, and he starts climbing a tree. He shouts:'
  2297. '"Guys, save me! Kill the bear."'
  2298. 'Since we''re all drunk, we take aim, shoot and the shots fly by the bear. The bear continues on, not caring about the shots. Guy yells again:'
  2299. '"Come on guys! Kill this fucking bear."'
  2300. 'We take aim again, shoot and miss. The man now desperate shouts:'
  2301. '"What are you bastards doing! Are you trying to kill me or the bear!"'
  2302. elseif temp = 18:
  2303. pcs_horny +=rand(5,20)
  2304. '"Every year we do our annual cleaning of the hut, throwing away old canned food and stuff. Well, one guy threw a family size can of baked beans in the burn barrel instead of in the trash can.'
  2305. '"That night, as we were all telling stories and drinking around the burn barrel, the can exploded! Hot baked beans covered everything within a 10 meter radius, including us.'
  2306. elseif temp = 19:
  2307. 'One the hunters tells the other: "I once had a woodcock try to fly over my head so I whacked it with my shotgun barrel, killing it."'
  2308. elseif temp = 20:
  2309. 'The hunters are all huddled up and one of the hunters puts the rifle on his knees, pointing it at his neighbor.'
  2310. '"Sorry I''ll be more careful next time so I don''t accidentally gun you down!"'
  2311. '"Just finish me off already..." the other hunter replies.'
  2312. elseif temp = 21:
  2313. pcs_horny += rand(5,20)
  2314. '"So I got lost in the forest one night and was trying to get back to the hut. I stumbled around in the darkness for hours until I hear someone yelling "MARK! MARK! MARK!" So I say to myself "This guy knows where he is so go find him."'
  2315. '"I walk all the way there in the dark and when I got there all I found was an ol'' hair lipped dog..."'
  2316. elseif temp = 22:
  2317. '"You know, when I went on a business trip last time I hid a surprise in the closet for my special one when I return home. So imagine, I came home, immediately going to the closet and giving the gift."'
  2318. '"To whom? Your wife?"'
  2319. '"No, a bear!"'
  2320. elseif temp = 23:
  2321. 'Two hunters meet each other, one of them starts bragging.'
  2322. '"I have a dog, that can locate a wounded duck and bring it to me."'
  2323. 'The second hunter responds:'
  2324. '"My dog is way cooler. If I see a flying flock of ducks I put the dog in my man-made catapult. Aim it in the direction of the pack, fire off, the dog flies towards them and brings me some ducks back..."'
  2325. 'In the meadow there is a grazing cow with its calf. The calf raises its head and sees the dog flying and says:'
  2326. '"Look at that dog chasing those flying ducks."'
  2327. 'The cow responds: "I told you we''re better of eating grass."'
  2328. elseif temp = 24:
  2329. 'An avid hunter stands in the doorway to the tavern when the local doctor opens the door:'
  2330. '"Doctor, doctor, did you know that I got shot today?"'
  2331. '"I know, I already pulled the bullet out of you."'
  2332. elseif temp = 25:
  2333. '"Yesterday I shot two geese..."'
  2334. '"Were they wild?"'
  2335. '"They were not, but their owner got pretty wild!"'
  2336. elseif temp = 26:
  2337. pcs_horny += rand(5,20)
  2338. 'A depressed man goes hunting. He finds a bear den, starts firing his rifle, shots towards the bear and says:'
  2339. '"Listen here, either I kill you or we fuck, your choice! If you wanna survive I suggest you pick the second option... Not feeling satisfied, the hunter goes home, picks up more ammunition, returns to the den, empties his clip. He forces the bear out, saying:'
  2340. '"Listen, either we fuck again, or I''ll kill you, take your pick! The man survives even this time, wondering how he''s able to still be alive. He goes home and returns with dynamite wanting to blow up den. He sets up the dynamite, hides behind a rock and blows up the entrance to the den.'
  2341. 'Behind him he hears the voice of the bear: "Man, I do not understand, are you a hunter or a faggot?"'
  2342. elseif temp = 27:
  2343. 'A hunter comes home from the hunt.'
  2344. '"Is that you smelling?"'
  2345. '"Yes, I went out to hunt down a bear, but I forgot the food. So I started to run home. I was close to home when I hear someone behind me, putting their paws on my shoulders. I turn and see a bear. Well I''m sure you can probably figure out what happened next."'
  2346. elseif temp = 28:
  2347. pcs_horny += rand(5,20)
  2348. 'It''s hunting season and everybody are hunting geese. A hunter, tired off staying hidden, finally sees an opportunity, a lone goose. The hunter sneaks up to the goose, trying to near it as close as possible.'
  2349. 'When he''s finally close enough, he lets off a shot but misses the goose. It turns around and hisses towards the hunter.'
  2350. '"Shit! Do they bite?" asked the hunter. "What did you expect? That they suck?" answered his friend.'
  2351. elseif temp = 29:
  2352. 'An experienced hunter shares his experience with the beginners:'
  2353. '"Remember, it is best to hunt with dogs. If you get lost and want to return home, they will always find back. But keep them on a short leesh and don''t let go of them no matter what way they take!"'
  2354. elseif temp = 30:
  2355. '"Some investments were made in this area, and a certain Minister was invited to hunt rabbits. At the end he was unanimously proclaimed hunting king. The Minister managed to shoot thirty rabbits."'
  2356. 'Yes, it was a great result, the Minister commented modestly, especially considering that I only took ten shots..."'
  2357. elseif temp = 31:
  2358. pcs_horny +=rand(5,20)
  2359. 'Two hunters are discussing:'
  2360. '"I heard you beat down a snake last week?"'
  2361. '"The stories are true my friend."'
  2362. '"So tell me, how did you manage that?"'
  2363. '"As usual, with wine, soft music, erotic magazines..."'
  2364. elseif temp = 32:
  2365. pcs_horny +=rand(5,20)
  2366. 'Two hunters are hunting in the woods. They notice a woman in front of them with bare legs lying down. One of the hunters looks at her and says:'
  2367. '"Now this is a beast I could chase forever!"'
  2368. 'The other hunter looks at the womans'' ass and says:'
  2369. '"I wouldn''t chase that if they even gave me a million rubles."'
  2370. elseif temp = 33:
  2371. 'The three hunters are telling each other stories. The first one:'
  2372. '"I went out hunting once and saw this huge wild boar killing one deer..."'
  2373. 'The second one:'
  2374. 'Yeah right, and I''m a moose..."'
  2375. 'The third one cuts in:'
  2376. '"I once went on a hunt, with only one bullet in the barrel... I ended up meeting a pack of wolves... I took a shot and missed. The wolves started running towards me so I climbed up a tree...'
  2377. '"How did you survive?"'
  2378. '"I ate leaves..."'
  2379. elseif temp = 34:
  2380. 'A hunter walks through the woods and meets a boar. He quickly picks up his rifle and shoots.'
  2381. 'While the smoke is clearing, the hunter starts wondering: Did I hit the boar or not?'
  2382. 'The smoke clears, the boar is unharmed, and comments:'
  2383. 'Man, you really need some...'
  2384. elseif temp = 35:
  2385. 'Two hunters are talking:'
  2386. '"Can you imagine that I came across a couple of beautiful birds yesterday, my heart pounded with excitement when I saw them!"'
  2387. '"Did you shoot them?"'
  2388. '"No, they were too expensive."'
  2389. end
  2390. end
  2391. if $ARGS[0] = 'huntersgroupfaint':
  2392. *clr & cla
  2393. minut += 1
  2394. pcs_horny += rand(5,10)
  2395. gs 'stat'
  2396. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersgroupfaint.jpg"></center>'
  2397. if shootingfaint = 1:
  2398. shooting = 2
  2399. 'You feel a pain and everything before you begins to darken, the world starts spinning and you collapse...'
  2400. else
  2401. 'You suddenly feel an unbearable pain. Your sight begins to darken, the world starts spinning and you collapse...'
  2402. end
  2403. if huntersRape = 4 or huntdanceslut = 4 or forest_gopsex = 1:
  2404. act 'Wake up':
  2405. *clr & cla
  2406. minut += 10
  2407. pcs_health += 100
  2408. pcs_mood = 100
  2409. huntersexnude = 0
  2410. forest_gopsex = 0
  2411. slutgosex = 0
  2412. gs 'stat'
  2413. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersgroupfaint1.jpg"></center>'
  2414. 'Someone''s pouring water on you making you to wake up...'
  2415. '"<<$pcs_nickname>>, are you still alive?" You hear <<$boydesc>> asking while making sure that you''ve come around.'
  2416. 'You weakly nod your head.'
  2417. '"Good, I''m glad you aren''t hurt." he says'
  2418. act 'Further':gt $loc, $loc_arg
  2419. end
  2420. else
  2421. act 'Wake up':
  2422. *clr & cla
  2423. minut += 10
  2424. pcs_health += 100
  2425. pcs_mood = 100
  2426. shootingfaint = 0
  2427. huntersexnude = 0
  2428. forest_gopsex = 0
  2429. slutgosex = 0
  2430. gs 'stat'
  2431. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersgroupfaint2.jpg"></center>'
  2432. 'You wake up by someone''s lightly pats on the cheek...'
  2433. '"<<$pcs_nickname>>, are you still alive?" You hear <<$boydesc>> asking while making sure that you''ve come around.'
  2434. 'You weakly nod your head.'
  2435. '"You really scared us, and to be frank, you really fucked up. Go to the hut and rest."'
  2436. act 'Further': gt'swamphouse', 'start'
  2437. end
  2438. end
  2439. end
  2440. if $ARGS[0] = 'rng_1':
  2441. huntsexb = rand(1,8)
  2442. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb < 6 :act 'Keep sucking':gt 'hunters', 'huntersgroupORALsi1'
  2443. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb = 6:act 'Keep sucking':gt 'hunters', 'huntersgroupORALs'
  2444. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb = 7:act 'Keep sucking':gt 'hunters', 'huntersgroupORALi'
  2445. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb = 8:act 'Keep sucking':gt 'hunters', 'huntersgroupORALend1'
  2446. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb <= 5:act 'Get down on all fours':gt 'hunters', 'huntersgroupVis1'
  2447. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 6:act 'Get down on all fours':gt 'hunters', 'huntersgroupVi1'
  2448. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 6:act 'Get down on all fours':gt 'hunters', 'huntersgroupVs1'
  2449. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb <= 5:act 'Sideways':gt 'hunters', 'huntersgroupVsOi'
  2450. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb > 6:act 'Sideways':gt 'hunters', 'huntersgroupVOi'
  2451. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb = 6:act 'Sideways':gt 'hunters', 'huntersgroupVsO'
  2452. if pcs_sleep >= 10 and huntsexa = 4:act 'Straddle':gt 'hunters', 'huntersgroupDPis'
  2453. if pcs_sleep >= 10 and huntsexa = 5:act 'Keep sucking':gt 'hunters', 'huntersgroupOis'
  2454. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2455. end
  2456. if $ARGS[0] = 'rng_2':
  2457. huntsexb = rand(1,8)
  2458. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb <= 4 :act 'Keep sucking':gt 'hunters', 'huntersgroupORALs1'
  2459. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb > 4 :act 'Keep sucking':gt 'hunters', 'huntersgroupORALs1end'
  2460. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAs'
  2461. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb < 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAsEnd1'
  2462. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAsEnd2'
  2463. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb <= 3 :act 'Straddle':gt 'hunters', 'huntersgroupVs2'
  2464. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb > 3 :act 'Straddle':gt 'hunters', 'huntersgroupVs2end'
  2465. if pcs_sleep >= 10 and huntsexa = 4:act 'Keep sucking':gt 'hunters', 'huntersgroupOsend'
  2466. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2467. end
  2468. if $ARGS[0] = 'rng_3':
  2469. huntsexb = rand(1,8)
  2470. if pcs_sleep >= 10 and huntsexa = 1:act 'Keep sucking':gt 'hunters', 'huntersgroupORALi1end'
  2471. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAi'
  2472. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb < 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAiEnd1'
  2473. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAiEnd2'
  2474. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb <= 3 :act 'Straddle':gt 'hunters', 'huntersgroupVi3'
  2475. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb > 3 :act 'Straddle':gt 'hunters', 'huntersgroupVi3end'
  2476. if pcs_sleep >= 10 and huntsexa = 4:act 'Keep sucking':gt 'hunters', 'huntersgroupOiend'
  2477. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2478. end
  2479. if $ARGS[0] = 'rng_4':
  2480. huntsexb = rand(1,8)
  2481. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb <= 6 :act 'Keep sucking':gt 'hunters', 'huntersgroupORALai1'
  2482. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb > 6 :act 'Keep sucking':gt 'hunters', 'huntersgroupORALi1'
  2483. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb < 6 :act 'Doggy style':gt 'hunters', 'huntersgroupVia1'
  2484. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 6 :act 'Doggy style':gt 'hunters', 'huntersgroupVi2'
  2485. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 6 :act 'Doggy style':gt 'hunters', 'huntersgroupVa1'
  2486. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb <= 6 :act 'Sideways':gt 'hunters', 'huntersgroupViOa'
  2487. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb > 6 :act 'Sideways':gt 'hunters', 'huntersgroupViO'
  2488. if pcs_sleep >= 10 and huntsexa = 4 :act 'Straddle':gt 'hunters', 'huntersgroupDPia'
  2489. if pcs_sleep >= 10 and huntsexa = 5 :act 'Keep sucking':gt 'hunters', 'huntersgroupOia'
  2490. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2491. end
  2492. if $ARGS[0] = 'rng_5':
  2493. huntsexb = rand(1,8)
  2494. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb < 6 :act 'Get down on all fours':gt 'hunters', 'huntersgroupVas1'
  2495. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb = 6 :act 'Get down on all fours':gt 'hunters', 'huntersgroupVa'
  2496. if pcs_sleep >= 10 and huntsexa = 1 and huntsexb > 6 :act 'Get down on all fours':gt 'hunters', 'huntersgroupVs'
  2497. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb < 6 :act 'Lie on your stomach':gt 'hunters', 'huntersgroupVaOs'
  2498. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 6 :act 'Lie on your stomach':gt 'hunters', 'huntersgroupVOs'
  2499. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 6 :act 'Lie on your stomach':gt 'hunters', 'huntersgroupVaO'
  2500. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb < 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAsOa'
  2501. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb = 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAsO'
  2502. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb > 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAOa'
  2503. if pcs_sleep >= 10 and huntsexa = 4:act 'Keep sucking':gt 'hunters', 'huntersgroupOsa'
  2504. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2505. end
  2506. if $ARGS[0] = 'rng_6':
  2507. huntsexb = rand(1,8)
  2508. if pcs_sleep >= 10 and huntsexa = 1:act 'Keep sucking':gt 'hunters', 'huntersgroupORALasi'
  2509. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 5:act 'Straddle':gt 'hunters', 'huntersgroupVias'
  2510. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 3:act 'Straddle':gt 'hunters', 'huntersgroupVia'
  2511. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 4:act 'Straddle':gt 'hunters', 'huntersgroupVis'
  2512. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 5:act 'Straddle':gt 'hunters', 'huntersgroupVi'
  2513. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb < 3:act 'Straddle':gt 'hunters', 'huntersgroupVas'
  2514. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb > 5:act 'Doggy style':gt 'hunters', 'huntersgroupVaOsHi'
  2515. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb = 5:act 'Doggy style':gt 'hunters', 'huntersgroupVaOHi'
  2516. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb < 5:act 'Doggy style':gt 'hunters', 'huntersgroupVOsHi'
  2517. if pcs_sleep >= 10 and huntsexa = 4 and huntsexb < 5:act 'Straddle':gt 'hunters', 'huntersgroupDPasi'
  2518. if pcs_sleep >= 10 and huntsexa = 4 and huntsexb > 6:act 'Straddle':gt 'hunters', 'huntersgroupDPas'
  2519. if pcs_sleep >= 10 and huntsexa = 4 and huntsexb = 6:act 'Straddle':gt 'hunters', 'huntersgroupDPsi'
  2520. if pcs_sleep >= 10 and huntsexa = 4 and huntsexb = 5:act 'Straddle':gt 'hunters', 'huntersgroupDPai'
  2521. if pcs_sleep >= 10 and huntsexa = 5 and huntsexb > 5:act 'Sideways':gt 'hunters', 'huntersgroupVsOaHi'
  2522. if pcs_sleep >= 10 and huntsexa = 5 and huntsexb = 5:act 'Sideways':gt 'hunters', 'huntersgroupVsOHi'
  2523. if pcs_sleep >= 10 and huntsexa = 5 and huntsexb < 5:act 'Sideways':gt 'hunters', 'huntersgroupVOaHi'
  2524. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2525. end
  2526. if $ARGS[0] = 'rng_7':
  2527. huntsexb = rand(1,8)
  2528. if pcs_sleep >= 10 and huntsexa = 1:act 'Keep sucking':gt 'hunters', 'huntersgroupORALa1end'
  2529. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAa'
  2530. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb < 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAaEnd1'
  2531. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 5 :act 'Get down on all fours':gt 'hunters', 'huntersgroupAaEnd2'
  2532. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb <= 3 :act 'Straddle':gt 'hunters', 'huntersgroupVa2'
  2533. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb > 3 :act 'Straddle':gt 'hunters', 'huntersgroupVa2end'
  2534. if pcs_sleep >= 10 and huntsexa = 4:act 'Kneel down':gt 'hunters', 'huntersgroupOaend'
  2535. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2536. end
  2537. if $ARGS[0] = 'rng_8':
  2538. huntsexb = rand(1,8)
  2539. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb <= 5:act 'Get down on all fours':gt 'hunters', 'huntersgroupVis1'
  2540. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb > 6:act 'Get down on all fours':gt 'hunters', 'huntersgroupVi1'
  2541. if pcs_sleep >= 10 and huntsexa = 2 and huntsexb = 6:act 'Get down on all fours':gt 'hunters', 'huntersgroupVs1'
  2542. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb <= 5:act 'Sideways':gt 'hunters', 'huntersgroupVsOi'
  2543. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb > 6:act 'Sideways':gt 'hunters', 'huntersgroupVOi'
  2544. if pcs_sleep >= 10 and huntsexa = 3 and huntsexb = 6:act 'Sideways':gt 'hunters', 'huntersgroupVsO'
  2545. if pcs_sleep >= 10 and huntsexa = 4:act 'Straddle':gt 'hunters', 'huntersgroupDPis'
  2546. if pcs_sleep >= 10 and huntsexa = 5:act 'Kneel down':gt 'hunters', 'huntersgroupOis'
  2547. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2548. end
  2549. if $ARGS[0] = 'rng_9':
  2550. if pcs_sleep >= 10 and huntsexa = 1:act 'Keep sucking':gt 'hunters', 'hunterslutORAL'
  2551. if pcs_sleep >= 10 and huntsexa = 2:act 'Straddle':gt 'hunters', 'hunterslutCOW'
  2552. if pcs_sleep >= 10 and huntsexa = 3:act 'Jump on the hands':gt 'hunters', 'hunterslutHANDS'
  2553. if pcs_sleep >= 10 and huntsexa = 4:act 'Lean on a tree':gt 'hunters', 'hunterslutTREE'
  2554. if pcs_sleep >= 10 and huntsexa = 5:act 'Lean on a tree and lift your leg':gt 'hunters', 'hunterslutTREELEG'
  2555. if pcs_sleep >= 10 and huntsexa = 6:act 'Turn your back':gt 'hunters', 'hunterslutLEG1'
  2556. if pcs_sleep >= 10 and huntsexa = 7:act 'Face him':gt 'hunters', 'hunterslutLEG2'
  2557. if pcs_sleep >= 10 and huntsexa > 7:act 'Kneel down':gt 'hunters', 'hunterslutEND'
  2558. if pcs_sleep < 10:act 'Pass out':gt 'hunters', 'huntersgroupfaint'
  2559. end
  2560. --- hunters ---------------------------------