swamphouse.qsrc 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. # swamphouse
  2. if $ARGS[0] = 'start' or $ARGS[0] = '':
  3. $location_type = 'indoors'
  4. $loc = 'swamphouse'
  5. $metka = 'start'
  6. $menu_loc = 'swamphouse'
  7. $menu_arg = 'start'
  8. menu_off = 0
  9. frost = 0
  10. bonusZ = 0
  11. clr
  12. gs 'stat'
  13. gs 'themes', 'indoors'
  14. huntslutsexrand = rand(1,3)
  15. temp_sh = rand(1,5)
  16. clothesAtLocation = FUNC('lost_clothes_here','swamphouse')
  17. gs 'hunter_ambient', 'schedule'
  18. '<center><H4>Hut</H4></center>'
  19. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampizba.jpg"></center>'
  20. *nl
  21. 'A small hunting cabin. The cabin contains a small room with a low ceiling.'
  22. *nl
  23. 'You see a <a href="exec: gt ''bed'', ''start''">couch</a> where you can lie down and sleep.'
  24. *nl
  25. if bucket > 0:
  26. 'There''s a <a href="exec: gs ''swamphouse'', ''bucket'' ">bucket</a> placed in the corner, filled with water collected from the spring.'
  27. else
  28. 'There''s an empty bucket placed in the corner. It needs refilling with water from the spring.'
  29. end
  30. 'You see an old <a href="exec: gs ''swamphouse'', ''washstand'' ">washstand</a> you can use to wash your hands and face. There is a well-used <a href="exec: gs ''swamphouse'', ''tub''">tub</a> nearby, that you can use to bathe in.'
  31. *nl
  32. 'There''s a stack of old <a href="exec: gs ''swamphouse'', ''stackmagazines''">magazines</a>, most likely used for ignition.'
  33. *nl
  34. if clothesAtLocation = 1:'Your clothes are laying on the shelf.'
  35. *nl
  36. if hour = 20 and hunters = 1 and huntersKnow > 0 or hour = 7 and hunters = 1 and huntersKnow > 0:
  37. 'The <a href="exec: gs ''hunters'', ''check_opinion''">hunters</a> are sitting around the table talking.'
  38. elseif hour > 20 and hour < 23 and hunters = 1 and huntersKnow > 0:
  39. 'You see the <a href="exec: gs ''hunters'', ''check_opinion''">hunters</a> hanging out in the hut.'
  40. elseif hour = 23 and hunters = 1 and huntersKnow > 0 or hour >= 0 and hour < 7 and hunters = 1 and huntersKnow > 0:
  41. 'The hunters are sleeping on the couch.'
  42. else
  43. 'The hunters aren''t here right now'
  44. end
  45. *nl
  46. act 'Go outside':
  47. minut += 2 & gt 'swamp_yard'
  48. end
  49. !re-arrange it, there should be no logic error now by illume
  50. if $clothingworntype ! 'nude':
  51. !have cloth, or rag on
  52. act 'Get undressed':
  53. if hunter_sexual_comfort > 50 or hour >= 8 and hour < 20:
  54. cla
  55. *clr
  56. minut+=5
  57. if $clothingworntype ! 'nude':
  58. gs 'clothing', 'strip', 'swamphouse'
  59. end
  60. gs 'underwear', 'remove'
  61. gs 'stat'
  62. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swamphouseundress.jpg"></center>'
  63. 'Feeling the heat in the cabin, you start removing your clothes.'
  64. act 'Back': gt 'swamphouse', 'start'
  65. else
  66. cla
  67. *clr
  68. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/noundress.jpg"></center>'
  69. 'Despite the heat you''re still too shy to get undressed - what if someone suddenly comes in?'
  70. act 'Back': gt 'swamphouse', 'start'
  71. end
  72. end
  73. end
  74. if clothesAtLocation = 1 and swamp_clothes = 0:
  75. !clothes are ready
  76. if $clothingworntype = 'nude' and forced_naked_day < daystart:
  77. act 'Get dressed':
  78. cla
  79. *clr
  80. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampdvornude1.jpg"</center>'
  81. *nl
  82. 'You put your clothes back on.'
  83. gs 'underwear', 'wear'
  84. gs 'clothing', 'recover_lost_clothes', 'swamphouse', 1
  85. gs 'stat'
  86. act 'Back': gt 'swamphouse', 'start'
  87. end
  88. elseif $clothingworntype ! 'nude':
  89. act 'Pick up your clothes':
  90. cla
  91. *clr
  92. gs 'clothing', 'recover_lost_clothes', 'swamphouse'
  93. 'You picked up your clothes.'
  94. act 'Back': gt 'swamphouse', 'start'
  95. end
  96. end
  97. elseif swamp_clothes = 1 and forced_naked_day < daystart:
  98. if $clothingworntype = 'nude':
  99. act 'Wear hessian sack':
  100. cla
  101. *clr
  102. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/tkan_cloth.jpg"></center>'
  103. *nl
  104. 'You cover yourself with the hessian sack'
  105. gs 'clothing', 'recover_lost_clothes', 'swamphouse'
  106. gs 'clothing', 'swamp_clothes', 1
  107. gs 'stat'
  108. act 'Back': gt 'swamphouse', 'start'
  109. end
  110. end
  111. end
  112. if pcs_horny >= 50 and hunters = 0 or pcs_horny >= 50 and hunters = 1 and hour >= 8 and hour < 20:
  113. !TODO: Add content for hunters being around or walking in
  114. act 'Masturbate':
  115. gt 'selfplay', 'start'
  116. end
  117. end
  118. if $clothingworntype = 'nude' and swamp_clothes = 0 and clothesAtLocation = 0 and forced_naked_day < daystart:
  119. act 'Look for some clothes':
  120. cla
  121. *clr
  122. minut += 10
  123. gs 'clothing', 'swamp_clothes', 1
  124. gs 'stat'
  125. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swamphouse_tkancloth.jpg"></center>'
  126. 'You find a piece of burlap... "Well, at least it''s something." you think to yourself.'
  127. act 'Back.': gt 'swamphouse', 'start'
  128. end
  129. end
  130. if breastpump > 0 and bp_unbox >= 1:
  131. act 'Use breast pump':
  132. gt 'lact_bp', 'bp_milking'
  133. end
  134. end
  135. if dirty_swamphouse > 25:act 'Clean the hut':hunter_collective_opinion += 3 & gs 'hunter_favors', 'dirty_swamphouse'
  136. !TODO: Move hunter behavior into its own code block
  137. if hour >= 20 and hour <= 23 and rand(1,2) = 1:
  138. huntersdrink = 1
  139. else
  140. huntersdrink = 0
  141. end
  142. act 'Relax on the couch': gt 'bed', 'start'
  143. !sex with Igor
  144. if huntersIgorLove > 0 and hour > 8 and hour < 19 and huntersIgorQw >= 10 and temp_sh = 1 and huntersIgorsex = 0:
  145. *clr & cla
  146. huntersIgorsex += rand(12,36)
  147. gs 'stat'
  148. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterlove1.4.jpg"></center>'
  149. 'Entering the hut you see Igor. He smiles and walks over to you, grabs hold of you and gives you a passionate kiss.'
  150. '"<<$pcs_nickname>>, I want you," he whispers.'
  151. gs 'arousal', 'kiss', 5
  152. gs 'stat'
  153. act 'Agree':
  154. *clr & cla
  155. minut += 5
  156. huntersIgorQw += 1
  157. gs 'stat'
  158. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterflirt2.'+rand(4,6)+'.jpg"></center>'
  159. 'Smiling you look straight into Igor''s eyes telling him all he needs to know. Without any hesitation he takes you by the hand and leads you...'
  160. act 'Go with Igor': gt 'hunterLoveSex','Igor'
  161. end
  162. act 'Refuse':
  163. *clr & cla
  164. minut += 5
  165. huntersIgorQw -= 1
  166. gs 'stat'
  167. '<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
  168. '"I''m sorry, Igor. I''m not in the mood." you say avoiding eye contact. Igor leaves disappointed...'
  169. act 'Walk away': gt 'swamphouse', 'start'
  170. end
  171. end
  172. !sex with Sergei
  173. if huntersSergeiLove > 0 and pcs_horny <= 60 and huntersSergeiQw >= 10 and temp_sh = 1 and huntersSergeisex = 0 and hour > 8 and hour < 19:
  174. *clr & cla
  175. huntersSergeisex += rand(9,30)
  176. gs 'stat'
  177. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterlove1.4.jpg"></center>'
  178. 'Entering the hut you see Sergei. He smiles and walks over to you, grabs hold of you and gives you a passionate kiss.'
  179. '"<<$pcs_nickname>>, I want you," he whispers.'
  180. gs 'arousal', 'kiss', 5
  181. gs 'stat'
  182. act 'Agree':
  183. *clr & cla
  184. minut += 5
  185. huntersSergeiQw += 1
  186. gs 'stat'
  187. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterflirt2.'+rand(4,6)+'.jpg"></center>'
  188. 'Smiling you look straight into Sergei''s eyes telling him all he needs to know. Without any hesitation he takes you by the hand and leads you...'
  189. act 'Go with Sergei': gt 'hunterLoveSex','Sergei'
  190. end
  191. act 'Refuse':
  192. *clr & cla
  193. minut += 5
  194. huntersSergeiQw -= 1
  195. gs 'stat'
  196. '<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
  197. '"I''m sorry, Sergei. I''m not in the mood." you say avoiding eye contact. Sergei leaves disappointed...'
  198. act 'Walk away': gt 'swamphouse', 'start'
  199. end
  200. end
  201. ! sex with Andrew
  202. if huntersAndreiLove > 0 and pcs_horny <= 60 and huntersAndreiQw >= 10 and temp_sh = 1 and huntersAndreisex = 0 and hour > 8 and hour < 19:
  203. *clr & cla
  204. huntersAndreisex += rand(6,24)
  205. gs 'stat'
  206. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterlove1.4.jpg"></center>'
  207. 'Entering the hut you see Andrei. He smiles and walks over to you, grabs hold of you and gives you a passionate kiss.'
  208. '"<<$pcs_nickname>>, I want you," he whispers.'
  209. gs 'arousal', 'kiss', 5
  210. gs 'stat'
  211. act 'Agree':
  212. *clr & cla
  213. minut += 5
  214. huntersAndreiQw += 1
  215. pcs_horny += 5
  216. gs 'stat'
  217. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterhands.jpg"></center>'
  218. 'Smiling you look straight into Andrei''s eyes telling him all he needs to know. Without any hesitation he takes you by the hand and leads you...'
  219. act 'Go with Andrei': gt 'hunterLoveSex','Andrei'
  220. end
  221. act 'Refuse':
  222. *clr & cla
  223. minut += 5
  224. huntersAndreiQw -= 1
  225. gs 'stat'
  226. '<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
  227. '"I''m sorry, Andrei. I''m not in the mood." you say avoiding eye contact. Andrei leaves disappointed...'
  228. act 'Walk away': gt 'swamphouse', 'start'
  229. end
  230. end
  231. ! trio of HS, Andrei and Sergei, if love
  232. if hunters > 0 and doublehunterlove = 1 and hour >= 8 and hour < 20 and (huntersAndreisex = 0 or huntersSergeisex = 0):
  233. *clr & cla
  234. minut += 5
  235. huntersAndreisex += rand(6,24)
  236. huntersSergeisex += rand(9,30)
  237. gs 'stat'
  238. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hanterswork1.2.jpg"></center>'
  239. 'You see Andrei talking with Sergei in the hut.'
  240. '"Come in <<$pcs_nickname>>, it''s time to consummate the marriage," Andrew jokingly remarked. "I hope you''re willing to do anything we say.'
  241. if klismaday ! daystart:'"I''m sorry, I don''t know if I''m ready yet..." you say . "I haven''t been able to clean myself as you asked, maybe we could skip it this time?.'
  242. if klismaday ! daystart:'Well, we could <<$pcs_nickname>>..." said Andrew. "But since you''re already here, you not being all dolled up doesn''t matter to us. But don''t dare to try to fool us next time, we will not forget."'
  243. '"There are some bushes not far from here, we could take her with us there, no one would be able to find us. Should we tell Igor to join us?" said Sergei. "Nevermind Igor, it would take him to long time to join us."'
  244. act 'Follow the guys':
  245. *clr & cla
  246. minut += 5
  247. huntersAndreiQw += 1
  248. huntersSergeiQw += 1
  249. pcs_horny += 5
  250. doublelovesex = 1
  251. hunterslut += 1
  252. temphunt = 1
  253. if klismaday ! daystart:hunterslut += 1
  254. gs 'stat'
  255. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/doublehanterlove.jpg"></center>'
  256. 'The men hold your hands leading you away from the hut. You''re fully aware of their plans but you don''t really mind.'
  257. act 'Continue': gt 'huntersex', 'doublelovesex'
  258. end
  259. act 'Refuse':
  260. *clr & cla
  261. minut += 5
  262. huntersAndreiQw -= 1
  263. huntersSergeiQw -= 1
  264. gs 'stat'
  265. '<center><img <<$set_imgh>> src="images/pc/speak_to_the_hand.jpg"></center>'
  266. '"No, I refuse, this is something I don''t want part of," you say and without hesitating you turn around and walk away.'
  267. act 'Walk away': gt 'swamphouse', 'start', 'doublelovesex'
  268. end
  269. end
  270. !if GG naked and hunters in the hut
  271. if $clothingworntype = 'nude' and hunters = 1 and hour >= 20 and hour < 23 and hunterknowday ! daystart or $clothingworntype = 'nude' and hunters = 1 and hour = 7 and hunterknowday ! daystart:
  272. cla
  273. *clr
  274. temp_sh =rand(1,3)
  275. gs 'stat'
  276. if huntersKnowSlut = 0:
  277. cla
  278. *clr
  279. gs 'stat'
  280. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swamphousenude.jpg"></center>'
  281. 'You hear the hunters nearing the hut, grabbing the handle, about to open the door. You quickly hide your privare parts behind the hands...'
  282. if clothesAtLocation = 1:
  283. act 'Get dressed':
  284. cla
  285. *clr
  286. minut += 5
  287. gs 'underwear', 'wear'
  288. gs 'clothing', 'recover_lost_clothes', 'swamphouse', 1
  289. !tkan_cloth = 0
  290. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampdvornude1.jpg"></center>'
  291. 'You look around searching for your clothes. When you spot them, you dash over to grab them.'
  292. act 'Continue': gt 'swamphouse', 'start'
  293. end
  294. else
  295. act 'Cover yourself':
  296. cla
  297. *clr
  298. minut+=5
  299. gs 'clothing', 'swamp_clothes', 1
  300. gs 'stat'
  301. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/tkan_cloth.jpg"></center>'
  302. 'You look around searching for your clothes but can''t seem to find them, instead you hide behind a piece of hessian... It''s better than nothing.'
  303. act 'Continue': gt 'swamphouse', 'start'
  304. end
  305. end
  306. act 'Stay naked':
  307. cla
  308. *clr
  309. hunterslut += 1
  310. hunterknowday = daystart
  311. gs 'stat'
  312. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swamphousenude1.jpg"></center>'
  313. 'You take a deep breath and decided to disregard your nerves and leave it as it is. Upon entering the hut, the hunters can''t help themselves, they start staring at your most private parts.'
  314. '"Damn, <<$pcs_nickname>>, you look really good. The things I would want to do to you..." said a somewhat aroused Andrei.'
  315. act 'Continue': gt 'swamphouse', 'start'
  316. end
  317. end
  318. if huntersKnowSlut > 0:
  319. if huntslutsex = 0:
  320. *clr & cla
  321. gs 'stat'
  322. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swamphousenude1.jpg"></center>'
  323. 'Seeing you naked, the men get quickly aroused...'
  324. '"Come here <<$pcs_nickname>>, come to us," one of the guys calls out to you.'
  325. act 'Continue':huntersexnude = 1 & gt 'huntersex', 'huntersexnude'
  326. else
  327. hunterknowday = daystart
  328. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swamphousenude1.jpg"></center>'
  329. 'Seeing you naked, the men just shake their heads...'
  330. '"Look here <<$pcs_nickname>>, if you want to charm us, you will need to think of something else." said one of the guys.'
  331. act 'Continue': gt 'swamphouse', 'start'
  332. end
  333. end
  334. end
  335. ! sex if GG whore
  336. if hunters > 0 and huntersRape = 5 and huntslutsexrand = 1 and huntslutsex = 0 and hour >= 7 and hour < 23:
  337. *clr & cla
  338. minut += 5
  339. temphunt = rand(1,3)
  340. ! the choice of who will fuck GG
  341. sluthomesex = 1
  342. gs 'stat'
  343. if temphunt = 1:'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/andreihanter.jpg"></center>'
  344. if temphunt = 2:'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/sergeihanter.jpg"></center>'
  345. if temphunt = 3:'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/igorhanter.jpg"></center>'
  346. if temphunt = 1:'You enter the hut and bump into Andrei. "Come here <<$pcs_nickname>>," not saying anything more while he throws you on the bed.'
  347. if temphunt = 2:'You enter the hut and bump into Sergei. Noticing you he heads toward you saying "<<$pcs_nickname>>, I''ve got an itch that only you can help scratch."'
  348. if temphunt = 3:'You enter the hut and bump into Igor. He comes over saying smiling "<<$pcs_nickname>>, I need to empty my sack, help me out..."'
  349. if pcs_horny < 40:' You obediently follow suit, knowing what he wants.'
  350. if pcs_horny >= 40 and pcs_horny < 70:'"Come and get me..." is all you manage to say before spreading your legs.'
  351. if pcs_horny >= 70:'"I was hoping this would happen," you think to yourself, feeling your wet pussy screaming with desire. You jump on him, taking charge, leaving him stunned about who wants it more.'
  352. act 'Go': gt 'huntersex', 'sluthomesex'
  353. end
  354. end
  355. if $ARGS[0] = 'bucket':
  356. cla
  357. *clr
  358. menu_off = 1
  359. if bucket > 10:bucket = 10
  360. minut += 1
  361. act 'Move Away': gt 'swamphouse', 'start'
  362. gs 'stat'
  363. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/vedro2.jpg"></center>'
  364. 'A bucket of water. There''s still <<bucket>> liters of water left.'
  365. act 'Drink the water':
  366. cla
  367. minut+=5
  368. cumspclnt = 2 & gs 'cum_cleanup' & pcs_breath = 0
  369. bucket -= 1
  370. if pcs_hydra >= 100:
  371. 'You''re not thirsty anymore. You don''t need to drink more water.'
  372. else
  373. pcs_hydra += 80
  374. cumspclnt = 2
  375. gs 'cum_cleanup'
  376. pcs_breath = 0
  377. 'You take a sip from bucket, quenching your thirst.'
  378. end
  379. act 'Continue': gt 'swamphouse', 'start'
  380. end
  381. end
  382. if $ARGS[0] = 'washstand':
  383. cla
  384. *clr
  385. menu_off = 1
  386. minut += 1
  387. gs 'stat'
  388. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/washstand.jpg"></center>'
  389. 'An old washstand. You can use the basin to clean yourself, if necessary.'
  390. if bucket > 0:
  391. !use current by illume
  392. dynamic $basin
  393. end
  394. act 'Move away': gt 'swamphouse', 'start'
  395. end
  396. if $ARGS[0] = 'tub':
  397. cla
  398. *clr
  399. minut += 1
  400. menu_off = 1
  401. gs 'stat'
  402. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/basin.jpg"></center>'
  403. *nl
  404. 'An old tub, that you can use to bathe yourself. It''s a lot warmer than using the spring! You just need to warm some water, and get undressed first.'
  405. if hotwater = 1 and ($clothingworntype = 'nude' or $clothingworntype = 'swimwear'):
  406. act 'Bathe in the tub (0:30)':
  407. cla
  408. *clr
  409. dynamic $showerdin
  410. face_write = 0
  411. body_write = 0
  412. lubonus = 0
  413. pcs_mood += 5
  414. pcs_willpwr += 10
  415. minut += 30
  416. hotwater = 0
  417. gs 'stat'
  418. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/basinswim.jpg"></center>'
  419. *nl
  420. 'You fill the tub with warm water, take off your clothes, and climbe into the tub. After a good clean and soak, you feel rejuvenated.'
  421. act 'Continue': gt 'swamphouse', 'start'
  422. end
  423. end
  424. act 'Move away': gt 'swamphouse', 'start'
  425. end
  426. if $ARGS[0] = 'clothes_read_magazines':
  427. if $clothingworntype ! 'nude':'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/readmagazines.jpg"></center>'
  428. if $clothingworntype = 'nude' and $pantyworntype ! 'none':'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/readmagazines_tanga.jpg"></center>'
  429. if $clothingworntype = 'nude' and $pantyworntype = 'none':'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/readmagazines_nude.jpg"></center>'
  430. end
  431. if $ARGS[0] = 'stackmagazines':
  432. cla
  433. *clr
  434. menu_off = 1
  435. minut += 1
  436. gs 'stat'
  437. act 'Move away': gt 'swamphouse', 'start'
  438. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/stackmagazines.jpg"></center>'
  439. *nl
  440. 'A stack of all kinds of magazines, there''s even one with "interesting" pictures.'
  441. act 'Read the scientific journal (1:00)':
  442. cla
  443. *clr
  444. if pcs_nerd > 0:
  445. lastread = totminut
  446. lastreadday = daystart
  447. pcs_nerd += 10
  448. end
  449. if pcs_intel >= 50:intel_exp += RAND(0,1)
  450. if pcs_intel < 50:intel_exp += RAND(0,2)
  451. blizoruk+=1
  452. pcs_mood += 10
  453. minut += 60
  454. gs 'stat'
  455. gs 'swamphouse', 'clothes_read_magazines'
  456. 'You decide to look through the scientific journal, trying to understand all sorts of clever things written in the magazine.'
  457. act 'Continue': gs 'swamphouse', 'stackmagazines'
  458. end
  459. act 'Read the literary magazine (1:00)':
  460. cla
  461. *clr
  462. if pcs_nerd > 0:
  463. lastread = totminut
  464. lastreadday = daystart
  465. pcs_nerd += 10
  466. end
  467. if pcs_sprt >= 50:sprt_exp += RAND(0,1)
  468. if pcs_sprt < 50:sprt_exp += RAND(0,2)
  469. blizoruk+=1
  470. pcs_mood += 10
  471. minut += 60
  472. pcs_grades+=1
  473. gs 'stat'
  474. gs 'swamphouse', 'clothes_read_magazines'
  475. 'You decided to look through the literary magazine... It''s a real drag, you almost fall asleep several times while reading it.'
  476. act 'Continue': gs 'swamphouse', 'stackmagazines'
  477. end
  478. act 'Read the entertainment magazine (1:00)':
  479. cla
  480. *clr
  481. if pcs_nerd > 0:
  482. lastread = totminut
  483. lastreadday = daystart
  484. pcs_nerd += 10
  485. end
  486. if pcs_sprt >= 50:sprt_exp += RAND(0,1)
  487. if pcs_sprt < 50:sprt_exp += RAND(0,2)
  488. blizoruk+=1
  489. pcs_mood += 10
  490. pcs_willpwr += 100
  491. minut += 60
  492. gs 'stat'
  493. gs 'swamphouse', 'clothes_read_magazines'
  494. 'You flick entertainment magazine, you delve into the world of the rich and famous.'
  495. act 'Continue': gs 'swamphouse', 'stackmagazines'
  496. end
  497. act 'Read the porn magazine (1:00)':
  498. cla
  499. *clr
  500. blizoruk+=1
  501. pcs_mood += 10
  502. pcs_willpwr += 100
  503. gs 'stat'
  504. if $clothingworntype ! 'nude':'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/readpornomag.jpg"></center>'
  505. if $clothingworntype = 'nude' and $pantyworntype ! 'none':'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/readpornomag_tanga.jpg"></center>'
  506. if $clothingworntype = 'nude' and $pantyworntype = 'none':'<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/readpornomag_nude.jpg"></center>'
  507. *nl
  508. 'You''re flipping through a porn magazine, reading the stories and looking at pictures, when all of a sudden you realize you''ve started touching yourself.'
  509. gs 'arousal', 'voyeur', 60
  510. gs 'arousal', 'end'
  511. gs 'stat'
  512. act 'Continue': gs 'swamphouse', 'stackmagazines'
  513. end
  514. end
  515. if $ARGS[0] = 'huntersrelax':
  516. cla
  517. *clr
  518. minut += 1
  519. menu_off = 1
  520. gs 'stat'
  521. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hantersrelax1.'+rand(1,8)+'.jpg"></center>'
  522. *nl
  523. 'You see the hunters in the hut minding their own business.'
  524. act 'Speak with Andrei': gt 'Andreihunter'
  525. act 'Speak with Sergei': gt 'Sergeihunter'
  526. act 'Speak with Igor': gt 'Igorhunter'
  527. act 'Move away': gt 'swamphouse', 'start'
  528. end
  529. if $ARGS[0] = 'daytime_flavor_events':
  530. !TODO: Add stuff here
  531. end
  532. if $ARGS[0] = 'nighttime_flavor_events':
  533. if rand(1,10) = 1:
  534. gs 'hunter_interactions', 'indoors_naked_encounter'
  535. end
  536. end
  537. --- swamphouse ---------------------------------