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. if $clothingworntype = 'nude':
  126. if pcs_inhib < 40:
  127. inhib_exp += rand(2,4)
  128. elseif pcs_inhib >= 40 and pcs_inhib < 60:
  129. inhib_exp += 1
  130. end
  131. moodTypeRand += 1
  132. act 'Get straight to business':gt 'saunawhore', 'strippedGate'
  133. gs 'arousal', 'foreplay', 3, 'prostitution'
  134. gs 'stat'
  135. else
  136. if pcs_dancero >= 10:act 'Do a little striptease':gt 'saunawhore', 'striptease'
  137. act 'Take off your clothes':gt 'saunawhore', 'simplystrip'
  138. end
  139. end
  140. if $ARGS[0] = 'striptease':
  141. if pcs_dancero < 20:pcs_dancero += rand(1,3)
  142. if pcs_inhib < 40:
  143. inhib_exp += rand(2,4)
  144. elseif pcs_inhib >= 40 and pcs_inhib < 60:
  145. inhib_exp += 1
  146. end
  147. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/striptease'+rand(1, 5)+'.mp4"></video></center>'
  148. '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.'
  149. moodTypeRand += 1
  150. gs 'arousal', 'foreplay', 5, 'prostitution'
  151. gs 'stat'
  152. act 'Continue':gt 'saunawhore', 'strippedGate'
  153. end
  154. if $ARGS[0] = 'simplystrip':
  155. if pcs_dancero < 10: pcs_dancero += rand(0,2)
  156. if pcs_inhib < 40:
  157. inhib_exp += rand(1,2)
  158. elseif pcs_inhib >= 40 and pcs_inhib < 60:
  159. inhib_exp += rand(0,1)
  160. end
  161. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/simplystrip'+rand(1, 2)+'.mp4"></video></center>'
  162. '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?'
  163. moodTypeRand -= 1
  164. gs 'arousal', 'foreplay', 2, 'prostitution'
  165. gs 'stat'
  166. act 'Continue':gt 'saunawhore', 'strippedGate'
  167. end
  168. if $ARGS[0] = 'strippedGate':
  169. minut += 2
  170. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/nakedstand.jpg"></center>'
  171. 'You are fully naked in front of the client, his eyes devouring every inch of your young body.'
  172. if pcs_dancero >= 20:act 'Dance naked':gt 'saunawhore', 'nakeddance'
  173. if guy >= 20:act 'Present him your holes':gt 'saunawhore', 'holeshow'
  174. act 'Kneel and open your mouth':gt 'saunawhore', 'blowjob'
  175. end
  176. if $ARGS[0] = 'nakeddance':
  177. if pcs_inhib < 40:
  178. inhib_exp += rand(3,6)
  179. elseif pcs_inhib >= 40 and pcs_inhib < 60:
  180. inhib_exp += rand(1,2)
  181. end
  182. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/nakeddance'+rand(1, 4)+'.mp4"></video></center>'
  183. '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.'
  184. moodTypeRand += 1
  185. gs 'arousal', 'foreplay', 5, 'prostitution'
  186. gs 'stat'
  187. act 'Continue':gt 'saunawhore', 'blowjob'
  188. end
  189. if $ARGS[0] = 'holeshow':
  190. if pcs_inhib < 40:
  191. inhib_exp += rand(3,6)
  192. elseif pcs_inhib >= 40 and pcs_inhib < 60:
  193. inhib_exp += rand(1,2)
  194. end
  195. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/holeshow'+rand(1, 5)+'.mp4"></video></center>'
  196. '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.'
  197. 'Then you turn around, bend over, and grab your ass with both hands.'
  198. 'You pull your ass cheeks apart, giving him a great view of both of your holes.'
  199. moodTypeRand += 1
  200. gs 'arousal', 'foreplay', 5, 'prostitution'
  201. gs 'stat'
  202. act 'Continue':gt 'saunawhore', 'blowjob'
  203. end
  204. if $ARGS[0] = 'blowjob':
  205. minut += 5
  206. 'You kneel in front of him and bite your lip, caressing his cock through his pants with your hands.'
  207. if $moodType = 'fairly normal':
  208. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  209. 'He pulls out his <<$dick_girth>> dick and brings it to your <<$liptalk>>.'
  210. 'You start kissing the tip, licking it all around and putting it a bit inside your mouth and sucking the head.'
  211. gs 'arousal', 'bj', 5, 'prostitution'
  212. gs 'stat'
  213. act 'Suck it':gt 'saunawhore', 'blowjobGate'
  214. elseif $moodType = 'good':
  215. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  216. 'He comes close to you, fondles your hair and face and takes you gently by your arm, raising you up from the floor.'
  217. 'He directs you to the bed, undresses and both of you lie down.'
  218. act 'Embrace him':gt 'saunawhore', 'fuckGate'
  219. elseif $moodType = 'bad':
  220. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/slapface'+rand(1, 1)+'.mp4"></video></center>'
  221. 'He comes close to you and suddenly slaps your face hard.'
  222. 'You are caught by surprise and tears well up in your eyes.'
  223. 'He seems very angry and even aroused by your misfortune.'
  224. '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.'
  225. gs 'pain', 1, 'cheeks', 'slap'
  226. if slutty < 10:
  227. Manna -= 50
  228. else
  229. Manna -= 10
  230. end
  231. gs 'pain', 2, 'armL', 'twist'
  232. gs 'pain', 2, 'armR', 'twist'
  233. act 'Brace yourself':gt 'saunawhore', 'fuckRoughGate'
  234. end
  235. gs 'stat'
  236. end
  237. if $ARGS[0] = 'blowjobGate':
  238. '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.'
  239. gs 'arousal', 'bj', 5, 'prostitution'
  240. 'He is rock hard now and you can see his <<$dick_girth>> <<dick>>cm member in all its glory.'
  241. 'Client seems to be so far content with your performance, but you think it may be time to switch to efficient approach:'
  242. gs 'stat'
  243. if dick > pcs_throat:
  244. 'There''s no way you''ll be able to fit the entire thing in your mouth.'
  245. act 'Try to deepthroat him':gt 'saunawhore', 'blowjobCaress'
  246. else
  247. act 'Deepthroat him':gt 'saunawhore', 'blowjobDeepthroat'
  248. end
  249. end
  250. if $ARGS[0] = 'blowjobCaress':
  251. '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.'
  252. gs 'arousal', 'bj', 5, 'prostitution'
  253. ''
  254. moodChange = rand (-2, 0)
  255. moodTypeRand += moodChange
  256. if $moodType = 'good':
  257. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  258. 'He seems to enjoy your efforts anyway, and signals to you that he''s ready to move on to the next stage.'
  259. act 'Continue':gt 'saunawhore', 'fuckGate'
  260. elseif $moodType = 'fairly normal':
  261. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  262. 'He seem to have enough of this. He takes your hand and directs you towards the bed.'
  263. act 'Continue':gt 'saunawhore', 'fuckGate'
  264. elseif $moodType = 'bad':
  265. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/slapface'+rand(1, 1)+'.mp4"></video></center>'
  266. 'He scowls at your pathetic attempt and pulls his cock out of your mouth.'
  267. question = rand (1, 3)
  268. if question = 1:
  269. '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?"'
  270. elseif question = 2:
  271. 'He slaps your face hard and shouts: "My cock isn''t tasty enough for you to suck on properly, bitch?"'
  272. elseif question = 3:
  273. 'He slaps your face hard and shouts: "Christ, what kind of a good-for-nothing whore are you?"'
  274. end
  275. gs 'pain', 1, 'cheeks', 'slap'
  276. 'Furious, he grabs you roughly by your arms, painfully twisting them behind your back, and slams you down on the bed.'
  277. act 'Continue':gt 'saunawhore', 'fuckRoughGate'
  278. end
  279. gs 'stat'
  280. end
  281. if $ARGS[0] = 'blowjobDeepthroat':
  282. moodChange += rand (-1, 2)
  283. moodTypeRand += moodChange
  284. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/deepthroat'+rand(1, 5)+'.mp4"></video></center>'
  285. '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.'
  286. 'You try to hold it as long as possible, while teasing his balls with your tongue, your nose pressed against his pubic area.'
  287. if $moodType = 'bad':
  288. 'He gets a sadistic look in his eye, and then grabs the back of your head and holds you down, not letting you escape.'
  289. '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.'
  290. end
  291. gs 'arousal', 'bj', 5, 'prostitution', 'deepthroat'
  292. 'Finally he seems to have had enough of oral sex and signals you that he wants some more.'
  293. gs 'stat'
  294. act 'Continue':gt 'saunawhore', 'fuckGate'
  295. end
  296. if $ARGS[0] = 'fuckGate':
  297. minut += 2
  298. noCondChance = rand(1, 100)
  299. if noCondChance < 40:
  300. 'He leers at you lustfully and asks, "So baby, how much for not using a condom?"'
  301. 'When you hesitate, he adds, "C''mon, I''ll pay you double."'
  302. act 'Let him fuck you without a condom':gt 'saunawhore', 'fuckGateCondomNo'
  303. act 'Insist on using a condom':gt 'saunawhore', 'fuckGateCondomYes'
  304. else
  305. gs 'saunawhore', 'fuckGateCondomYes'
  306. end
  307. gs 'stat'
  308. end
  309. if $ARGS[0] = 'fuckGateCondomYes':
  310. useCondom = 1
  311. moodTypeRand -= 2
  312. gs 'saunawhore', 'fuckGateGo'
  313. end
  314. if $ARGS[0] = 'fuckGateCondomNo':
  315. useCondom = 2
  316. moodTypeRand += 1
  317. gs 'saunawhore', 'fuckGateGo'
  318. end
  319. if $ARGS[0] = 'fuckGateGo':
  320. minut += 2
  321. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/lieonbedboth.jpg"></center>'
  322. 'You lie back on the bed in front of the client.'
  323. '"How do you want me?" you ask him.'
  324. if $moodType = 'bad':
  325. '"How do I want you whore? I want you screaming!"'
  326. forced = 1
  327. act 'Continue':gt 'saunawhore', 'fuckRoughGate'
  328. else
  329. forced = 2
  330. holeType = rand(1, 2)
  331. if holeType = 1:
  332. '"I want some pussy."'
  333. act 'Spread your legs':gt 'saunawhore', 'fuckVaginal'
  334. elseif holeType = 2:
  335. '"I want to fuck your ass."'
  336. act 'Turn around and spread your ass':gt 'saunawhore', 'fuckAnal'
  337. end
  338. end
  339. gs 'stat'
  340. end
  341. if $ARGS[0] = 'fuckVaginal':
  342. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckvaginal'+rand(1, 5)+'.mp4"></video></center>'
  343. 'He climbs on top of you and pushes his member inside of you.'
  344. if dick > pcs_vag:
  345. '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.'
  346. '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.'
  347. DMG = (dick - pcs_vag) / 2
  348. gs 'pain', 1, 'vaginal', 'stretch'
  349. pcs_mood -= (DMG * 5)
  350. gs 'arousal', 'vaginal', 10, 'prostitution', 'rough'
  351. else
  352. 'He thrusts his <<$dick_girth>> <<dick>>cm cock in you over and over, not caring much about technique or your own pleasure.'
  353. gs 'arousal', 'vaginal', 10, 'prostitution'
  354. end
  355. ''
  356. 'After a while, you can sense that he is almost ready to come.'
  357. gs 'stat'
  358. if useCondom = 2:
  359. act 'Ask him not to cum inside of you':
  360. not_inside = 1
  361. gt 'saunawhore', 'cumClientGate'
  362. end
  363. end
  364. act 'Let him cum wherever he wants':
  365. not_inside = 2
  366. gt 'saunawhore', 'cumClientGate'
  367. end
  368. end
  369. if $ARGS[0] = 'fuckAnal':
  370. stat['anal'] += 1
  371. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckanal'+rand(1, 5)+'.mp4"></video></center>'
  372. '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.'
  373. if dick > pcs_anus:
  374. '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.'
  375. '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.'
  376. DMG = (dick - pcs_anus) / 2
  377. gs 'pain', 1, 'asshole', 'stretch'
  378. pcs_mood -= (DMG * 5)
  379. gs 'arousal', 'anal', 10, 'prostitution', 'rough'
  380. else
  381. '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.'
  382. gs 'arousal', 'anal', 10, 'prostitution'
  383. end
  384. ''
  385. 'After a while, you can sense that he is almost ready to come.'
  386. gs 'stat'
  387. act 'Let him cum wherever he wants':
  388. not_inside = 2
  389. gt 'saunawhore', 'cumClientGate'
  390. end
  391. end
  392. if $ARGS[0] = 'fuckRoughGate':
  393. minut += 5
  394. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bedoverpowered.jpg"></center>'
  395. 'The man is much stronger than you, and you are completely overpowered, entirely at his will.'
  396. 'He keeps your arms pinned painfully behind your back.'
  397. pcs_mood -= 50
  398. useCondom = rand(1,2)
  399. forced = 1
  400. gs 'pain', 2, 'armL', 'twist'
  401. gs 'pain', 2, 'armR', 'twist'
  402. holeType = rand(1, 2)
  403. if holeType = 1 and useCondom = 1:
  404. 'You feel the tip of his cock against your pussy... at least it feels like he''s using a condom.'
  405. act 'Continue':gt 'saunawhore', 'fuckRoughVaginal'
  406. elseif holeType = 1 and useCondom = 2:
  407. 'You feel the tip of his cock against your pussy... and it feels like he''s not wearing a condom!'
  408. act 'Continue':gt 'saunawhore', 'fuckRoughVaginal'
  409. elseif holeType = 2:
  410. 'You feel the tip of his cock pressing against your asshole... this is probably not going to be pleasant.'
  411. act 'Continue':gt 'saunawhore', 'fuckRoughAnal'
  412. end
  413. gs 'stat'
  414. end
  415. if $ARGS[0] = 'fuckRoughVaginal':
  416. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckroughvaginal'+rand(1, 5)+'.mp4"></video></center>'
  417. 'He forces his dick inside of you, and begins to fuck your tender pussy furiously.'
  418. 'You cannot help but scream in pain, which seems to arouse him even more and makes him push even harder and deeper.'
  419. if dick > pcs_vag:
  420. 'His <<$dick_girth>> <<dick>>cm is too big for your pussy and causes you intense pain, stretching you horribly and slamming against your cervix.'
  421. DMG = (dick - pcs_vag)
  422. gs 'pain', 2, 'vaginal', 'stretch'
  423. !gs 'pain', 2, 'cervix', 'pinch'
  424. pcs_mood -= (DMG * 5)
  425. end
  426. gs 'arousal', 'vaginal', 10, 'prostitution', 'rough', 'bound'
  427. ''
  428. 'After seemingly endless fucking, you can finally sense that he is almost ready to come.'
  429. gs 'stat'
  430. if useCondom = 2:
  431. act 'Beg him not to cum inside of you':
  432. not_inside = 1
  433. gt 'saunawhore', 'cumClientGate'
  434. end
  435. end
  436. act 'Let him cum wherever he wants':
  437. not_inside = 2
  438. gt 'saunawhore', 'cumClientGate'
  439. end
  440. end
  441. if $ARGS[0] = 'fuckRoughAnal':
  442. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckroughanal'+rand(1, 5)+'.mp4"></video></center>'
  443. 'He roughly shoves his entire cock up your ass, and begins to fuck it furiously.'
  444. 'You cannot help but scream in agony, which arouses him even more and makes him push even harder and deeper.'
  445. if dick > pcs_anus:
  446. '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.'
  447. DMG = (dick - pcs_anus)
  448. gs 'pain', 2, 'asshole', 'stretch'
  449. pcs_mood -= (DMG * 5)
  450. end
  451. not_inside = 2
  452. gs 'arousal', 'anal', 10, 'prostitution', 'rough', 'bound'
  453. ''
  454. 'After seemingly endless assfucking, you can finally sense that he is almost ready to come.'
  455. gs 'stat'
  456. act 'Let him cum wherever he wants':gt 'saunawhore', 'cumClientGate'
  457. end
  458. if $ARGS[0] = 'cumClientGate':
  459. if $moodType = 'bad':
  460. if not_inside = 2:
  461. cumRand = rand(1, 10)
  462. if cumRand <= 9 and holeType = 1:
  463. 'You feel his cock twitch and realize he is about to cum inside of you.'
  464. act 'Continue':gt 'saunawhore', 'cumVaginal'
  465. elseif cumRand <= 9 and holeType = 2:
  466. 'You feel his cock twitch and realize he is about to cum in your ass.'
  467. act 'Continue':gt 'saunawhore', 'cumAnal'
  468. else
  469. 'He pulls out and brings his cock up in front of your face.'
  470. act 'Continue':gt 'saunawhore', 'cumFace'
  471. end
  472. else
  473. cumRand = rand(1, 2)
  474. if cumRand = 1 and holeType = 1:
  475. 'He just laughs and you realize he is going to cum inside of you anyway.'
  476. act 'Continue':gt 'saunawhore', 'cumVaginal'
  477. elseif cumRand = 2:
  478. 'He smirks and says "Fine, how about in your eyes then, whore?"'
  479. gs 'pain', 1, 'eyes', 'burn'
  480. act 'Continue':gt 'saunawhore', 'cumFace'
  481. end
  482. end
  483. else
  484. if not_inside = 2:
  485. cumRand = rand(1, 5)
  486. if cumRand = 1 and holeType = 1:
  487. 'You feel his cock twitch and realize he is about to cum inside of you.'
  488. act 'Continue':gt 'saunawhore', 'cumVaginal'
  489. elseif cumRand = 1 and holeType = 2:
  490. 'You feel his cock twitch and realize he is about to cum in your ass.'
  491. act 'Continue':gt 'saunawhore', 'cumAnal'
  492. elseif cumRand = 2:
  493. 'He pulls out and brings his cock up in front of your face.'
  494. act 'Continue':gt 'saunawhore', 'cumFace'
  495. elseif cumRand = 3:
  496. 'He pulls out and brings his cock up in front of your face.'
  497. act 'Continue':gt 'saunawhore', 'cumMouth'
  498. elseif cumRand = 4:
  499. 'He pulls out and holds his cock over your body.'
  500. act 'Continue':gt 'saunawhore', 'cumBelly'
  501. elseif cumRand = 5:
  502. 'He pulls out and holds his cock over your body.'
  503. act 'Continue':gt 'saunawhore', 'cumTits'
  504. end
  505. else
  506. cumRand = rand(1, 9)
  507. if cumRand <= 2:
  508. 'He nods, pulls out, and brings his cock up in front of your face.'
  509. act 'Continue':gt 'saunawhore', 'cumFace'
  510. elseif cumRand <= 4:
  511. 'He nods, pulls out, and brings his cock up in front of your face.'
  512. act 'Continue':gt 'saunawhore', 'cumMouth'
  513. elseif cumRand <= 6:
  514. 'He nods, pulls out, and holds his cock over your body.'
  515. act 'Continue':gt 'saunawhore', 'cumBelly'
  516. elseif cumRand <= 8:
  517. 'He nods, pulls out, and holds his cock over your body.'
  518. act 'Continue':gt 'saunawhore', 'cumTits'
  519. else
  520. 'He shakes his head and says "Sorry, I can''t stop now!" and you realize he''s going to cum in you anyway!'
  521. act 'Continue':gt 'saunawhore', 'cumVaginal'
  522. end
  523. end
  524. end
  525. end
  526. if $ARGS[0] = 'cumVaginal':
  527. minut += 5
  528. if useCondom = 1:
  529. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomVaginal.jpg"></center>'
  530. 'The client''s cock twitches several more times as he cums into the condom inside of you.'
  531. 'He strips the condom from his dick, and you see that it has <<$cumType>> cum in it.'
  532. moodTypeRand += rand (-2, 2)
  533. if $moodType = 'bad':
  534. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomPourFace.jpg"></center>'
  535. 'Suddenly he grabs your head and pours the contents all over your face.'
  536. gs 'cum_call', '', 'sauna client', 0, 3, 0, cumVolMl
  537. gs 'cum_call', 'face', 'sauna client', 0, 0, 0, cumVolMl
  538. elseif $moodType = 'fairly normal':
  539. 'He throws it away on the floor, not caring about spilling the fluids around.'
  540. gs 'cum_call', '', 'sauna client', 0, 3, 0, cumVolMl
  541. elseif $moodType = 'good':
  542. 'He throws it in the waste bin and gently caresses your hair afterwards.'
  543. gs 'cum_call', '', 'sauna client', 0, 3, 0, cumVolMl
  544. end
  545. else
  546. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumVaginal'+rand(1, 5)+'.mp4"></video></center>'
  547. '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.'
  548. gs 'cum_call', '', 'sauna client', 0, 0, 0, cumVolMl
  549. if rand(1,100) >= 70:dynamic $venerasiak
  550. end
  551. gs 'stat'
  552. act 'Continue':gt 'saunawhore', 'clientLeave'
  553. end
  554. if $ARGS[0] = 'cumAnal':
  555. if useCondom = 1:
  556. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomAnal.jpg"></center>'
  557. 'The client''s cock twitches several more times as he cums into the condom inside of your ass.'
  558. 'He strips the condom from his dick, and you see that it has <<$cumType>> cum in it.'
  559. moodTypeRand += rand (-2, 2)
  560. if $moodType = 'bad':
  561. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomPourFace.jpg"></center>'
  562. 'Suddenly he grabs your head and pours the contents all over your face.'
  563. gs 'cum_call', 'anus', 'sauna client', 0, 3, 0, cumVolMl
  564. gs 'cum_call', 'face', 'sauna client', 0, 0, 0, cumVolMl
  565. elseif $moodType = 'fairly normal':
  566. 'He throws it away on the floor, not caring about spilling the fluids around.'
  567. gs 'cum_call', 'anus', 'sauna client', 0, 3, 0, cumVolMl
  568. elseif $moodType = 'good':
  569. 'He throws it in the waste bin and gently caresses your hair afterwards.'
  570. gs 'cum_call', 'anus', 'sauna client', 0, 3, 0, cumVolMl
  571. end
  572. else
  573. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumAnal'+rand(1, 5)+'.mp4"></video></center>'
  574. '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.'
  575. if rand(1,100) >= 70:dynamic $venerasiak
  576. gs 'cum_call', 'anus', 'sauna client', 0, 0, 0, cumVolMl
  577. end
  578. gs 'stat'
  579. act 'Continue':gt 'saunawhore', 'clientLeave'
  580. end
  581. if $ARGS[0] = 'cumFace':
  582. facial += 1
  583. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumFace'+rand(1, 5)+'.mp4"></video></center>'
  584. if useCondom = 1:
  585. 'The client strips the condom from his dick and blows <<$cumType>> cum all over your face.'
  586. else
  587. 'The client finishes himself off and blows <<$cumType>> cum all over your face.'
  588. end
  589. gs 'cum_call', 'face', 0, 0, 0, cumVolMl
  590. gs 'stat'
  591. act 'Continue':gt 'saunawhore', 'clientLeave'
  592. end
  593. if $ARGS[0] = 'cumMouth':
  594. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumMouth'+rand(1, 5)+'.mp4"></video></center>'
  595. if useCondom = 1:
  596. 'The client strips the condom from his dick and shoots <<$cumType>> cum inside your mouth.'
  597. else
  598. 'The client stuffs his dick back inside your mouth, and as you suck it, he shoots <<$cumType>> cum inside your mouth.'
  599. end
  600. if rand(1,100) >= 70:dynamic $venerasiakOral
  601. gs 'cum_call', 'mouth', 0, 0, 0, cumVolMl
  602. gs 'stat'
  603. act 'Continue':gt 'saunawhore', 'clientLeave'
  604. end
  605. if $ARGS[0] = 'cumBelly':
  606. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumBelly'+rand(1, 5)+'.mp4"></video></center>'
  607. if useCondom = 1:
  608. 'The client strips the condom from his dick and shoots <<$cumType>> cum all over your belly.'
  609. else
  610. 'The client finishes himself off and shoots <<$cumType>> cum all over your belly.'
  611. end
  612. gs 'cum_call', 'stomach', 0, 0, 0, cumVolMl
  613. gs 'stat'
  614. act 'Continue':gt 'saunawhore', 'clientLeave'
  615. end
  616. if $ARGS[0] = 'cumTits':
  617. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumTits'+rand(1, 5)+'.mp4"></video></center>'
  618. 'You kneel down infront of him, raising your breasts higher for him to shoot his cum on them.'
  619. if useCondom = 1:
  620. 'The client strips the condom from his dick and shoots <<$cumType>> cum all over your tits.'
  621. else
  622. 'The client finishes himself off and shoots <<$cumType>> cum all over your tits.'
  623. end
  624. gs 'cum_call', 'breasts', 0, 0, 0, cumVolMl
  625. gs 'stat'
  626. act 'Continue':gt 'saunawhore', 'clientLeave'
  627. end
  628. if $ARGS[0] = 'bdsmclient':
  629. cla
  630. *clr
  631. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm1.jpg"></center>'
  632. '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.'
  633. '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.'
  634. '"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.'
  635. '"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.'
  636. act 'Sit and wait':
  637. cla
  638. *clr
  639. gs 'pain', 2, 'handL', 'bind'
  640. gs 'pain', 2, 'handR', 'bind'
  641. minut += 15
  642. gs 'stat'
  643. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm2.jpg"></center>'
  644. '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.'
  645. '"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.'
  646. '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.'
  647. act 'Squirm':
  648. cla
  649. *clr
  650. minut += 4
  651. gs 'stat'
  652. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm3.jpg"></center>'
  653. 'Not wanting to upset the patron you begin acting as you''re fighting to get loose, grunting and moaning.'
  654. '"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.'
  655. '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.'
  656. act 'Stand up':
  657. cla
  658. *clr
  659. minut += 10
  660. gs 'stat'
  661. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm4.jpg"></center>'
  662. 'The goons quickly enter the room, grab hold of you and stand you up. "How do you want her?" they ask.'
  663. '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.'
  664. '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.'
  665. '"You have a great body girl, has anyone told you that?" he asks as you try to move your body to a comfortable position.'
  666. '"That''s right, squirm you little whore. I know you''re uncomfortable. How does it feel having someone else in control of your fate?"'
  667. 'By now you''re getting worried about what the man is really up to.'
  668. act 'On all fours':
  669. cla
  670. *clr
  671. gs 'pain', 2, 'legs', 'bind'
  672. minut += 10
  673. gs 'stat'
  674. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm5.jpg"></center>'
  675. '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."'
  676. '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."'
  677. '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."'
  678. '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.'
  679. act 'On your back':
  680. cla
  681. *clr
  682. gs 'pain', 4, 'labia', 'pinch'
  683. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm6.jpg"></center>'
  684. '"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.'
  685. '"Good job fellas." the man praises them. "Did you bring what I asked for?"'
  686. '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.'
  687. '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.'
  688. '"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.'
  689. gs 'arousal', 'foreplay', 15, 'prostitution', 'bound', 'sub'
  690. gs 'stat'
  691. act 'Finish':
  692. cla
  693. *clr
  694. basePay = (10 * rand(85,135))
  695. payment = (basePay / 2)
  696. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/givemoney.jpg"></center>'
  697. if workDolg > 0:
  698. workDolg -= payment
  699. 'The client leaves the room and pays the sauna <<payment>> <b>₽</b> for your services.'
  700. 'His goons untie you and have you slowly turn around so the madam can be sure you are unmarked, then leave.'
  701. else
  702. money += payment
  703. 'The client counts the money out as his goons untie you. He hands you <<payment>> <b>₽</b> for your services.'
  704. end
  705. gs 'arousal', 'end'
  706. gs 'stat'
  707. act 'Head back to the main area':gt 'saunawhore', 'saunawork'
  708. end
  709. end
  710. end
  711. end
  712. end
  713. end
  714. end
  715. if $ARGS[0] = 'clientLeave':
  716. basePay = (10 * rand(75,125))
  717. if prezik = 0:
  718. condomPrice = 100
  719. elseif prezik > 0:
  720. dynamic $prezik
  721. condomPrice = 0
  722. end
  723. if forced = 2:
  724. payment = (basePay * useCondom) - condomPrice
  725. else
  726. payment = (basePay / 2) - condomPrice
  727. end
  728. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/givemoney.jpg"></center>'
  729. if workDolg > 0:
  730. workDolg -= payment
  731. 'Having finished with you, the client gets dressed, leaves the room, and pays the sauna <<payment>> <b>₽</b> for your services.'
  732. gs 'arousal', 'end'
  733. gs 'stat'
  734. act 'Head back to the main area':gt 'saunawhore', 'saunawork'
  735. else
  736. money += payment
  737. 'Having finished with you, the client gets dressed, takes his wallet and hands you <<payment>> <b>₽</b>.'
  738. gs 'arousal', 'end'
  739. gs 'stat'
  740. act 'Take the money and see him out':gt 'saunawhore', 'saunawork'
  741. end
  742. end
  743. !! saunawork start ---------------------------------------------------------------------------------
  744. if $ARGS[0] = 'saunawork':
  745. $loc = 'saunawhore'
  746. $metka = 'saunawork'
  747. $locBroom = 'saunawhore'
  748. $metkaBroom = 'saunawork'
  749. $locM = 'saunawhore'
  750. $metkaM = 'saunawork'
  751. $location_type = 'public_indoors'
  752. saunaYouRoom = 1
  753. if paymamka = 0:paymamka = 300
  754. if workDolg > 0:paymamka = 300
  755. if workDolg <= 0:paymamka = 500
  756. gs 'stat'
  757. '<center><b><font color="maroon">Sauna</font></b></center>'
  758. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sauna1.jpg"></center>'
  759. ''
  760. 'The sauna is open between 08:00 and 24:00. Only in that time customers can arrive.'
  761. 'All the walls are covered in <a href="exec:gt ''mirror'', ''start''">mirrors</a>.'
  762. if saunaWorkNow = 1:
  763. saunaWorkNow = 0
  764. money -= paymamka
  765. 'Nurse cames to you and takes from you <<paymamka>> per customer.'
  766. end
  767. if money > 0 and workDolg > 0:workDolg -= money & money = 0
  768. if workDolg > 0:'Your debt is <<workDolg>> <b>₽</b>'
  769. gs 'stat'
  770. if workDolg <= 0:act 'Leave':gt 'sauna'
  771. act 'Go to your room':gt 'sauna', 'saunaroom'
  772. act 'Use the staff bathroom': minut += 1 & gt 'saunawhore', 'bathroom'
  773. if workDolg > 0 and pcs_mood <= 10 or workDolg > 0 and SLomka > 0:
  774. cls
  775. workDolg += 1500
  776. gs 'stat'
  777. 'You are beckoned by the nurse. "Hey, come here."'
  778. '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."'
  779. act 'Leave':StrongNarkota += 25 & SNarkTimes += 1 & minut += 10 & gt 'saunawhore', 'saunawork'
  780. exit
  781. end
  782. if workDolg <= 0 and pcs_mood <= 50 and SaunaWhore > 0 and money >= 1000:
  783. act 'Ask for some drugs (1000 <b>₽</b>)':
  784. cls
  785. gs 'stat'
  786. 'You are beckoned by the nurse. "OK, come here."'
  787. '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."'
  788. act 'Leave':
  789. StrongNarkota += 25
  790. SNarkTimes += 1
  791. minut += 10
  792. money -= 1000
  793. gs 'stat'
  794. gt 'saunawhore', 'saunawork'
  795. end
  796. exit
  797. end
  798. end
  799. if cumcondslip > 0 and cumcondslip_aware > 0:
  800. act 'Ask to see a doctor':
  801. cla
  802. *clr
  803. minut += 25
  804. 'You explain how you feel nauseous and have pain in your pubic area.'
  805. 'The nurse checks you over and eventually comes to a conclusion.'
  806. '"I think it might be toxic shock, we''ll have to get you sorted out. Wait here I''ll call the doctor."'
  807. act 'Some time later':
  808. cla
  809. minut += 15
  810. gs 'cum_cleanup', 'cleanloc', 17
  811. cumcondslip = 0
  812. gs 'stat'
  813. 'When he arrives the doctor quickly examines you, and establishes that you are suffering from toxic shock from a spent condom in your body.'
  814. '"I removed it as soon as I found it. If you were feeling sick, it should slowly subside."'
  815. 'You reflexively thank the Doctor even though he''s visiting you in this place.'
  816. act 'Return':gt 'saunawhore', 'saunawork'
  817. end
  818. end
  819. end
  820. if hour >= 8:
  821. act 'Sit on the couch (1:00)':
  822. if pcs_makeup > 1 and pcs_hairbsh = 1 and pcs_sweat < 26 and pcs_leghair <= 3 and pcs_pubes <= 3:
  823. cls
  824. minut += 60
  825. gs 'stat'
  826. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/saunawork.jpg"></center>'
  827. 'You spend an hour sitting on the couch waiting for customers.'
  828. saunaWorkKlient = 0
  829. if hour >= 21:
  830. if rand(0, 100) >= 10:saunaWorkKlient = 1
  831. elseif hour >= 16:
  832. if rand(0, 100) >= 20:saunaWorkKlient = 1
  833. elseif hour >= 12:
  834. if rand(0, 100) >= 40:saunaWorkKlient = 1
  835. elseif hour >= 8:
  836. if rand(0, 100) >= 80:saunaWorkKlient = 1
  837. else
  838. if rand(0, 100) >= 40:saunaWorkKlient = 1
  839. end
  840. if saunaWorkKlient = 1:
  841. cls
  842. gs 'stat'
  843. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/saunawhore.jpg"></center>'
  844. 'A client has arrived at the sauna, and the girls line up so that the customer can choose his favorite.'
  845. if rand(0, 120) < pcs_apprnc:
  846. 'Client jabs a finger at you, "This one."'
  847. act 'Go to the sauna with client':
  848. saunaWorkKlient = 1
  849. guy += 1
  850. slutty += 1
  851. SaunaWhore += 1
  852. gt 'saunawhore', 'clientGate'
  853. end
  854. else
  855. 'The client examines you closely but turns away to chose another girl.'
  856. act 'Continue':gt 'saunawhore', 'saunawork'
  857. end
  858. else
  859. 'The client chooses another girl and she leads him to one of the back rooms.'
  860. act 'Continue':gt 'saunawhore', 'saunawork'
  861. end
  862. else
  863. cla
  864. '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!"'
  865. act 'Leave':gt 'saunawhore', 'saunawork'
  866. end
  867. end
  868. end
  869. if clenerSauna ! daystart:
  870. act 'Clean toilets (1:00)':
  871. cla
  872. *clr
  873. minut += 60
  874. clenerSauna = daystart
  875. pcs_mood -= 25
  876. pcs_sweat += 30
  877. '<center><img <<$set_imgh>> src="images/locations/city/residential/office/clener2.jpg"></center>'
  878. if workDolg > 0:
  879. 'You scrub the sauna toilets for an hour until they shine and reducing your debt by 100 <b>₽</b>.'
  880. workDolg -= 100
  881. else
  882. 'You scrub the sauna toilets for an hour until they shine. You get payed 100 <b>₽</b> for your hard work.'
  883. money += 100
  884. end
  885. act 'Leave':gt 'saunawhore', 'saunawork'
  886. end
  887. end
  888. if clenerSauna2 ! daystart:
  889. act 'Scrub floors (1:00)':
  890. cla
  891. *clr
  892. minut += 60
  893. clenerSauna2 = daystart
  894. pcs_mood -= 25
  895. '<center><img <<$set_imgh>> src="images/locations/city/residential/office/clener1.jpg"></center>'
  896. if workDolg > 0:
  897. 'You spend an hour mopping and scrubbing all the floors and reducing your debt by 100 <b>₽</b>.'
  898. workDolg -= 100
  899. else
  900. 'You spend an hour mopping and scrubbing all the floors. You get payed 100 <b>₽</b> for your hard work.'
  901. money += 100
  902. end
  903. pcs_sweat += 30
  904. act 'Leave':gt 'saunawhore', 'saunawork'
  905. end
  906. end
  907. if npc_QW['A113'] = 1 and workDolg <= 0 and belgangPay <= 0:
  908. cla & *clr
  909. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/strela/vadimbely.jpg"></center>'
  910. '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."'
  911. '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."'
  912. '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?"'
  913. 'Not wanting to escalate the situation, you look down on the floor, "I''m sorry. I should know my place."'
  914. '"Good girl, now that you''re free wanna go party with us to celebrate your freedom?"'
  915. act 'No, thanks':
  916. cla & *clr
  917. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev/strela/vadimbely.jpg"></center>'
  918. '"No, I''m sorry but I just want to go home... Maybe some other time."'
  919. '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.'
  920. 'You quickly gather your stuff before he has a change of heart and step outside the sauna.'
  921. npc_QW['A113'] = 2
  922. act 'Leave':gt 'street'
  923. end
  924. end
  925. end
  926. if $ARGS[0] = 'bathroom':
  927. $loc = 'saunawhore'
  928. $metka = 'bathroom'
  929. $locM = 'saunawhore'
  930. $metkaM = 'bathroom'
  931. $location_type = 'bathroom'
  932. *clr & cla
  933. gs 'stat'
  934. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/brothelShower.jpg"></center>'
  935. ''
  936. 'You enter the staff bathroom, which is usually cleaned by the girls that have only just started work here, voluntary or otherwise.'
  937. '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.'
  938. act 'Return to foyer': minut += 1 & gt 'saunawhore', 'saunawork'
  939. act 'Take a shower (0:15)':
  940. cls
  941. minut += 15
  942. gs 'stat'
  943. dynamic $showerdin
  944. '<center><h3>Staf Bathroom</h3></center>'
  945. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/brothelShower.jpg"></center>'
  946. ''
  947. '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.'
  948. act 'Get out and dry off':gt $locM, $metkaM
  949. if workDolg > 0:
  950. gs 'saunawhore', 'saunabrit'
  951. else
  952. dynamic $brit
  953. end
  954. end
  955. if workDolg > 0:
  956. gs 'saunawhore', 'saunabrit'
  957. elseif workDolg = 0 and stanok > 0:
  958. dynamic $brit
  959. elseif workDolg = 0 and stanok = 0:
  960. 'Your razor blade looks in good enough shape for <b><<stanok>></b> more shaves.'
  961. end
  962. gs 'din_van', 'prvt_pee'
  963. if klismaday < daystart:
  964. act 'Give yourself an enema (0:05)':
  965. cla
  966. *clr
  967. cumspclnt = 7
  968. gs 'cum_cleanup'
  969. minut += 5
  970. klismaday = daystart
  971. klismaday1 = 1
  972. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/klisma.jpg"></center>'
  973. *nl
  974. 'You give yourself an enema, feeling clean down there, hopefully avoiding any awkward surprises for clients.'
  975. act 'Continue':gt $locM, $metkaM
  976. end
  977. end
  978. if workdolg > 0:
  979. if (mesec > 0 or (placebopart > 2 and pillcon < 40000)) and isprok = 0 and isprokp = 0:
  980. act 'Buy and use a tampon (0:05)':
  981. cla
  982. *clr
  983. isprok = 1
  984. minut += 5
  985. pcs_mood -= 5
  986. workDolg += 10
  987. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash3.jpg"></center>'
  988. 'You use a tampon, it will add another 10 <b>₽</b> to your debt, but the alternative is unpleasant.'
  989. act 'Finish':gt $locM, $metkaM
  990. end
  991. end
  992. elseif workdolg = 0:
  993. dynamic $tampon
  994. end
  995. dynamic $quickwash
  996. dynamic $bteeth
  997. dynamic $basin
  998. if breastpump > 0:
  999. act 'Use breast pump':gt 'lact_lib', 'bp_milking'
  1000. end
  1001. end
  1002. if $ARGS[0] = 'saunabrit':
  1003. '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.'
  1004. dynamic $brit
  1005. act 'Get out and dry off':gt $locM, $metkaM
  1006. end
  1007. --- saunaWhore ---------------------------------