hunter_favors.qsrc 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755
  1. # hunter_favors
  2. !2020/10/16
  3. !Non-sexual favors
  4. if $ARGS[0] = 'housekeeping_request':
  5. if hunters_were_met = 1 and util_rand_favor < 3:
  6. *clr & cla
  7. util_rand_favor = rand(1,3)
  8. minut += 5
  9. if util_rand_favor = 1:
  10. gs 'boyStat', 'A172'
  11. '<center><img <<$set_imgh>> src="images/characters/shared/photos/big172.jpg"></center>'
  12. elseif util_rand_favor = 2:
  13. gs 'boyStat', 'A174'
  14. '<center><img <<$set_imgh>> src="images/characters/shared/photos/big174.jpg"></center>'
  15. elseif util_rand_favor = 3:
  16. gs 'boyStat', 'A173'
  17. '<center><img <<$set_imgh>> src="images/characters/shared/photos/big173.jpg"></center>'
  18. end
  19. gs 'stat'
  20. '<<$boydesc>> approaches you. "Hey I need your help with something"'
  21. act 'Sure what is it?':
  22. cla
  23. !TODO: If collective opinion is low, make the opinion gain also low
  24. !If fire is not going hunters nag at Sveta
  25. if campfire = 0:
  26. if hunter_collective_opinion >= 15: '"<<$pcs_nickname>>," he says. "The fire is out, can you please make sure it always keeps going while we are outside?"'
  27. if hunter_collective_opinion < 15:'"<<$pcs_nickname>>," he uses his stern voice. "The fire is out. You can at least keep the fire going, no way you are that much of a whiny princess"'
  28. act 'Further':hunter_collective_opinion -= 3 & gt 'swamp_yard', 'campfire'
  29. !Clean up the hut
  30. elseif dirty_swamphouse > 5:
  31. if hunter_collective_opinion >= 15: '"<<$pcs_nickname>>," he says. "The hut is a mess, could you take care of it please?"'
  32. if hunter_collective_opinion < 15:'"<<$pcs_nickname>>," he uses his stern voice. "The house is a mess, take care of it."'
  33. act 'Clean the hut':hunter_collective_opinion += 2 & gt 'hunter_favors', 'dirty_swamphouse'
  34. !Clean up the yard if hut is clean
  35. elseif dirty_swamp_yard > 5:
  36. if hunter_collective_opinion >= 15:'"<<$pcs_nickname>>," he says. "The yard is a mess. Can you please take care of it?"'
  37. if hunter_collective_opinion < 15:'"<<$pcs_nickname>>," he says sternly. "What the hell is all this trash doing out there? Go and pick it all."'
  38. act 'Clean the yard':hunter_collective_opinion += 3 & gt 'hunter_favors', 'yard_cleanup'
  39. !Cook some mushroom soup or meat stew if yard is also clean and a fire is going on in the yard
  40. elseif mushroom_soup + meat_stew < 4:
  41. if hunter_collective_opinion >= 15:'"<<$pcs_nickname>>," he says. "We don''t have anything for dinner. Could you please cook something?"'
  42. if hunter_collective_opinion < 15:'"<<$pcs_nickname>>," he says sternly. "We don''t have anything to eat for dinner you useless bitch. Go make something before we starve."'
  43. if boletus > 0:
  44. act 'Cook some mushroom soup (0:30)':hunter_collective_opinion += 4 & gs 'hunter_favors', 'mushroom_soup'
  45. elseif raw_meat > 0:
  46. act 'Cook some meat stew (1:00)':hunter_collective_opinion += 3 & gs 'hunter_favors', 'meat_stew'
  47. else
  48. !TODO: Add mechanic for hunters to ask Sveta to find food
  49. act '"There is nothing to cook though..."': gt 'swamp_yard', 'start'
  50. end
  51. else
  52. if hunter_collective_opinion >= 15:'"Actually, nevermind. I got this, thanks though."'
  53. if hunter_collective_opinion < 15:'"Actually, nevermind. I do not have anything you are useful for."'
  54. act 'Okay':
  55. hunter_collective_opinion += 5
  56. gt 'swamp_yard', 'start'
  57. end
  58. end
  59. end
  60. gs 'willpower', 'misc', 'resist', 'easy'
  61. if will_cost <= pcs_willpwr:
  62. act '"I''ll help later, busy right now" (<<will_cost>> Willpower)':
  63. *clr & cla
  64. minut += 5
  65. hunter_collective_opinion -= 3
  66. gs 'willpower', 'pay', 'resist'
  67. gs 'stat'
  68. !TODO: Find new image
  69. gt 'swamp_yard', 'start'
  70. end
  71. else
  72. act '"I''ll help later, busy right now" (<font color="red"><<will_cost>> Willpower)':'<br><font color="red">You don''t have enough willpower to use this action.</font>'
  73. end
  74. act '"What?! Do I look like a servant to you?':
  75. '<center><img <<$set_imgh>> src="images/pc/reactions/speak_to_the_hand.jpg"></center>'
  76. 'You walk away from <<$boydesc>>'
  77. hunter_collective_opinion -= 10
  78. act 'Continue': gt 'swamp_yard', 'start'
  79. end
  80. else
  81. gt 'swamp_yard', 'start'
  82. end if
  83. end
  84. if $ARGS[0] = 'yard_cleanup':
  85. cla & *clr
  86. if dirty_swamp_yard < 10:
  87. minut += 60 & gs 'sweat', 'add', 10
  88. elseif dirty_swamp_yard < 20:
  89. minut += 120 & gs 'sweat', 'add', 20
  90. else
  91. minut += 180 & gs 'sweat', 'add', 30
  92. end
  93. gs 'stat'
  94. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/dirty_swamp_yard.jpg"></center>'
  95. 'You notice that the yard has gotten pretty dirty. "I need to do something about this." you think to yourself.'
  96. 'You grab a garbage bag and start picking up trash.'
  97. 'After a while you''ve finished tidying up the yard and put the trash in the garbage bag. You''re quite pleased with yourself.'
  98. act 'Done':dirty_swamp_yard = 0 & hunter_collective_opinion += 2 & gt 'swamp_yard', 'start'
  99. end
  100. if $ARGS[0] = 'dirty_swamphouse':
  101. cla
  102. *clr
  103. menu_off = 1
  104. if dirty_swamphouse > 10:minut += 60 & gs 'sweat', 'add', 10
  105. if dirty_swamphouse >= 10 and dirty_swamphouse < 20:minut += 120 & gs 'sweat', 'add', 20
  106. if dirty_swamphouse >= 20:minut += 180 & gs 'sweat', 'add', 30
  107. if huntersAndreiQw < 15:huntersAndreiQw += 1
  108. if huntersIgorQw < 15:huntersIgorQw += 1
  109. if huntersSergeiQw < 15:huntersSergeiQw += 1
  110. gs 'stat'
  111. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/dirty_swamphouse.jpg"></center>'
  112. *nl
  113. 'Visiting the hut, you notice that the hut has gotten pretty dirty. "I need to do something about this." you think to yourself. You grab a broom and a rag and began cleaning.'
  114. 'After a while you''ve finished cleaning and put back everything in order again. You''re quite pleased with yourself.'
  115. act 'Continue':dirty_swamphouse = 0 & gt 'swamphouse', 'start'
  116. end
  117. if $ARGS[0] = 'meat_stew':
  118. cla
  119. *clr
  120. raw_meat -= 1
  121. minut += 60
  122. bucket -= 1
  123. meat_stew = 2
  124. gs 'stat'
  125. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hotsoup.jpg"></center>'
  126. *nl
  127. 'You cooked a stew with the meat hunters brought. There''s enough for <<mushroom_soup>> servings'
  128. act 'Continue': gt $loc, $loc_arg
  129. end
  130. if $ARGS[0] = 'mushroom_soup':
  131. cla
  132. *clr
  133. boletus -= 1
  134. minut += 30
  135. bucket -= 1
  136. mushroom_soup = 4
  137. gs 'stat'
  138. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hotsoup.jpg"></center>'
  139. *nl
  140. 'You made a simple mushroom soup by the camppfire and carried it inside the hut. There''s enough for <<mushroom_soup>> servings'
  141. act 'Continue': gt $loc, $loc_arg
  142. end
  143. !Sexual favors
  144. if $ARGS[0] = 'creekside_gangbang_request':
  145. *clr & cla
  146. minut += 5
  147. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax2.jpg"></center>'
  148. '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.'
  149. '"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?"'
  150. !TODO: WP check to agree?
  151. act 'Agree':
  152. *clr & cla
  153. !TODO: Come back here to revamp opinion changes
  154. hunter_sexual_comfort += 25
  155. gs 'stat'
  156. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgroupundress.jpg"></center>'
  157. '"I guess you''re right I need to repay you somehow..."'
  158. '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...'
  159. gs 'arousal', 'foreplay', 5, 'sub', 'gangbang'
  160. gs 'stat'
  161. act 'Further':
  162. *clr & cla
  163. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/hantersgrouptanga.jpg"></center>'
  164. '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."'
  165. $clothingworntype = 'nude'
  166. $pantyworntype = 'none'
  167. gs 'arousal', 'foreplay', 2, 'sub', 'gangbang'
  168. gs 'stat'
  169. act 'Further': gt 'hunter_interactions', 'creekside_gangbang'
  170. end
  171. end
  172. gs 'willpower', 'gangbang', 'resist', 'hard'
  173. if will_cost <= pcs_willpwr:
  174. !TODO: Add scene for succeeding willpower check
  175. act 'Refuse (<<will_cost>> Willpower)':
  176. *clr & cla
  177. minut += 5
  178. gs 'willpower', 'pay', 'resist'
  179. gs 'stat'
  180. hunter_collective_opinion += 5
  181. hunter_sexual_comfort -= 10
  182. gs 'stat'
  183. gt 'backwater'
  184. end
  185. else
  186. act 'Refuse (<font color="red"><<will_cost>> Willpower</font>)':
  187. *clr & cla
  188. minut += 5
  189. hunter_collective_opinion -= 25
  190. hunter_sexual_comfort += 15
  191. gs 'stat'
  192. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/backwaterrelax3.jpg"></center>'
  193. '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.'
  194. '"<<$pcs_nickname>>, don''t fuck around with us. Deep inside you know you need to repay us." said Andrei, grabbing you by the hair.'
  195. gs 'hunter_interactions', 'creekside_rape'
  196. end
  197. end
  198. end
  199. !TODO: WP needed for bondage?
  200. if $ARGS[0] = 'yard_bondage':
  201. if $ARGS[1] = '':
  202. yard_bound_temprand = rand(1,9)
  203. if hour >= 22 or hour < 5:
  204. gs 'arousal', 'end'
  205. cla & *clr
  206. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/released_from_bondage.jpg"></center>'
  207. 'Finally with the hour getting so late, Igor comes to free you from your bounds. You are so drained you almost stumble down as you feel blood rushing back to your hands.'
  208. 'Even though you are glad to be able to move around again, part of you aches to be tied back and used as a naked and ready sex toy'
  209. act 'Further': gt 'swamp_yard', 'start'
  210. end
  211. cla & *clr
  212. hunter_sexual_comfort += 1
  213. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bound_outdoors4.jpg"></center>'
  214. 'You are bound completely naked to some trees by the yard. Just the thought of being so helpless and exposed makes you feel butterflies in your stomach'
  215. 'Anyone could do anything they wanted with your body right now. You are especially aware of the nakedness of your most intimate areas, and how they are available for the hunters to do anything they might want.'
  216. gs 'arousal', 'flash', 5, 'bound', 'exhibitionism', 'sub'
  217. gs 'arousal', 'end'
  218. minut += 5
  219. gs 'stat'
  220. hunter_selector_temprand = rand(1,3)
  221. if hunter_selector_temprand = 1:
  222. gs 'boyStat', 'A172'
  223. elseif hunter_selector_temprand = 2:
  224. gs 'boyStat', 'A173'
  225. elseif hunter_selector_temprand = 3:
  226. gs 'boyStat', 'A174'
  227. end
  228. if yard_bound_temprand = 4:
  229. act 'Further': gt 'hunter_favors', 'yard_bondage', 'passing_bj'
  230. elseif yard_bound_temprand = 5:
  231. act 'Further': gt 'hunter_favors', 'yard_bondage', 'passing_fuck'
  232. elseif yard_bound_temprand = 6:
  233. act 'Further': gt 'hunter_favors', 'yard_bondage', 'clamp_fuck'
  234. elseif yard_bound_temprand = 8:
  235. act 'Further': gt 'hunter_favors', 'yard_bondage', 'unbound_fuck'
  236. !elseif yard_bound_temprand = 9:
  237. !act 'Further': gs 'hunter_favors', 'yard_bondage', 'unbound_gangbang'
  238. !elseif yard_bound_temprand = 10:
  239. !act 'Further': gs 'hunter_favors', 'yard_bondage', 'bound_gangbang'
  240. else
  241. act 'Wait': gt 'hunter_favors', 'yard_bondage'
  242. end
  243. end
  244. if $ARGS[1] = 'lost_bet':
  245. *clr & cla
  246. hunter_collective_opinion -= 20
  247. hunter_sexual_comfort += 40
  248. gs 'arousal', 'flash', 15, 'bound', 'exhibitionism', 'humiliation'
  249. gs 'arousal', 'end'
  250. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bound_outdoors2.jpg"></center>'
  251. 'You let Andrei bind you right by the yard. After he is done, he leaves you hanging there to take care of something'
  252. 'You are completely helpless and feel your nipples start to harden as you feel the breeze on your bare skin.'
  253. act 'Wait for him to come back': gt 'hunter_favors', 'yard_bondage'
  254. end
  255. !TODO: Add variety per hunter as opposed to the same event for all
  256. if $ARGS[1] = 'passing_bj':
  257. cla & *clr
  258. hunter_sexual_comfort += 6
  259. hunter_collective_opinion -= 3
  260. gs 'arousal', 'bj', 10, 'sub', 'bound', 'deepthroat'
  261. gs 'arousal', 'end'
  262. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bound_fucked_mouth1.jpg"></center>'
  263. 'You notice <<$boydesc>> walking towards you. Without saying a word, he slackens your ties and pushes you down to your knees before tightening them back.'
  264. 'He does not waste too much time unzipping his cock and pushing it on your face. You comply and start sucking his dick.'
  265. 'After a minute grabs your head and starts fucking your mouth. You struggle between trying to breathe and trying not to puke as his cock rams in and out of your throat'
  266. act 'Try and match his rythm':
  267. cla & *clr
  268. *nl
  269. hunter_sexual_comfort += 4
  270. hunter_collective_opinion -= 2
  271. gs 'arousal', 'bj', 5, 'sub', 'bound', 'deepthroat'
  272. gs 'arousal', 'end'
  273. spafinloc = 12
  274. gs 'cum_manage'
  275. swallow += 1
  276. gs 'stat'
  277. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bound_fucked_mouth2.jpg"></center>'
  278. 'You decide to make it some more fun for for him. You start bobbing your head in rhythm with his pumping.'
  279. 'Whenever he is all the way down your throat, you swallow to massage his cock.'
  280. gs 'dinsex', 'bj_random'
  281. *nl
  282. 'Your efforts start paying off pretty quickly as he grabs your head and starts pumping even more quickly before he buries his cock all the way in'
  283. gs 'dinsex', 'bj_swallow_random'
  284. 'He gives you a pat on the head and says "Now that''s a good girl" before tying you upright and walking off, satisfied and drained.'
  285. act 'Further': gt 'hunter_favors', 'yard_bondage'
  286. end
  287. act 'Let him have his way':
  288. cla & *clr
  289. *nl
  290. gs 'arousal', 'bj', 10, 'rough', 'bound', 'deepthroat'
  291. gs 'arousal', 'end'
  292. spafinloc = 11
  293. gs 'cum_manage'
  294. spafinloc = 15
  295. gs 'cum_manage'
  296. gs 'stat'
  297. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bound_fucked_mouth3.jpg"></center>'
  298. 'You decide if you relax your throat and face it will be easier not to puke all over his dick.'
  299. 'He strokes your hair as he keeps furiously ramming his cock up and down your throat, fucking your face like as if it was a sex toy.'
  300. gs 'dinsex', 'bj_random'
  301. *nl
  302. 'After a few minutes he pulls out of your mouth and jerks off to your face, splattering your face and chest with his spunk.'
  303. 'As you blink the cum off your eyes, he zips up and ties you back upright before walking away without saying anything else.'
  304. act 'Further': gt 'hunter_favors', 'yard_bondage'
  305. end
  306. end
  307. if $ARGS[1] = 'passing_fuck':
  308. cla & *clr
  309. hunter_sexual_comfort += 10
  310. hunter_collective_opinion -= 5
  311. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bound_fucked2.jpg"></center>'
  312. 'You notice <<$boydesc>> walking towards you. Without saying a word, he unzips and bends you over.'
  313. 'He rubs the tip of his dick against your already wet pussy lips a few times before pushing all the way in. You cannot help but gasp as <<$boydesc>>''s cock fills your pussy'
  314. 'After letting you settle in to the sensation for a second he slowly starts pumping your pussy. In a minute you are screaming and moaning as he picks his pace up.'
  315. gs 'dinsex', 'vaginal_sex', 10, 'bound'
  316. act 'Start pumping your hips to match him':
  317. cla & *clr
  318. *nl
  319. hunter_sexual_comfort += 5
  320. hunter_collective_opinion -= 2
  321. gs 'arousal', 'vaginal', 5, 'sub', 'bound'
  322. gs 'arousal', 'end'
  323. spafinloc = 0
  324. pose = 3
  325. gs 'cum_manage'
  326. gs 'stat'
  327. '<center><video autoplay loop src="images/locations/gadukino/sex/hunter/bound_fucked.mp4"></video></center>'
  328. 'You cannot get enough of the sensation of <<$boydesc>>''s cock sliding inside you. You start pumping your hips to get more of his cock.'
  329. *nl
  330. '<<$boydesc>> starts fucking you even harder before he buries his cock all the way to the hilt inside you.'
  331. gs 'dinsex', 'sexcum'
  332. 'After catching his breath, <<$boydesc>> gives your ass a fondle before walking away, leaving you hanging.'
  333. act 'Further': gt 'hunter_favors', 'yard_bondage'
  334. end
  335. act 'Let him have his way':
  336. cla & *clr
  337. *nl
  338. gs 'arousal', 'vaginal', 10, 'rough', 'bound'
  339. gs 'arousal', 'end'
  340. spafinloc = 1
  341. gs 'cum_manage'
  342. spafinloc = 4
  343. gs 'cum_manage'
  344. spafinloc = 9
  345. gs 'cum_manage'
  346. gs 'stat'
  347. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bound_fucked1.jpg"></center>'
  348. 'You are pretty much overwhelmed by <<$boydesc>> pumping your pussy while you are bound helpless and naked like this.'
  349. 'You decide to give in and enjoy the sensation of being casually fucked like a blow-up doll.'
  350. *nl
  351. 'He roughly grabs your ass to brace himself as he picks his pace even further, pounding your pussy with near fury.'
  352. 'Sounds of his hips rhythmically slamming against your ass fills your surrondings, mixed with the lewd smacking sounds of his cock pumping in your pussy and your loud moans and screams'
  353. *nl
  354. 'Just as you start feeling his cock throbbing in your pussy, he pulls out and blows his load all over your ass and pussy.'
  355. 'Without saying anything, <<$boydesc>> zips up and walks away, leaving you with cum running down your legs.'
  356. act 'Further': gt 'hunter_favors', 'yard_bondage'
  357. end
  358. end
  359. if $ARGS[1] = 'clamp_fuck':
  360. cla & *clr
  361. hunter_sexual_comfort += 15
  362. hunter_collective_opinion -= 10
  363. gs 'boyStat', 'A172'
  364. gs 'pain', 6, 'pinch', 'nipples'
  365. gs 'pain', 3, 'pinch', 'breasts'
  366. gs 'arousal', 'foreplay', 5, 'rough', 'masochism'
  367. gs 'arousal', 'end'
  368. gs 'stat'
  369. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bondage_clamps3.jpg"></center>'
  370. 'You are so proccupied with thinking how you are tied up to some tree completely naked and exposed, you do not hear Andrei approaching from behind.'
  371. 'Not missing the opportunity, he yanks you by the nipple, making you yelp loudly.'
  372. '"Hey now, don''t fall asleep just yet. I have something special for you." he says before showing you a piece of leather strap and a clamp with a weight attached.'
  373. '"Hope you are into a bit of fun. Or, at least we will find out." he says. You do not object, having already agreed to ''anything''.'
  374. act 'Further':
  375. cla & *clr
  376. gs 'pain', 3, 'spank', 'nipples'
  377. gs 'arousal', 'foreplay', 5, 'rough', 'masochism'
  378. gs 'arousal', 'end'
  379. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bondage_clamps2.jpg"></center>'
  380. 'Andrei does not lose time starting to pay some special attention to your nipples.'
  381. 'The leather strip really stings and you cannot help but yelp with each hit. But you somehow actually enjoy the sensation.'
  382. act 'Further':
  383. cla & *clr
  384. gs 'pain', 10, 'pinch', 'nipples'
  385. gs 'arousal', 'foreplay', 10, 'rough', 'masochism'
  386. minut -= 5
  387. gs 'arousal', 'end'
  388. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bondage_clamps1.jpg"></center>'
  389. 'Satisfied with the ''warm-up'', Andrei picks up the clamps and attaches them to your nipples'
  390. 'The mix of pain and pleasure from the clamps biting on your nipples is almost unbearable.'
  391. 'It really hurts and you want to shake them off, but yet you feel your pussy throbbing and getting wet the more you think about the pain.'
  392. *nl
  393. '"Please, I can''t take it anymore!" you plead.'
  394. '"''Please'' what, little princess?" Andrei asks'
  395. gs 'willpower', 'sex', 'resist'
  396. if will_cost <= pcs_willpwr:
  397. act 'Seriousy, please let me go! (<<will_cost>> Willpower</font>)':
  398. cla & *clr
  399. gs 'willpower', 'pay', 'resist'
  400. gs 'stat'
  401. hunter_collective_opinion += 10
  402. hunter_sexual_comfort -= 15
  403. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/released_from_bondage.jpg"></center>'
  404. '"Well, alright, you are no fun" says Andrei before releasing you from your bonds.'
  405. 'You rub your sore breasts for a few seconds before shooing away Andrei staring at you giving him a last show.'
  406. act 'Further': gt 'swamp_yard', 'start'
  407. end
  408. else
  409. act 'Seriousy, please let me go! (<font color="red"><<will_cost>> Willpower</font>)':'<br><font color="red">You don''t have enough willpower to use this action.</font>'
  410. end
  411. act 'Please fuck me!':
  412. cla & *clr
  413. hunter_collective_opinion -= 5
  414. hunter_sexual_comfort += 25
  415. gs 'dinsex', 'vaginal_sex', 10, 'sub', 'bound', 'masochism', 'humiliation'
  416. gs 'arousal', 'vaginal', 5, 'sub', 'bound', 'masochism', 'humiliation'
  417. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/bondage_clamps_fuck.jpg"></center>'
  418. '"You really like this don''t you now." says Andrei before roughly penetrating you.'
  419. 'You let out a loud moan from the relief of finally having your aching pussy filled. It does not take Andrei long to cum with you pumping your hips and doing most of the fucking,'
  420. gs 'arousal', 'end'
  421. spafinloc = 0
  422. pose = 3
  423. gs 'cum_manage'
  424. gs 'stat'
  425. gs 'dinsex', 'sexcum'
  426. *nl
  427. 'After catching his breath, Andrei releases you from your bonds. "We should do this again" he says, before walking away.'
  428. act 'Further': gt 'swamp_yard', 'start'
  429. end
  430. end
  431. end
  432. end
  433. if $ARGS[1] = 'unbound_fuck':
  434. cla & *clr
  435. hunter_sexual_comfort += 15
  436. hunter_collective_opinion += 15
  437. gs 'boyStat', 'A173'
  438. gs 'arousal', 'foreplay', 5, 'exhibitionism'
  439. gs 'arousal', 'kiss', 5, 'exhibitionism'
  440. gs 'arousal', 'end'
  441. gs 'stat'
  442. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/unbound_fucked2.jpg"></center>'
  443. 'You do not notice Igor approaching you from behind before he starts stroking your body as he rubs his cock over your pussy lips.'
  444. '"You are driving me crazy, <<$pcs_nickname>>" he says. "I cannot help it any longer, I need to have you."'
  445. 'You turn your head to give him a kiss as he undoes the last of the ropes'
  446. act 'Further':
  447. cla & *clr
  448. gs 'arousal', 'vaginal', 5, 'exhibitionism'
  449. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/unbound_fucked1.jpg"></center>'
  450. 'Igor settles on the ground and you settle on his crotch, mounting him.'
  451. 'You start bouncing up and down, gasping from the feeling of his cock pumping inside you'
  452. gs 'dinsex', 'vaginal_sex', 10, 'exhibitonism'
  453. act 'Further':
  454. cla & *clr
  455. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/unbound_fucked3.jpg"></center>'
  456. 'After some minutes, Igor pushes you on your hands and starts fucking you from behind.'
  457. 'He really picks up the pace as you start moaning and screaming like a wanton whore, getting fucked like that right out in the open.'
  458. gs 'dinsex', 'vaginal_sex', 10, 'exhibitonism', 'rough', 'humiliation'
  459. spafinloc = 4
  460. gs 'cum_manage'
  461. spafinloc = 8
  462. gs 'cum_manage'
  463. gs 'stat'
  464. *nl 'After a few more minutes of railing your pussy, you feel Ifor pulling out and cumming all over your ass and back'
  465. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/unbound_fucked_cum.jpg"></center>'
  466. act 'Further':
  467. cla & *clr
  468. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/unbound_nude.jpg"></center>'
  469. 'After a couple of seconds catching your breath, you both get up. Before you walk away, Igor asks:'
  470. '"<<$pcs_nickname>>, can I ask you for a favor? All of us have rather gotten used to seeing you in the nude."'
  471. '"So," he says "Can you just walk around like that all the time?"'
  472. '"You mean, never wear clothes around and stay naked the whole time?" you ask, surprised'
  473. '"Yes, at least while it is only us around." he says. "So what do you say?"'
  474. gs 'willpower', 'exhib', 'self', 'hard'
  475. if will_cost <= pcs_willpwr:
  476. act 'Agree (<<will_cost>> Willpower)':
  477. cla
  478. *nl
  479. hunter_collective_opinion += 20
  480. hunter_sexual_comfort += 30
  481. gs 'willpower', 'pay', 'self'
  482. gs 'stat'
  483. forced_naked_day = 999999999999999
  484. gs 'stat'
  485. '"Well," you respond. "At this point we are well past the point of being shy about a bit of nudity. So sure, why not?" you reply.'
  486. '"Thanks <<$pcs_nickname>>" he says, before walking away'
  487. act 'Further': gt 'swamp_yard', 'start'
  488. end
  489. else
  490. act 'Agree (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  491. end
  492. act 'Refuse':
  493. cla
  494. *nl
  495. hunter_collective_opinion -= 5
  496. hunter_sexual_comfort += 15
  497. gs 'stat'
  498. '"Well," you respond. "Do I look like some sex toy to you?" you reply. "What is next, you just randomly fuck me whenever?"'
  499. '"You are not exactly all pure and innocent, <<$pcs_nickname>>" he says. "I think you are just being a bitchy cocktease" and walks away'
  500. act 'Further': gt 'swamp_yard', 'start'
  501. end
  502. end
  503. end
  504. end
  505. end
  506. !if $ARGS[1] = 'unbound_gangbang':
  507. !end
  508. !if $ARGS[1] = 'bound_gangbang':
  509. !end
  510. !gs 'arousal', 'bj', 20, 'sub', 'rough', 'group'
  511. !gs 'arousal', 'vaginal', 20, 'sub', 'rough', 'group'
  512. !gs 'arousal', 'end'
  513. !gs 'stat'
  514. !gs 'dinsex','vaginal_sex',10,'sub'
  515. !gs 'arousal', 'bj', 240, 'sub', 'gangbang', 'humiliation'
  516. !gs 'arousal', 'hj', 240, 'sub', 'gangbang', 'humiliation'
  517. !gs 'arousal', 'vaginal', 240, 'sub', 'gangbang', 'humiliation'
  518. !gs 'arousal', 'anal', 240, 'sub', 'gangbang', 'humiliation'
  519. !minut -= 720
  520. end
  521. if $ARGS[0] = 'nighttime_entertainment':
  522. *clr & cla
  523. if hunter_collective_opinion < 15:
  524. hunter_collective_opinion += 3
  525. hunter_sexual_comfort += 8
  526. else
  527. hunter_collective_opinion -= 4
  528. hunter_sexual_comfort += 12
  529. end
  530. gs 'stat'
  531. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_1.jpg"></center>'
  532. 'The boys immediately encircle you, pulling out their cocks. You can''t help but giggle a little at how quickly they are ready for you.'
  533. act 'Grab Igor and Sergei':
  534. *clr & cla
  535. gs 'arousal', 'hj', 7, 'gangbang'
  536. minut -= 5
  537. gs 'stat'
  538. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_2.jpg"></center>'
  539. 'You grab Igor and Sergei''s cocks, jerking them off. You can feel both their dicks engorge, filling out your hands more firmly.'
  540. act 'Suck Sergei':
  541. *clr & cla
  542. gs 'arousal', 'bj', 10, 'gangbang'
  543. minut -= 7
  544. gs 'stat'
  545. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_3.jpg"></center>'
  546. 'You take Sergei''s head in your mouth, slowly making your way down his shaft.'
  547. act 'Continue':
  548. *clr & cla
  549. gs 'arousal', 'bj', 7, 'gangbang'
  550. gs 'arousal', 'foreplay', 2, 'gangbang'
  551. minut -= 5
  552. gs 'stat'
  553. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_3.5.jpg"></center>'
  554. 'Meanwhile you feel Igor reaching under your shirt, tweaking and playing with your nipple as you bob up and down Sergei''s cock.'
  555. act 'Suck Igor':
  556. *clr & cla
  557. gs 'arousal', 'bj', 8, 'gangbang', 'deepthroat'
  558. minut -= 5
  559. gs 'stat'
  560. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/bj_4.jpg"></center>'
  561. 'You let Sergei''s dick pop out of your mouth and switch to sucking Igor instead. You suck all the way down to the hilt, letting his diamond hard pulsing cock fill your throat.'
  562. act 'Continue':
  563. *clr & cla
  564. gs 'arousal', 'bj', 8, 'gangbang', 'deepthroat'
  565. gs 'arousal', 'flash', 3
  566. minut -= 5
  567. gs 'stat'
  568. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_tit_expose_3.jpg"></center>'
  569. 'As you pick up your pace with Igor, Andrei reaches under your shirt, pulling out your tit. You feel your nipple slightly harden at the breeze.'
  570. 'Meanwhile Igor calls out he is going to cum soon. On cue, you suck him all the way down, milking his violently pulsing cock with your throat.'
  571. gs 'cum_call', 'mouth', 'A173', 1
  572. act 'Continue':
  573. *clr & cla
  574. gs 'arousal', 'foreplay', 4
  575. gs 'arousal', 'flash', 3
  576. minut -= 5
  577. gs 'stat'
  578. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_tit_expose_4.jpg"></center>'
  579. 'Satisfied, Igor idly plays with your exposed breast as Andrei pulls out the other one, letting both of your tits air out as he keeps jerking himself off.'
  580. act 'Continue':
  581. *clr & cla
  582. gs 'arousal', 'flash', 8
  583. minut -= 5
  584. gs 'stat'
  585. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_1.jpg"></center>'
  586. 'It does not take long before Andrei reaches his climax, ejaculating all over your face and hair.'
  587. gs 'cum_call', 'face', 'A172', 1
  588. act 'Continue':
  589. *clr & cla
  590. gs 'arousal', 'flash', 7
  591. minut -= 5
  592. gs 'stat'
  593. '<center><img <<$set_imgh>> src="images/locations/gadukino/sex/hunter/nighttime_entertainment/buk_2.jpg"></center>'
  594. 'Seeing this, Sergei makes his way right next to you and picks up his pace for a hot moment before also jizzing all over the other side of your face, a couple drops finding their way to your exposed chest.'
  595. gs 'cum_call', 'mouth', 'A174', 1
  596. act 'Further': gt 'swamp_yard', 'campfire'
  597. end
  598. end
  599. end
  600. end
  601. end
  602. end
  603. end
  604. end
  605. end
  606. --- hunter_favors ---------------------------------