1
0

saunawhore.qsrc 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110
  1. # saunawhore
  2. if moodTypeRand <= 0:
  3. $moodType = 'bad'
  4. elseif moodTypeRand >= 1 and moodTypeRand <= 3:
  5. $moodType = 'fairly normal'
  6. elseif moodTypeRand >= 4:
  7. $moodType = 'good'
  8. end
  9. if $ARGS[0] = 'clientGate':
  10. if rand(0,19) = 0:gt 'saunawhore', 'bdsmclient'
  11. moodTypeRand = rand(-3, 3)
  12. ! customer body type
  13. ! -1=skinny, 3-4=regular, 5-6=muscular, 7+=fat
  14. bodyTypeRand = 3
  15. ! customer height type
  16. ! -1=small, 3-4=regular, 5+=tall
  17. heightTypeRand = 3
  18. ! customer age
  19. customerAge = rand(15, 90)
  20. gs 'npcgeneratec', 0, 'client', customerAge
  21. gs 'boyStat', $npclastgenerated
  22. ! customer race, racial modifiers, dick modifiers
  23. raceRand = rand(1, 10)
  24. if RaceRand <= 7:
  25. $raceType = 'white'
  26. dickChance = 30
  27. bodyTypeRand += rand(-2, 8)
  28. heightTypeRand += rand(-1, 6)
  29. elseif RaceRand <= 9:
  30. $raceType = 'asian'
  31. dickChance = 20
  32. bodyTypeRand += rand(-6, 2)
  33. heightTypeRand += rand(-4, 1)
  34. else
  35. $raceType = 'black'
  36. dickChance = 40
  37. bodyTypeRand += rand(0, 6)
  38. heightTypeRand += rand(0, 6)
  39. end
  40. dickRand = rand(1, 100)
  41. if dickRand <= dickChance:
  42. dick = rand(15, 30)
  43. elseif dickRand <= (dickChance * 2):
  44. dick = rand(10, 20)
  45. else
  46. dick = rand(8, 12)
  47. end
  48. ! customer dick size
  49. if dick >= 24:
  50. $dick_girth = 'a monstrous'
  51. cumVol = rand(4, 5)
  52. elseif dick >= 24:
  53. $dick_girth = 'a huge'
  54. cumVol += 1
  55. cumVol = rand(3, 5)
  56. elseif dick >= 20:
  57. $dick_girth = 'a very big'
  58. cumVol = rand(2, 5)
  59. elseif dick >= 16:
  60. $dick_girth = 'a big'
  61. cumVol = rand(2, 4)
  62. elseif dick >= 12:
  63. $dick_girth = 'a regular'
  64. cumVol -= 1
  65. cumVol = rand(1, 4)
  66. else
  67. $dick_girth = 'a tiny'
  68. cumVol -= 2
  69. cumVol = rand(1, 3)
  70. end
  71. ! customer cum volume
  72. if cumVol <= 1:
  73. $cumType = 'a bit of'
  74. cumVolMl = 10
  75. elseif cumVol = 2:
  76. $cumType = 'some'
  77. cumVolMl = 20
  78. elseif cumVol = 3:
  79. $cumType = 'his warm'
  80. cumVolMl = 40
  81. elseif cumVol = 4:
  82. $cumType = 'a lot of'
  83. cumVolMl = 60
  84. elseif cumVol >= 5:
  85. $cumType = 'an enormous amount of'
  86. cumVolMl = 100
  87. end
  88. if bodyTypeRand <= 1:
  89. $bodyType = 'thin'
  90. elseif bodyTypeRand >= 2 and bodyTypeRand <= 4:
  91. $bodyType = 'athletic'
  92. elseif bodyTypeRand >= 5 and bodyTypeRand <= 6:
  93. $bodyType = 'stout'
  94. elseif bodyTypeRand >= 7:
  95. $bodyType = 'fat'
  96. end
  97. if heightTypeRand <= 1:
  98. $heightType = 'short'
  99. elseif heightTypeRand >= 2 and heightTypeRand <= 4:
  100. $heightType = 'average height'
  101. elseif heightTypeRand >= 5:
  102. $heightType = 'tall'
  103. end
  104. if customerAge <= 18:
  105. $ageType = 'a teenage'
  106. elseif customerAge > 18 and customerAge <= 30:
  107. $ageType = 'a young'
  108. elseif customerAge > 30 and customerAge <= 45:
  109. $ageType = 'a middle-aged'
  110. elseif customerAge > 45 and customerAge <= 60:
  111. $ageType = 'a late middle-aged'
  112. elseif customerAge > 60 and customerAge <= 80:
  113. $ageType = 'an elderly'
  114. elseif customerAge > 80:
  115. $ageType = 'a very old'
  116. end
  117. minut += 5
  118. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/room.jpg"></center>'
  119. 'You lead the client into your room, closing the door behind him.'
  120. 'He sits down in the chair and stares at you with obvious lust.'
  121. 'He is <<$ageType>> <<$raceType>> man, and he is <<$heightType>> and <<$bodyType>>.'
  122. if dick >= 16:'From the bulge in his pants, you can tell he probably has <<$dick_girth>> dick.'
  123. 'He seems to be in a <<$moodType>> mood.'
  124. gs 'stat'
  125. act 'Take off your clothes':gt 'saunawhore', 'simplystrip'
  126. if pcs_dancero >= 10:act 'Do a little striptease':gt 'saunawhore', 'striptease'
  127. end
  128. if $ARGS[0] = 'striptease':
  129. if pcs_dancero < 20:pcs_dancero += rand(1,3)
  130. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/striptease'+rand(1, 5)+'.mp4"></video></center>'
  131. 'Hoping to please the customer, you decide to give him a little show. You count a beat in your head and begin dancing, slowly stripping away your clothes, one piece at a time. It would probably be better if you had actual music, but the client smirks and seems to enjoy it nonetheless.'
  132. moodTypeRand += 1
  133. gs 'arousal', 'foreplay', 5, 'prostitution'
  134. gs 'stat'
  135. act 'Continue':gt 'saunawhore', 'strippedGate'
  136. end
  137. if $ARGS[0] = 'simplystrip':
  138. if pcs_dancero < 10: pcs_dancero += rand(0,2)
  139. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/simplystrip'+rand(1, 2)+'.mp4"></video></center>'
  140. 'You remove your clothes and toss them aside, mentally preparing for the task ahead. The client looks vaguely irritated - perhaps he expected something a bit more provacative?'
  141. moodTypeRand -= 1
  142. gs 'arousal', 'foreplay', 2, 'prostitution'
  143. gs 'stat'
  144. act 'Continue':gt 'saunawhore', 'strippedGate'
  145. end
  146. if $ARGS[0] = 'strippedGate':
  147. minut += 2
  148. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/nakedstand.jpg"></center>'
  149. 'You are now fully naked in front of the client, his eyes devouring every inch of your young body.'
  150. if pcs_dancero >= 20:act 'Dance naked':gt 'saunawhore', 'nakeddance'
  151. act 'Kneel and open your mouth':gt 'saunawhore', 'blowjob'
  152. if guy >= 20:act 'Present him your holes':gt 'saunawhore', 'holeshow'
  153. end
  154. if $ARGS[0] = 'nakeddance':
  155. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/nakeddance'+rand(1, 4)+'.mp4"></video></center>'
  156. 'You walk towards the client, straddle his legs, and begin to dance. He leans back and you proceed to give him the best lapdance you can muster. You alternate between rubbing your breasts in his face and turning around to grind your ass on his crotch. Judging from the hardness in his pants, it seems that he is pleased with your efforts.'
  157. moodTypeRand += 1
  158. gs 'arousal', 'foreplay', 5, 'prostitution'
  159. gs 'stat'
  160. act 'Continue':gt 'saunawhore', 'blowjob'
  161. end
  162. if $ARGS[0] = 'holeshow':
  163. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/holeshow'+rand(1, 5)+'.mp4"></video></center>'
  164. 'You decide to tease him further, so you lean closer to him and open your mouth, sticking your tongue out as far as possible and then sucking your fingers.'
  165. 'Then you turn around, bend over, and grab your ass with both hands.'
  166. 'You pull your ass cheeks apart, giving him a great view of both of your holes.'
  167. moodTypeRand += 1
  168. gs 'arousal', 'foreplay', 5, 'prostitution'
  169. gs 'stat'
  170. act 'Continue':gt 'saunawhore', 'blowjob'
  171. end
  172. if $ARGS[0] = 'blowjob':
  173. minut += 5
  174. 'You kneel in front of him and bite your lip, caressing his cock through his pants with your hands.'
  175. if $moodType = 'fairly normal':
  176. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  177. 'He pulls out his <<$dick_girth>> dick and brings it to your <<$liptalk>>.'
  178. 'You start kissing the tip, licking it all around and putting it a bit inside your mouth and sucking the head.'
  179. gs 'arousal', 'bj', 5, 'prostitution'
  180. gs 'stat'
  181. act 'Suck it':gt 'saunawhore', 'blowjobGate'
  182. elseif $moodType = 'good':
  183. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  184. 'He comes close to you, fondles your hair and face and takes you gently by your arm, raising you up from the floor.'
  185. 'He directs you to the bed, undresses and both of you lie down.'
  186. act 'Embrace him':gt 'saunawhore', 'fuckGate'
  187. elseif $moodType = 'bad':
  188. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/slapface'+rand(1, 1)+'.mp4"></video></center>'
  189. 'He comes close to you and suddenly slaps your face hard.'
  190. 'You are caught by surprise and tears well up in your eyes.'
  191. 'He seems very angry and even aroused by your misfortune.'
  192. 'As you kneel in front of him in tears, he grabs you roughly by your arms, painfully twisting them behind your back, and slams you down on the bed.'
  193. gs 'pain', 1, 'cheeks', 'slap'
  194. if slutty < 10:
  195. Manna -= 50
  196. else
  197. Manna -= 10
  198. end
  199. gs 'pain', 2, 'armL', 'twist'
  200. gs 'pain', 2, 'armR', 'twist'
  201. act 'Brace yourself':gt 'saunawhore', 'fuckRoughGate'
  202. end
  203. gs 'stat'
  204. end
  205. if $ARGS[0] = 'blowjobGate':
  206. 'You begin to suck his cock in earnest, bobbing your head back and forth while you work it, running your tongue along the underside of his shaft.'
  207. gs 'arousal', 'bj', 5, 'prostitution'
  208. 'He is rock hard now and you can see his <<$dick_girth>> <<dick>>cm member in all its glory.'
  209. 'Client seems to be so far content with your performance, but you think it may be time to switch to efficient approach:'
  210. gs 'stat'
  211. if dick > pcs_throat:
  212. 'There''s no way you''ll be able to fit the entire thing in your mouth.'
  213. act 'Try to deepthroat him':gt 'saunawhore', 'blowjobCaress'
  214. else
  215. act 'Deepthroat him':gt 'saunawhore', 'blowjobDeepthroat'
  216. end
  217. end
  218. if $ARGS[0] = 'blowjobCaress':
  219. 'You try to deepthroat him, but his <<$dick_girth>> cock is just too big for you to handle, and you end up gagging yourself and coughing.'
  220. gs 'arousal', 'bj', 5, 'prostitution'
  221. ''
  222. moodChange = rand (-2, 0)
  223. moodTypeRand += moodChange
  224. if $moodType = 'good':
  225. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  226. 'He seems to enjoy your efforts anyway, and signals to you that he''s ready to move on to the next stage.'
  227. act 'Continue':gt 'saunawhore', 'fuckGate'
  228. elseif $moodType = 'fairly normal':
  229. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  230. 'He seem to have enough of this. He takes your hand and directs you towards the bed.'
  231. act 'Continue':gt 'saunawhore', 'fuckGate'
  232. elseif $moodType = 'bad':
  233. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/slapface'+rand(1, 1)+'.mp4"></video></center>'
  234. 'He scowls at your pathetic attempt and pulls his cock out of your mouth.'
  235. question = rand (1, 3)
  236. if question = 1:
  237. 'He slaps your face hard and shouts: "What the hell is wrong with you? What kind of a whore is this bad at sucking cock?"'
  238. elseif question = 2:
  239. 'He slaps your face hard and shouts: "My cock isn''t tasty enough for you to suck on properly, bitch?"'
  240. elseif question = 3:
  241. 'He slaps your face hard and shouts: "Christ, what kind of a good-for-nothing whore are you?"'
  242. end
  243. gs 'pain', 1, 'cheeks', 'slap'
  244. 'Furious, he grabs you roughly by your arms, painfully twisting them behind your back, and slams you down on the bed.'
  245. act 'Continue':gt 'saunawhore', 'fuckRoughGate'
  246. end
  247. gs 'stat'
  248. end
  249. if $ARGS[0] = 'blowjobDeepthroat':
  250. moodChange += rand (-1, 2)
  251. moodTypeRand += moodChange
  252. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/deepthroat'+rand(1, 5)+'.mp4"></video></center>'
  253. 'The client groans as you take him all the way to the hilt - his <<$dick_girth>> <<dick>>cm member is buried all the way inside your throat.'
  254. 'You try to hold it as long as possible, while teasing his balls with your tongue, your nose pressed against his pubic area.'
  255. if $moodType = 'bad':
  256. 'He gets a sadistic look in his eye, and then grabs the back of your head and holds you down, not letting you escape.'
  257. 'You feel yourself beginning to suffocate and panic, trying to get away from him, but he is much stronger than you and holds you tightly in place. Your eyes begin to roll back and you feel your conciousness fading when he finally releases you. You hack and sputter, thick strands of saliva hanging from his cock to your mouth. He seems to have enjoyed that quite a bit.'
  258. end
  259. gs 'arousal', 'bj', 5, 'prostitution', 'deepthroat'
  260. 'Finally he seems to have had enough of oral sex and signals you that he wants some more.'
  261. gs 'stat'
  262. act 'Continue':gt 'saunawhore', 'fuckGate'
  263. end
  264. if $ARGS[0] = 'fuckGate':
  265. minut += 2
  266. noCondChance = rand(1, 100)
  267. if noCondChance < 40:
  268. 'He leers at you lustfully and asks, "So baby, how much for not using a condom?"'
  269. 'When you hesitate, he adds, "C''mon, I''ll pay you double."'
  270. act 'Let him fuck you without a condom':gt 'saunawhore', 'fuckGateCondomNo'
  271. act 'Insist on using a condom':gt 'saunawhore', 'fuckGateCondomYes'
  272. else
  273. gs 'saunawhore', 'fuckGateCondomYes'
  274. end
  275. gs 'stat'
  276. end
  277. if $ARGS[0] = 'fuckGateCondomYes':
  278. useCondom = 1
  279. moodTypeRand -= 2
  280. gs 'saunawhore', 'fuckGateGo'
  281. end
  282. if $ARGS[0] = 'fuckGateCondomNo':
  283. useCondom = 2
  284. moodTypeRand += 1
  285. gs 'saunawhore', 'fuckGateGo'
  286. end
  287. if $ARGS[0] = 'fuckGateGo':
  288. minut += 2
  289. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/lieonbedboth.jpg"></center>'
  290. 'You lie back on the bed in front of the client.'
  291. '"How do you want me?" you ask him.'
  292. if $moodType = 'bad':
  293. '"How do I want you whore? I want you screaming!"'
  294. forced = 1
  295. act 'Continue':gt 'saunawhore', 'fuckRoughGate'
  296. else
  297. forced = 2
  298. holeType = rand(1, 2)
  299. if holeType = 1:
  300. '"I want some pussy."'
  301. act 'Spread your legs':gt 'saunawhore', 'fuckVaginal'
  302. elseif holeType = 2:
  303. '"I want to fuck your ass."'
  304. act 'Turn around and spread your ass':gt 'saunawhore', 'fuckAnal'
  305. end
  306. end
  307. gs 'stat'
  308. end
  309. if $ARGS[0] = 'fuckVaginal':
  310. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckvaginal'+rand(1, 5)+'.mp4"></video></center>'
  311. 'He climbs on top of you and pushes his member inside of you.'
  312. if dick > pcs_vag:
  313. 'His <<$dick_girth>> <<dick>>cm cock is too big for your pussy and causes you intense pain, stretching you past your limit and bringing tears to your eyes. At least he isn''t too rough.'
  314. 'He thrusts his <<$dick_girth>> <<dick>>cm cock in you over and over, seeming to enjoy the tightness and not caring much about your own pain.'
  315. DMG = (dick - pcs_vag) / 2
  316. gs 'pain', 1, 'vaginal', 'stretch'
  317. pcs_mood -= (DMG * 5)
  318. gs 'arousal', 'vaginal', 10, 'prostitution', 'rough'
  319. else
  320. 'He thrusts his <<$dick_girth>> <<dick>>cm cock in you over and over, not caring much about technique or your own pleasure.'
  321. gs 'arousal', 'vaginal', 10, 'prostitution'
  322. end
  323. ''
  324. 'After a while, you can sense that he is almost ready to come.'
  325. gs 'stat'
  326. if useCondom = 2:
  327. act 'Ask him not to cum inside of you':
  328. not_inside = 1
  329. gt 'saunawhore', 'cumClientGate'
  330. end
  331. end
  332. act 'Let him cum wherever he wants':
  333. not_inside = 2
  334. gt 'saunawhore', 'cumClientGate'
  335. end
  336. end
  337. if $ARGS[0] = 'fuckAnal':
  338. stat['anal'] += 1
  339. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckanal'+rand(1, 5)+'.mp4"></video></center>'
  340. 'He climbs on the bed behind you and presses the tip of his dick against your asshole. After waiting a moment, he begins to push it in.'
  341. if dick > pcs_anus:
  342. 'His <<dick>> cm <<$dick_girth>> cock is too big for your ass and causes you intense pain as it stretches you out painfully and presses deep inside of you.'
  343. 'He thrusts his <<$dick_girth>> <<dick>>cm cock in your ass over and over, seeming to enjoy the tightness and not caring much about your own pain.'
  344. DMG = (dick - pcs_anus) / 2
  345. gs 'pain', 1, 'asshole', 'stretch'
  346. pcs_mood -= (DMG * 5)
  347. gs 'arousal', 'anal', 10, 'prostitution', 'rough'
  348. else
  349. 'He thrusts his <<$dick_girth>> <<dick>>cm cock in your ass over and over, not caring much about technique or whether or not you''re enjoying it.'
  350. gs 'arousal', 'anal', 10, 'prostitution'
  351. end
  352. ''
  353. 'After a while, you can sense that he is almost ready to come.'
  354. gs 'stat'
  355. act 'Let him cum wherever he wants':
  356. not_inside = 2
  357. gt 'saunawhore', 'cumClientGate'
  358. end
  359. end
  360. if $ARGS[0] = 'fuckRoughGate':
  361. minut += 5
  362. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bedoverpowered.jpg"></center>'
  363. 'The man is much stronger than you, and you are completely overpowered, entirely at his will.'
  364. 'He keeps your arms pinned painfully behind your back.'
  365. pcs_mood -= 50
  366. useCondom = rand(1,2)
  367. forced = 1
  368. gs 'pain', 2, 'armL', 'twist'
  369. gs 'pain', 2, 'armR', 'twist'
  370. holeType = rand(1, 2)
  371. if holeType = 1 and useCondom = 1:
  372. 'You feel the tip of his cock against your pussy... at least it feels like he''s using a condom.'
  373. act 'Continue':gt 'saunawhore', 'fuckRoughVaginal'
  374. elseif holeType = 1 and useCondom = 2:
  375. 'You feel the tip of his cock against your pussy... and it feels like he''s not wearing a condom!'
  376. act 'Continue':gt 'saunawhore', 'fuckRoughVaginal'
  377. elseif holeType = 2:
  378. 'You feel the tip of his cock pressing against your asshole... this is probably not going to be pleasant.'
  379. act 'Continue':gt 'saunawhore', 'fuckRoughAnal'
  380. end
  381. gs 'stat'
  382. end
  383. if $ARGS[0] = 'fuckRoughVaginal':
  384. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckroughvaginal'+rand(1, 5)+'.mp4"></video></center>'
  385. 'He forces his dick inside of you, and begins to fuck your tender pussy furiously.'
  386. 'You cannot help but scream in pain, which seems to arouse him even more and makes him push even harder and deeper.'
  387. if dick > pcs_vag:
  388. 'His <<$dick_girth>> <<dick>>cm is too big for your pussy and causes you intense pain, stretching you horribly and slamming against your cervix.'
  389. DMG = (dick - pcs_vag)
  390. gs 'pain', 2, 'vaginal', 'stretch'
  391. !gs 'pain', 2, 'cervix', 'pinch'
  392. pcs_mood -= (DMG * 5)
  393. end
  394. gs 'arousal', 'vaginal', 10, 'prostitution', 'rough', 'bound'
  395. ''
  396. 'After seemingly endless fucking, you can finally sense that he is almost ready to come.'
  397. gs 'stat'
  398. if useCondom = 2:
  399. act 'Beg him not to cum inside of you':
  400. not_inside = 1
  401. gt 'saunawhore', 'cumClientGate'
  402. end
  403. end
  404. act 'Let him cum wherever he wants':
  405. not_inside = 2
  406. gt 'saunawhore', 'cumClientGate'
  407. end
  408. end
  409. if $ARGS[0] = 'fuckRoughAnal':
  410. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckroughanal'+rand(1, 5)+'.mp4"></video></center>'
  411. 'He roughly shoves his entire cock up your ass, and begins to fuck it furiously.'
  412. 'You cannot help but scream in agony, which arouses him even more and makes him push even harder and deeper.'
  413. if dick > pcs_anus:
  414. 'His <<$dick_girth>> <<dick>>cm is too big for your ass and causes you intense pain, stretching you out and making it feel like you''re being ripped open.'
  415. DMG = (dick - pcs_anus)
  416. gs 'pain', 2, 'asshole', 'stretch'
  417. pcs_mood -= (DMG * 5)
  418. end
  419. not_inside = 2
  420. gs 'arousal', 'anal', 10, 'prostitution', 'rough', 'bound'
  421. ''
  422. 'After seemingly endless assfucking, you can finally sense that he is almost ready to come.'
  423. gs 'stat'
  424. act 'Let him cum wherever he wants':gt 'saunawhore', 'cumClientGate'
  425. end
  426. if $ARGS[0] = 'cumClientGate':
  427. if $moodType = 'bad':
  428. if not_inside = 2:
  429. cumRand = rand(1, 10)
  430. if cumRand <= 9 and holeType = 1:
  431. 'You feel his cock twitch and realize he is about to cum inside of you.'
  432. act 'Continue':gt 'saunawhore', 'cumVaginal'
  433. elseif cumRand <= 9 and holeType = 2:
  434. 'You feel his cock twitch and realize he is about to cum in your ass.'
  435. act 'Continue':gt 'saunawhore', 'cumAnal'
  436. else
  437. 'He pulls out and brings his cock up in front of your face.'
  438. act 'Continue':gt 'saunawhore', 'cumFace'
  439. end
  440. else
  441. cumRand = rand(1, 2)
  442. if cumRand = 1 and holeType = 1:
  443. 'He just laughs and you realize he is going to cum inside of you anyway.'
  444. act 'Continue':gt 'saunawhore', 'cumVaginal'
  445. elseif cumRand = 2:
  446. 'He smirks and says "Fine, how about in your eyes then, whore?"'
  447. gs 'pain', 1, 'eyes', 'burn'
  448. act 'Continue':gt 'saunawhore', 'cumFace'
  449. end
  450. end
  451. else
  452. if not_inside = 2:
  453. cumRand = rand(1, 5)
  454. if cumRand = 1 and holeType = 1:
  455. 'You feel his cock twitch and realize he is about to cum inside of you.'
  456. act 'Continue':gt 'saunawhore', 'cumVaginal'
  457. elseif cumRand = 1 and holeType = 2:
  458. 'You feel his cock twitch and realize he is about to cum in your ass.'
  459. act 'Continue':gt 'saunawhore', 'cumAnal'
  460. elseif cumRand = 2:
  461. 'He pulls out and brings his cock up in front of your face.'
  462. act 'Continue':gt 'saunawhore', 'cumFace'
  463. elseif cumRand = 3:
  464. 'He pulls out and brings his cock up in front of your face.'
  465. act 'Continue':gt 'saunawhore', 'cumMouth'
  466. elseif cumRand = 4:
  467. 'He pulls out and holds his cock over your body.'
  468. act 'Continue':gt 'saunawhore', 'cumBelly'
  469. elseif cumRand = 5:
  470. 'He pulls out and holds his cock over your body.'
  471. act 'Continue':gt 'saunawhore', 'cumTits'
  472. end
  473. else
  474. cumRand = rand(1, 9)
  475. if cumRand <= 2:
  476. 'He nods, pulls out, and brings his cock up in front of your face.'
  477. act 'Continue':gt 'saunawhore', 'cumFace'
  478. elseif cumRand <= 4:
  479. 'He nods, pulls out, and brings his cock up in front of your face.'
  480. act 'Continue':gt 'saunawhore', 'cumMouth'
  481. elseif cumRand <= 6:
  482. 'He nods, pulls out, and holds his cock over your body.'
  483. act 'Continue':gt 'saunawhore', 'cumBelly'
  484. elseif cumRand <= 8:
  485. 'He nods, pulls out, and holds his cock over your body.'
  486. act 'Continue':gt 'saunawhore', 'cumTits'
  487. else
  488. 'He shakes his head and says "Sorry, I can''t stop now!" and you realize he''s going to cum in you anyway!'
  489. act 'Continue':gt 'saunawhore', 'cumVaginal'
  490. end
  491. end
  492. end
  493. end
  494. if $ARGS[0] = 'cumVaginal':
  495. minut += 5
  496. if useCondom = 1:
  497. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomVaginal.jpg"></center>'
  498. 'The client''s cock twitches several more times as he cums into the condom inside of you.'
  499. 'He strips the condom from his dick, and you see that it has <<$cumType>> cum in it.'
  500. moodTypeRand += rand (-2, 2)
  501. if $moodType = 'bad':
  502. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomPourFace.jpg"></center>'
  503. 'Suddenly he grabs your head and pours the contents all over your face.'
  504. gs 'cum_call', '', 'sauna client', 0, 3, 0, cumVolMl
  505. gs 'cum_call', 'face', 'sauna client', 0, 0, 0, cumVolMl
  506. elseif $moodType = 'fairly normal':
  507. 'He throws it away on the floor, not caring about spilling the fluids around.'
  508. gs 'cum_call', '', 'sauna client', 0, 3, 0, cumVolMl
  509. elseif $moodType = 'good':
  510. 'He throws it in the waste bin and gently caresses your hair afterwards.'
  511. gs 'cum_call', '', 'sauna client', 0, 3, 0, cumVolMl
  512. end
  513. else
  514. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumVaginal'+rand(1, 5)+'.mp4"></video></center>'
  515. 'The client''s cock twitches several more times, and you feel a warmth spreading inside of you as he pumps <<$cumType>> cum deep inside your pussy.'
  516. gs 'cum_call', '', 'sauna client', 0, 0, 0, cumVolMl
  517. if rand(1,100) >= 70:dynamic $venerasiak
  518. end
  519. gs 'stat'
  520. act 'Continue':gt 'saunawhore', 'clientLeave'
  521. end
  522. if $ARGS[0] = 'cumAnal':
  523. if useCondom = 1:
  524. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomAnal.jpg"></center>'
  525. 'The client''s cock twitches several more times as he cums into the condom inside of your ass.'
  526. 'He strips the condom from his dick, and you see that it has <<$cumType>> cum in it.'
  527. moodTypeRand += rand (-2, 2)
  528. if $moodType = 'bad':
  529. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomPourFace.jpg"></center>'
  530. 'Suddenly he grabs your head and pours the contents all over your face.'
  531. gs 'cum_call', 'anus', 'sauna client', 0, 3, 0, cumVolMl
  532. gs 'cum_call', 'face', 'sauna client', 0, 0, 0, cumVolMl
  533. elseif $moodType = 'fairly normal':
  534. 'He throws it away on the floor, not caring about spilling the fluids around.'
  535. gs 'cum_call', 'anus', 'sauna client', 0, 3, 0, cumVolMl
  536. elseif $moodType = 'good':
  537. 'He throws it in the waste bin and gently caresses your hair afterwards.'
  538. gs 'cum_call', 'anus', 'sauna client', 0, 3, 0, cumVolMl
  539. end
  540. else
  541. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumAnal'+rand(1, 5)+'.mp4"></video></center>'
  542. 'The client''s cock twitches several more times, and you feel a warmth spreading inside of you as he pumps <<$cumType>> cum deep inside your gut.'
  543. if rand(1,100) >= 70:dynamic $venerasiak
  544. gs 'cum_call', 'anus', 'sauna client', 0, 0, 0, cumVolMl
  545. end
  546. gs 'stat'
  547. act 'Continue':gt 'saunawhore', 'clientLeave'
  548. end
  549. if $ARGS[0] = 'cumFace':
  550. facial += 1
  551. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumFace'+rand(1, 5)+'.mp4"></video></center>'
  552. if useCondom = 1:
  553. 'The client strips the condom from his dick and blows <<$cumType>> cum all over your face.'
  554. else
  555. 'The client finishes himself off and blows <<$cumType>> cum all over your face.'
  556. end
  557. gs 'cum_call', 'face', 0, 0, 0, cumVolMl
  558. gs 'stat'
  559. act 'Continue':gt 'saunawhore', 'clientLeave'
  560. end
  561. if $ARGS[0] = 'cumMouth':
  562. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumMouth'+rand(1, 5)+'.mp4"></video></center>'
  563. if useCondom = 1:
  564. 'The client strips the condom from his dick and shoots <<$cumType>> cum inside your mouth.'
  565. else
  566. 'The client stuffs his dick back inside your mouth, and as you suck it, he shoots <<$cumType>> cum inside your mouth.'
  567. end
  568. if rand(1,100) >= 70:dynamic $venerasiakOral
  569. gs 'cum_call', 'mouth', 0, 0, 0, cumVolMl
  570. gs 'stat'
  571. act 'Continue':gt 'saunawhore', 'clientLeave'
  572. end
  573. if $ARGS[0] = 'cumBelly':
  574. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumBelly'+rand(1, 5)+'.mp4"></video></center>'
  575. if useCondom = 1:
  576. 'The client strips the condom from his dick and shoots <<$cumType>> cum all over your belly.'
  577. else
  578. 'The client finishes himself off and shoots <<$cumType>> cum all over your belly.'
  579. end
  580. gs 'cum_call', 'stomach', 0, 0, 0, cumVolMl
  581. gs 'stat'
  582. act 'Continue':gt 'saunawhore', 'clientLeave'
  583. end
  584. if $ARGS[0] = 'cumTits':
  585. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumTits'+rand(1, 5)+'.mp4"></video></center>'
  586. 'You kneel down infront of him, raising your breasts higher for him to shoot his cum on them.'
  587. if useCondom = 1:
  588. 'The client strips the condom from his dick and shoots <<$cumType>> cum all over your tits.'
  589. else
  590. 'The client finishes himself off and shoots <<$cumType>> cum all over your tits.'
  591. end
  592. gs 'cum_call', 'breasts', 0, 0, 0, cumVolMl
  593. gs 'stat'
  594. act 'Continue':gt 'saunawhore', 'clientLeave'
  595. end
  596. if $ARGS[0] = 'bdsmclient':
  597. cla
  598. *clr
  599. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm1.jpg"></center>'
  600. 'You''re brought into one the private sauna rooms where they tell you that today you''ll be performing a different task than your regular routine.'
  601. 'As you stand in the sauna looking around you see some ropes hanging by a bench. Your body tenses as you come to the realization that the ropes are there for you.'
  602. '"Don''t worry <<$pcs_nickname>>. This client is only somewhat kinky he won''t hurt you." they assure you as they make you sit on the bench and tie you up.'
  603. '"Just one last thing." they say as they put a paper bag over your head. They leave the room as you sit there in silence.'
  604. act 'Sit and wait':
  605. cla
  606. *clr
  607. gs 'pain', 2, 'handL', 'bind'
  608. gs 'pain', 2, 'handR', 'bind'
  609. minut += 15
  610. gs 'stat'
  611. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm2.jpg"></center>'
  612. 'The ropes are chaffing, you''re uncomfortable and it takes a while until you hear someone open the door. You hear some heavy steps come towards you but you can''t see anything because of the bag.'
  613. '"Let me help you out girl." you hear a deep voice say as he removes the paper bag from your head, you flinch as you see he''s wearing a mask over his head to keep anonymous.'
  614. 'The man tells you to relax and that he doesn''t want to fuck you but only to watch you squirm as you''re tied.'
  615. act 'Squirm':
  616. cla
  617. *clr
  618. minut += 4
  619. gs 'stat'
  620. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm3.jpg"></center>'
  621. 'Not wanting to upset the patron you begin acting as you''re fighting to get loose, grunting and moaning.'
  622. '"Good good." the man says as he drops his pants and begins touching his little cock, it''s quite clear why you needn''t have worried about getting fucked by this guy.'
  623. 'You do this for some time while the man begins touching himself. He''s getting off at having all this control. All of a sudden he stops touching himself and also commands you to stop, he walks over to the door and whispers something to the goons standing outside the door.'
  624. act 'Stand up':
  625. cla
  626. *clr
  627. minut += 10
  628. gs 'stat'
  629. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm4.jpg"></center>'
  630. 'The goons quickly enter the room, grab hold of you and stand you up. "How do you want her?" they ask.'
  631. 'The man stands for a moment pondering what to do next, "Tie her up like she is I want to observe her while standing." the voice behind the mask commands.'
  632. 'The goons are pretty quick and they tie your hands, mid-section and legs so you can''t move. They leave as soon as they''re done while the man begins touching his cock once again.'
  633. '"You have a great body girl, has anyone told you that?" he asks as you try to move your body to a comfortable position.'
  634. '"That''s right, squirm you little whore. I know you''re uncomfortable. How does it feel having someone else in control of your fate?"'
  635. 'By now you''re getting worried about what the man is really up to.'
  636. act 'On all fours':
  637. cla
  638. *clr
  639. gs 'pain', 2, 'legs', 'bind'
  640. minut += 10
  641. gs 'stat'
  642. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm5.jpg"></center>'
  643. 'All of a sudden the man claps his hands and the goons run inside the room again. "I want to see her from behind. And be sure to tie her up nicely, no weak ass shit, like the last time."'
  644. 'They quickly finish up leaving you at the mercy of the man. "Like I said, you don''t have to worry I won''t fuck you. For me it''s enough to feel in control to get me off."'
  645. 'You nod as you''re too afraid to what he might be up to. "Now girl. Spread your legs I want to see your beautiful pussy lips."'
  646. 'You try to spread as much as you can but the ropes are preventing you and as harder you''re trying the more you feel the pain from the ropes. You let desperate cry as he starts grunting.'
  647. act 'On your back':
  648. cla
  649. *clr
  650. gs 'pain', 4, 'labia', 'pinch'
  651. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm6.jpg"></center>'
  652. '"You little minx do you want me to cum this quickly? No, no, we''re not done yet." He once again calls in the goons and they lay you on the back, spread your legs and tie you so that your pussy is wide open, at the same time they tie your hands above the head.'
  653. '"Good job fellas." the man praises them. "Did you bring what I asked for?"'
  654. 'As he says that you get this bad feeling and your stomach starts churning. <i>"What is he up to now?"</i> you wonder. The goons hand over a brown bag and leave the room.'
  655. 'The man steps close to you and without saying anything he takes out a number of pins and clips them along each side of your vaginal opening, on the outer labia. The pinching hurts but at the same time it''s making you a bit aroused.'
  656. '"Feels great right? I know how to please women." the man confidently says. You answer by a louder moan. That''s enough of an answer for him as he starts tugging at his cock and it doesn''t take long before he cums on the floor. He quickly gets dressed, leaving you laying there still tied up.'
  657. gs 'arousal', 'foreplay', 15, 'prostitution', 'bound', 'sub'
  658. gs 'stat'
  659. act 'Finish':
  660. cla
  661. *clr
  662. basePay = (10 * rand(85,135))
  663. payment = (basePay / 2)
  664. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/givemoney.jpg"></center>'
  665. if workDolg > 0:
  666. workDolg -= payment
  667. 'The client leaves the room and pays the sauna <<payment>> <b>₽</b> for your services.'
  668. 'His goons untie you and have you slowly turn around so the madam can be sure you are unmarked, then leave.'
  669. else
  670. money += payment
  671. 'The client counts the money out as his goons untie you. He hands you <<payment>> <b>₽</b> for your services.'
  672. end
  673. gs 'arousal', 'end'
  674. gs 'stat'
  675. act 'Head back to the main area':gt 'saunawhore', 'saunawork'
  676. end
  677. end
  678. end
  679. end
  680. end
  681. end
  682. end
  683. if $ARGS[0] = 'clientLeave':
  684. basePay = (10 * rand(75,125))
  685. if prezik = 0:
  686. condomPrice = 50
  687. elseif prezik > 0:
  688. dynamic $prezik
  689. condomPrice = 0
  690. end
  691. if forced = 2:
  692. payment = (basePay * useCondom) - condomPrice
  693. else
  694. payment = (basePay / 2) - condomPrice
  695. end
  696. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/givemoney.jpg"></center>'
  697. if workDolg > 0:
  698. workDolg -= payment
  699. 'Having finished with you, the client gets dressed, leaves the room, and pays the sauna <<payment>> <b>₽</b> for your services.'
  700. gs 'arousal', 'end'
  701. gs 'stat'
  702. act 'Head back to the main area':gt 'saunawhore', 'saunawork'
  703. else
  704. money += payment
  705. 'Having finished with you, the client gets dressed, takes his wallet and hands you <<payment>> <b>₽</b>.'
  706. gs 'arousal', 'end'
  707. gs 'stat'
  708. act 'Take the money and see him out':gt 'saunawhore', 'saunawork'
  709. end
  710. end
  711. !! saunawork start ---------------------------------------------------------------------------------
  712. if $ARGS[0] = 'saunawork':
  713. $loc = 'saunawhore'
  714. $metka = 'saunawork'
  715. $locBroom = 'saunawhore'
  716. $metkaBroom = 'saunawork'
  717. $locM = 'saunawhore'
  718. $metkaM = 'saunawork'
  719. $location_type = 'public_indoors'
  720. saunaYouRoom = 1
  721. if paymamka = 0:paymamka = 300
  722. if workDolg > 0:paymamka = 300
  723. if workDolg <= 0:paymamka = 500
  724. gs 'stat'
  725. '<center><b><font color="maroon">Sauna</font></b></center>'
  726. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sauna1.jpg"></center>'
  727. ''
  728. 'The sauna is open between 08:00 and 24:00. Only in that time customers can arrive.'
  729. 'All the walls are covered in <a href="exec:gt ''mirror'', ''start''">mirrors</a>.'
  730. if saunaWorkNow = 1:
  731. saunaWorkNow = 0
  732. money -= paymamka
  733. 'Nurse cames to you and takes from you <<paymamka>> per customer.'
  734. end
  735. if money > 0 and workDolg > 0:workDolg -= money & money = 0
  736. if workDolg > 0:'Your debt is <<workDolg>> <b>₽</b>'
  737. gs 'stat'
  738. if workDolg <= 0:act 'Leave':gt 'sauna'
  739. act 'Go to your room':gt 'sauna', 'saunaroom'
  740. act 'Use the staff bathroom':gt 'saunawhore', 'bathroom'
  741. if workDolg > 0 and pcs_mood <= 10 or workDolg > 0 and SLomka > 0:
  742. cls
  743. workDolg += 1500
  744. gs 'stat'
  745. 'You are beckoned by the nurse. "Hey, come here."'
  746. 'You go up to her and she demands your bared arm. You present your arm as required and she takes out a syringe filled with drugs. "Sit still, I''ll give you a shot now and it will make you feel like normal again."'
  747. act 'Leave':StrongNarkota += 25 & SNarkTimes += 1 & minut += 10 & gt 'saunawhore', 'saunawork'
  748. exit
  749. end
  750. if workDolg <= 0 and pcs_mood <= 50 and SaunaWhore > 0 and money >= 1000:
  751. act 'Ask for some drugs (1000 <b>₽</b>)':
  752. cls
  753. gs 'stat'
  754. 'You are beckoned by the nurse. "OK, come here."'
  755. 'You go up to her and she asks for your bared arm. You present your arm and she takes out a syringe filled with drugs. "Sit still, I''ll give you a shot now and it will make you feel like normal again."'
  756. act 'Leave':
  757. StrongNarkota += 25
  758. SNarkTimes += 1
  759. minut += 10
  760. money -= 1000
  761. gs 'stat'
  762. gt 'saunawhore', 'saunawork'
  763. end
  764. exit
  765. end
  766. end
  767. if cumcondslip > 0 and cumcondslip_aware > 0:
  768. act 'Ask to see a doctor':
  769. cla
  770. *clr
  771. minut += 25
  772. 'You explain how you feel nauseous and have pain in your pubic area.'
  773. 'The nurse checks you over and eventually comes to a conclusion.'
  774. '"I think it might be toxic shock, we''ll have to get you sorted out. Wait here I''ll call the doctor."'
  775. act 'Some time later':
  776. cla
  777. minut += 15
  778. gs 'cum_cleanup', 'cleanloc', 17
  779. cumcondslip = 0
  780. gs 'stat'
  781. 'When he arrives the doctor quickly examines you, and establishes that you are suffering from toxic shock from a spent condom in your body.'
  782. '"I removed it as soon as I found it. If you were feeling sick, it should slowly subside."'
  783. 'You reflexively thank the Doctor even though he''s visiting you in this place.'
  784. act 'Return':gt 'saunawhore', 'saunawork'
  785. end
  786. end
  787. end
  788. if hour >= 8:
  789. act 'Sit on the couch (1:00)':
  790. if pcs_makeup > 1 and pcs_hairbsh = 1 and pcs_sweat < 26 and pcs_leghair <= 3 and pcs_pubes <= 3:
  791. cls
  792. minut += 60
  793. gs 'stat'
  794. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/saunawork.jpg"></center>'
  795. 'You spend an hour sitting on the couch waiting for customers.'
  796. saunaWorkKlient = 0
  797. if hour >= 21:
  798. saunaWorkKlient = 1
  799. elseif hour >= 16:
  800. if rand(0, 100) >= 10:saunaWorkKlient = 1
  801. elseif hour >= 12:
  802. if rand(0, 100) >= 50:saunaWorkKlient = 1
  803. elseif hour >= 8:
  804. if rand(0, 100) >= 80:saunaWorkKlient = 1
  805. end
  806. if saunaWorkKlient = 1:
  807. cls
  808. gs 'stat'
  809. 'A client has arrived at the sauna, and the girls line up so that the customer can choose his favorite.'
  810. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/saunawhore.jpg"></center>'
  811. if rand(0, 120) < pcs_apprnc:
  812. 'Client jabs a finger at you, "This one."'
  813. act 'Go to the sauna with client':
  814. saunaWorkKlient = 1
  815. guy += 1
  816. slutty += 1
  817. SaunaWhore += 1
  818. gt 'saunawhore', 'clientGate'
  819. end
  820. else
  821. 'The client examines you closely but turns away to chose another girl.'
  822. act 'Continue':gt 'saunawhore', 'saunawork'
  823. end
  824. else
  825. 'The client chooses another girl and she leads him to one of the back rooms.'
  826. act 'Continue':gt 'saunawhore', 'saunawork'
  827. end
  828. else
  829. cla
  830. 'The brothel madam comes over to you and says, "Our customers expect you to be clean, shaven, made-up and with your hair looking nice. Go and sort yourself out, now!"'
  831. act 'Leave':gt 'saunawhore', 'saunawork'
  832. end
  833. end
  834. end
  835. if clenerSauna ! daystart:
  836. act 'Clean toilets (1:00)':
  837. cla
  838. *clr
  839. minut += 60
  840. clenerSauna = daystart
  841. pcs_mood -= 25
  842. workDolg -= 100
  843. pcs_sweat += 30
  844. '<center><img <<$set_imgh>> src="images/locations/city/residential/office/clener2.jpg"></center>'
  845. if workDolg > 0:
  846. 'You scrub the sauna toilets for an hour until they shine and reducing your debt by 100 <b>₽</b>.'
  847. workDolg -= 100
  848. else
  849. 'You scrub the sauna toilets for an hour until they shine. You get payed 100 <b>₽</b> for your hard work.'
  850. money += 100
  851. end
  852. act 'Leave':gt 'saunawhore', 'saunawork'
  853. end
  854. end
  855. if clenerSauna2 ! daystart:
  856. act 'Scrub floors (1:00)':
  857. cla
  858. *clr
  859. minut += 60
  860. clenerSauna2 = daystart
  861. pcs_mood -= 25
  862. '<center><img <<$set_imgh>> src="images/locations/city/residential/office/clener1.jpg"></center>'
  863. if workDolg > 0:
  864. 'You spend an hour mopping and scrubbing all the floors and reducing your debt by 100 <b>₽</b>.'
  865. workDolg -= 100
  866. else
  867. 'You spend an hour mopping and scrubbing all the floors. You get payed 100 <b>₽</b> for your hard work.'
  868. money += 100
  869. end
  870. pcs_sweat += 30
  871. act 'Leave':gt 'saunawhore', 'saunawork'
  872. end
  873. end
  874. if npc_QW['A113'] = 1 and workDolg <= 0 and belgangPay <= 0:
  875. cla & *clr
  876. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/strela/vadimbely.jpg"></center>'
  877. 'As you enter the sauna you see a familiar face. It''s Vadim Bely standing there with his brother. "Good news little whore, you''ve finally paid off your debt. You''re free to do whatever you want now."'
  878. 'You look at him with hate-filled eyes, "Do you know what you put me through here? You''re the most despicable man I''ve ever met in my life."'
  879. 'Vadim starts laughing loudly, "Choose you words carefully girl. I''m still in control of your future, maybe you haven''t payed off your debt yet?"'
  880. 'Not wanting to escalate the situation, you look down on the floor, "I''m sorry. I should know my place."'
  881. '"Good girl, now that you''re free wanna go party with us to celebrate your freedom?"'
  882. act 'No, thanks':
  883. cla & *clr
  884. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/strela/vadimbely.jpg"></center>'
  885. '"No, I''m sorry but I just want to go home... Maybe some other time."'
  886. 'Vadim looks at you with a serious look, "You''re lucky I''m in a good mood today. I''ll let it slide this time." he says laughing.'
  887. 'You quickly gather your stuff before he has a change of heart and step outside the sauna.'
  888. npc_QW['A113'] = 2
  889. act 'Leave':gt 'street'
  890. end
  891. end
  892. end
  893. if $ARGS[0] = 'bathroom':
  894. $loc = 'saunawhore'
  895. $metka = 'bathroom'
  896. $locM = 'saunawhore'
  897. $metkaM = 'bathroom'
  898. minut += 2
  899. $location_type = 'bathroom'
  900. *clr & cla
  901. gs 'stat'
  902. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/brothelShower.jpg"></center>'
  903. ''
  904. 'You enter the staff bathroom, which is usually cleaned by the girls that have only just started work here, voluntary or otherwise.'
  905. 'There is a <a href="exec:gt ''mirror'', ''start''">mirror</a>, where you can ' + iif(pcs_hairbsh = 0,'<a href="exec:GT ''mirror'',''brush''">brush</a>','brush') + ' your hair, a shower, toilet, and basin.'
  906. act 'Return to foyer': gt 'saunawhore', 'saunawork'
  907. act 'Take a shower (0:15)':
  908. cls
  909. dynamic $showerdin
  910. '<center><h3>Staf Bathroom</h3></center>'
  911. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/brothelShower.jpg"></center>'
  912. ''
  913. 'After taking off all of your clothes, you gather up your towel, washcloth and soap, then head to the shower. You wash yourself thoroughly to be as clean as possible for potential customers.'
  914. dynamic $brit
  915. act 'Get out and dry off':gt $locM, $metkaM
  916. end
  917. $saunabrit = {
  918. cls
  919. if workDolg > 0:
  920. 'There are a handful of cheap razors you can use. At least they don''t make you pay for them, but only because they don''t know who has used which blades.'
  921. else
  922. 'You rinse the razor blade. It will be good for another <<stanok>> uses.'
  923. end
  924. if pcs_pubes > 3 or pcs_leghair > 3:
  925. act 'Shave legs and pussy (0:20)':
  926. cla
  927. *clr
  928. minut += 20
  929. pcs_leghair = 0
  930. pcs_pubes = 0
  931. pcs_horny += 10
  932. if workDolg = 0:stanok -= 1
  933. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/shave3.jpg"></center>'
  934. 'You lathered up and shaved your legs and pussy. Afterwards, you run your hands over your lower body to make sure its nice and smooth which makes you feel a bit horny.'
  935. act 'Get out and get dressed':gt 'saunawhore', 'saunawork'
  936. end
  937. end
  938. if pcs_leghair > 3:
  939. act 'Shave your legs (0:15)':
  940. cla
  941. *clr
  942. minut += 15
  943. pcs_leghair = 0
  944. if workDolg = 0:stanok -= 1
  945. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/shave.jpg"></center>'
  946. 'You lathered up and shaved your legs.'
  947. act 'Rinse razor':dynamic $saunabrit
  948. end
  949. end
  950. if pcs_pubes > 3:
  951. act 'Shave your pussy (0:15)':
  952. cla
  953. *clr
  954. minut += 15
  955. pcs_pubes = 0
  956. pcs_horny += 10
  957. if workDolg = 0:stanok -= 1
  958. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/shave3.jpg"></center>'
  959. 'You lathered up and shaved your pussy. Afterwards, you run your hands over your lower body to make sure its nice and smooth which makes you feel a bit horny.'
  960. act 'Rinse razor':dynamic $saunabrit
  961. end
  962. end
  963. act 'Get out and get dressed':gt 'saunawhore', 'saunawork'
  964. }
  965. gs 'din_van', 'prvt_pee'
  966. if klismaday < daystart:
  967. act 'Give yourself an enema (0:05)':
  968. cla
  969. *clr
  970. cumspclnt = 7
  971. gs 'cum_cleanup'
  972. minut += 5
  973. klismaday = daystart
  974. klismaday1 = 1
  975. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/klisma.jpg"></center>'
  976. *nl
  977. 'You give yourself an enema, feeling clean down there, hopefully avoiding any awkward surprises for clients.'
  978. act 'Continue':gt $locM, $metkaM
  979. end
  980. end
  981. if workdolg > 0:
  982. if (mesec > 0 or (placebopart > 2 and pillcon < 40000)) and isprok = 0 and isprokp = 0:
  983. act 'Buy and use a tampon (0:05)':
  984. cla
  985. *clr
  986. isprok = 1
  987. minut += 5
  988. pcs_mood -= 5
  989. workDolg += 10
  990. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash3.jpg"></center>'
  991. 'You use a tampon, it will add another 10 <b>₽</b> to your debt, but the alternative is unpleasant.'
  992. act 'Finish':gt $locM, $metkaM
  993. end
  994. end
  995. elseif workdolg = 0:
  996. dynamic $tampon
  997. end
  998. dynamic $quickwash
  999. dynamic $bteeth
  1000. dynamic $basin
  1001. end
  1002. --- saunaWhore ---------------------------------