saunawhore 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774
  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. durr = 5
  118. minut += durr
  119. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/room.jpg"></center>'
  120. 'You lead the client into your room, closing the door behind him.'
  121. 'He sits down in the chair and stares at you with obvious lust.'
  122. 'He is <<$ageType>> <<$raceType>> man, and he is <<$heightType>> and <<$bodyType>>.'
  123. if dick >= 16:'From the bulge in his pants, you can tell he probably has <<$dick_girth>> dick.'
  124. 'He seems to be in a <<$moodType>> mood.'
  125. gs 'stat'
  126. act 'Take off your clothes':gt 'saunawhore', 'simplystrip'
  127. if pcs_dancero >= 10:act 'Do a little striptease':gt 'saunawhore', 'striptease'
  128. end
  129. if $ARGS[0] = 'striptease':
  130. if pcs_dancero < 20:pcs_dancero += rand(1,3)
  131. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/striptease'+rand(1, 5)+'.mp4"></video></center>'
  132. '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.'
  133. moodTypeRand += 1
  134. gs 'arousal', 'foreplay', 5, 'prostitution'
  135. gs 'stat'
  136. act 'Continue':gt 'saunawhore', 'strippedGate'
  137. end
  138. if $ARGS[0] = 'simplystrip':
  139. if pcs_dancero < 10: pcs_dancero += rand(0,2)
  140. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/simplystrip'+rand(1, 2)+'.mp4"></video></center>'
  141. '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?'
  142. moodTypeRand -= 1
  143. gs 'arousal', 'foreplay', 2, 'prostitution'
  144. gs 'stat'
  145. act 'Continue':gt 'saunawhore', 'strippedGate'
  146. end
  147. if $ARGS[0] = 'strippedGate':
  148. minut += 2
  149. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/nakedstand.jpg"></center>'
  150. 'You are now fully naked in front of the client, his eyes devouring every inch of your young body.'
  151. if pcs_dancero >= 20:act 'Dance naked':gt 'saunawhore', 'nakeddance'
  152. act 'Kneel and open your mouth':gt 'saunawhore', 'blowjob'
  153. if guy >= 20:act 'Present him your holes':gt 'saunawhore', 'holeshow'
  154. end
  155. if $ARGS[0] = 'nakeddance':
  156. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/nakeddance'+rand(1, 4)+'.mp4"></video></center>'
  157. '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.'
  158. moodTypeRand += 1
  159. gs 'arousal', 'foreplay', 5, 'prostitution'
  160. gs 'stat'
  161. act 'Continue':gt 'saunawhore', 'blowjob'
  162. end
  163. if $ARGS[0] = 'holeshow':
  164. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/holeshow'+rand(1, 5)+'.mp4"></video></center>'
  165. '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.'
  166. 'Then you turn around, bend over, and grab your ass with both hands.'
  167. 'You pull your ass cheeks apart, giving him a great view of both of your holes.'
  168. moodTypeRand += 1
  169. gs 'arousal', 'foreplay', 5, 'prostitution'
  170. gs 'stat'
  171. act 'Continue':gt 'saunawhore', 'blowjob'
  172. end
  173. if $ARGS[0] = 'blowjob':
  174. minut += 5
  175. 'You kneel in front of him and bite your lip, caressing his cock through his pants with your hands.'
  176. if $moodType = 'fairly normal':
  177. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  178. 'He pulls out his <<$dick_girth>> dick and brings it to your <<$liptalk>>.'
  179. 'You start kissing the tip, licking it all around and putting it a bit inside your mouth and sucking the head.'
  180. gs 'arousal', 'bj', 5, 'prostitution'
  181. gs 'stat'
  182. act 'Suck it':gt 'saunawhore', 'blowjobGate'
  183. elseif $moodType = 'good':
  184. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  185. 'He comes close to you, fondles your hair and face and takes you gently by your arm, raising you up from the floor.'
  186. 'He directs you to the bed, undresses and both of you lie down.'
  187. act 'Embrace him':gt 'saunawhore', 'fuckGate'
  188. elseif $moodType = 'bad':
  189. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/slapface'+rand(1, 1)+'.mp4"></video></center>'
  190. 'He comes close to you and suddenly slaps your face hard.'
  191. 'You are caught by surprise and tears well up in your eyes.'
  192. 'He seems very angry and even aroused by your misfortune.'
  193. '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.'
  194. gs 'pain', 1, 'cheeks', 'slap'
  195. if slutty < 10:
  196. Manna -= 50
  197. else
  198. Manna -= 10
  199. end
  200. gs 'pain', 2, 'armL', 'twist'
  201. gs 'pain', 2, 'armR', 'twist'
  202. act 'Brace yourself':gt 'saunawhore', 'fuckRoughGate'
  203. end
  204. gs 'stat'
  205. end
  206. if $ARGS[0] = 'blowjobGate':
  207. '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.'
  208. gs 'arousal', 'bj', 5, 'prostitution'
  209. 'He is rock hard now and you can see his <<$dick_girth>> <<dick>>cm member in all its glory.'
  210. 'Client seems to be so far content with your performance, but you think it may be time to switch to efficient approach:'
  211. gs 'stat'
  212. if dick > pcs_throat:
  213. 'There''s no way you''ll be able to fit the entire thing in your mouth.'
  214. act 'Try to deepthroat him':gt 'saunawhore', 'blowjobCaress'
  215. else
  216. act 'Deepthroat him':gt 'saunawhore', 'blowjobDeepthroat'
  217. end
  218. end
  219. if $ARGS[0] = 'blowjobCaress':
  220. '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.'
  221. gs 'arousal', 'bj', 5, 'prostitution'
  222. ''
  223. moodChange = rand (-2, 0)
  224. moodTypeRand += moodChange
  225. if $moodType = 'good':
  226. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  227. 'He seems to enjoy your efforts anyway, and signals to you that he''s ready to move on to the next stage.'
  228. act 'Continue':gt 'saunawhore', 'fuckGate'
  229. elseif $moodType = 'fairly normal':
  230. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/blowjob'+rand(1, 5)+'.mp4"></video></center>'
  231. 'He seem to have enough of this. He takes your hand and directs you towards the bed.'
  232. act 'Continue':gt 'saunawhore', 'fuckGate'
  233. elseif $moodType = 'bad':
  234. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/slapface'+rand(1, 1)+'.mp4"></video></center>'
  235. 'He scowls at your pathetic attempt and pulls his cock out of your mouth.'
  236. question = rand (1, 3)
  237. if question = 1:
  238. '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?"'
  239. elseif question = 2:
  240. 'He slaps your face hard and shouts: "My cock isn''t tasty enough for you to suck on properly, bitch?"'
  241. elseif question = 3:
  242. 'He slaps your face hard and shouts: "Christ, what kind of a good-for-nothing whore are you?"'
  243. end
  244. gs 'pain', 1, 'cheeks', 'slap'
  245. 'Furious, he grabs you roughly by your arms, painfully twisting them behind your back, and slams you down on the bed.'
  246. act 'Continue':gt 'saunawhore', 'fuckRoughGate'
  247. end
  248. gs 'stat'
  249. end
  250. if $ARGS[0] = 'blowjobDeepthroat':
  251. moodChange += rand (-1, 2)
  252. moodTypeRand += moodChange
  253. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/deepthroat'+rand(1, 5)+'.mp4"></video></center>'
  254. '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.'
  255. 'You try to hold it as long as possible, while teasing his balls with your tongue, your nose pressed against his pubic area.'
  256. if $moodType = 'bad':
  257. 'He gets a sadistic look in his eye, and then grabs the back of your head and holds you down, not letting you escape.'
  258. '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.'
  259. end
  260. gs 'arousal', 'bj', 5, 'prostitution', 'deepthroat'
  261. 'Finally he seems to have had enough of oral sex and signals you that he wants some more.'
  262. gs 'stat'
  263. act 'Continue':gt 'saunawhore', 'fuckGate'
  264. end
  265. if $ARGS[0] = 'fuckGate':
  266. minut += 2
  267. noCondChance = rand(1, 100)
  268. if noCondChance < 40:
  269. 'He leers at you lustfully and asks, "So baby, how much for not using a condom?"'
  270. 'When you hesitate, he adds, "C''mon, I''ll pay you double."'
  271. act 'Let him fuck you without a condom':gt 'saunawhore', 'fuckGateCondomNo'
  272. act 'Insist on using a condom':gt 'saunawhore', 'fuckGateCondomYes'
  273. else
  274. gs 'saunawhore', 'fuckGateCondomYes'
  275. end
  276. gs 'stat'
  277. end
  278. if $ARGS[0] = 'fuckGateCondomYes':
  279. useCondom = 1
  280. moodTypeRand -= 2
  281. gs 'saunawhore', 'fuckGateGo'
  282. end
  283. if $ARGS[0] = 'fuckGateCondomNo':
  284. useCondom = 2
  285. moodTypeRand += 1
  286. gs 'saunawhore', 'fuckGateGo'
  287. end
  288. if $ARGS[0] = 'fuckGateGo':
  289. durr = 2
  290. minut += durr
  291. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/lieonbedboth.jpg"></center>'
  292. 'You lie back on the bed in front of the client.'
  293. '"How do you want me?" you ask him.'
  294. if $moodType = 'bad':
  295. '"How do I want you whore? I want you screaming!"'
  296. forced = 1
  297. act 'Continue':gt 'saunawhore', 'fuckRoughGate'
  298. else
  299. forced = 2
  300. holeType = rand(1, 2)
  301. if holeType = 1:
  302. '"I want some pussy."'
  303. act 'Spread your legs':gt 'saunawhore', 'fuckVaginal'
  304. elseif holeType = 2:
  305. '"I want to fuck your ass."'
  306. act 'Turn around and spread your ass':gt 'saunawhore', 'fuckAnal'
  307. end
  308. end
  309. gs 'stat'
  310. end
  311. if $ARGS[0] = 'fuckVaginal':
  312. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckvaginal'+rand(1, 5)+'.mp4"></video></center>'
  313. 'He climbs on top of you and pushes his member inside of you.'
  314. if dick > pcs_vag:
  315. '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.'
  316. '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.'
  317. DMG = (dick - pcs_vag) / 2
  318. gs 'pain', 1, 'vaginal', 'stretch'
  319. pcs_mood -= (DMG * 5)
  320. gs 'arousal', 'vaginal', 10, 'prostitution', 'rough'
  321. else
  322. 'He thrusts his <<$dick_girth>> <<dick>>cm cock in you over and over, not caring much about technique or your own pleasure.'
  323. gs 'arousal', 'vaginal', 10, 'prostitution'
  324. end
  325. ''
  326. 'After a while, you can sense that he is almost ready to come.'
  327. gs 'stat'
  328. if useCondom = 2:
  329. act 'Ask him not to cum inside of you':
  330. not_inside = 1
  331. gt 'saunawhore', 'cumClientGate'
  332. end
  333. end
  334. act 'Let him cum wherever he wants':
  335. not_inside = 2
  336. gt 'saunawhore', 'cumClientGate'
  337. end
  338. end
  339. if $ARGS[0] = 'fuckAnal':
  340. stat['anal'] += 1
  341. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckanal'+rand(1, 5)+'.mp4"></video></center>'
  342. '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.'
  343. if dick > pcs_anus:
  344. '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.'
  345. '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.'
  346. DMG = (dick - pcs_anus) / 2
  347. gs 'pain', 1, 'asshole', 'stretch'
  348. pcs_mood -= (DMG * 5)
  349. gs 'arousal', 'anal', 10, 'prostitution', 'rough'
  350. else
  351. '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.'
  352. gs 'arousal', 'anal', 10, 'prostitution'
  353. end
  354. ''
  355. 'After a while, you can sense that he is almost ready to come.'
  356. gs 'stat'
  357. act 'Let him cum wherever he wants':
  358. not_inside = 2
  359. gt 'saunawhore', 'cumClientGate'
  360. end
  361. end
  362. if $ARGS[0] = 'fuckRoughGate':
  363. durr = 5
  364. minut += durr
  365. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bedoverpowered.jpg"></center>'
  366. 'The man is much stronger than you, and you are completely overpowered, entirely at his will.'
  367. 'He keeps your arms pinned painfully behind your back.'
  368. pcs_mood -= 50
  369. useCondom = rand(1,2)
  370. forced = 1
  371. gs 'pain', 2, 'armL', 'twist'
  372. gs 'pain', 2, 'armR', 'twist'
  373. holeType = rand(1, 2)
  374. if holeType = 1 and useCondom = 1:
  375. 'You feel the tip of his cock against your pussy... at least it feels like he''s using a condom.'
  376. act 'Continue':gt 'saunawhore', 'fuckRoughVaginal'
  377. elseif holeType = 1 and useCondom = 2:
  378. 'You feel the tip of his cock against your pussy... and it feels like he''s not wearing a condom!'
  379. act 'Continue':gt 'saunawhore', 'fuckRoughVaginal'
  380. elseif holeType = 2:
  381. 'You feel the tip of his cock pressing against your asshole... this is probably not going to be pleasant.'
  382. act 'Continue':gt 'saunawhore', 'fuckRoughAnal'
  383. end
  384. gs 'stat'
  385. end
  386. if $ARGS[0] = 'fuckRoughVaginal':
  387. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckroughvaginal'+rand(1, 5)+'.mp4"></video></center>'
  388. 'He forces his dick inside of you, and begins to fuck your tender pussy furiously.'
  389. 'You cannot help but scream in pain, which seems to arouse him even more and makes him push even harder and deeper.'
  390. if dick > pcs_vag:
  391. 'His <<$dick_girth>> <<dick>>cm is too big for your pussy and causes you intense pain, stretching you horribly and slamming against your cervix.'
  392. DMG = (dick - pcs_vag)
  393. gs 'pain', 2, 'vaginal', 'stretch'
  394. !gs 'pain', 2, 'cervix', 'pinch'
  395. pcs_mood -= (DMG * 5)
  396. end
  397. gs 'arousal', 'vaginal', 10, 'prostitution', 'rough', 'bound'
  398. ''
  399. 'After seemingly endless fucking, you can finally sense that he is almost ready to come.'
  400. gs 'stat'
  401. if useCondom = 2:
  402. act 'Beg him not to cum inside of you':
  403. not_inside = 1
  404. gt 'saunawhore', 'cumClientGate'
  405. end
  406. end
  407. act 'Let him cum wherever he wants':
  408. not_inside = 2
  409. gt 'saunawhore', 'cumClientGate'
  410. end
  411. end
  412. if $ARGS[0] = 'fuckRoughAnal':
  413. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/fuckroughanal'+rand(1, 5)+'.mp4"></video></center>'
  414. 'He roughly shoves his entire cock up your ass, and begins to fuck it furiously.'
  415. 'You cannot help but scream in agony, which arouses him even more and makes him push even harder and deeper.'
  416. if dick > pcs_anus:
  417. '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.'
  418. DMG = (dick - pcs_anus)
  419. gs 'pain', 2, 'asshole', 'stretch'
  420. pcs_mood -= (DMG * 5)
  421. end
  422. not_inside = 2
  423. gs 'arousal', 'anal', 10, 'prostitution', 'rough', 'bound'
  424. ''
  425. 'After seemingly endless assfucking, you can finally sense that he is almost ready to come.'
  426. gs 'stat'
  427. act 'Let him cum wherever he wants':gt 'saunawhore', 'cumClientGate'
  428. end
  429. if $ARGS[0] = 'cumClientGate':
  430. if $moodType = 'bad':
  431. if not_inside = 2:
  432. cumRand = rand(1, 10)
  433. if cumRand <= 9 and holeType = 1:
  434. 'You feel his cock twitch and realize he is about to cum inside of you.'
  435. act 'Continue':gt 'saunawhore', 'cumVaginal'
  436. elseif cumRand <= 9 and holeType = 2:
  437. 'You feel his cock twitch and realize he is about to cum in your ass.'
  438. act 'Continue':gt 'saunawhore', 'cumAnal'
  439. else
  440. 'He pulls out and brings his cock up in front of your face.'
  441. act 'Continue':gt 'saunawhore', 'cumFace'
  442. end
  443. else
  444. cumRand = rand(1, 2)
  445. if cumRand = 1 and holeType = 1:
  446. 'He just laughs and you realize he is going to cum inside of you anyway.'
  447. act 'Continue':gt 'saunawhore', 'cumVaginal'
  448. elseif cumRand = 2:
  449. 'He smirks and says "Fine, how about in your eyes then, whore?"'
  450. gs 'pain', 1, 'eyes', 'burn'
  451. act 'Continue':gt 'saunawhore', 'cumFace'
  452. end
  453. end
  454. else
  455. if not_inside = 2:
  456. cumRand = rand(1, 5)
  457. if cumRand = 1 and holeType = 1:
  458. 'You feel his cock twitch and realize he is about to cum inside of you.'
  459. act 'Continue':gt 'saunawhore', 'cumVaginal'
  460. elseif cumRand = 1 and holeType = 2:
  461. 'You feel his cock twitch and realize he is about to cum in your ass.'
  462. act 'Continue':gt 'saunawhore', 'cumAnal'
  463. elseif cumRand = 2:
  464. 'He pulls out and brings his cock up in front of your face.'
  465. act 'Continue':gt 'saunawhore', 'cumFace'
  466. elseif cumRand = 3:
  467. 'He pulls out and brings his cock up in front of your face.'
  468. act 'Continue':gt 'saunawhore', 'cumMouth'
  469. elseif cumRand = 4:
  470. 'He pulls out and holds his cock over your body.'
  471. act 'Continue':gt 'saunawhore', 'cumBelly'
  472. elseif cumRand = 5:
  473. 'He pulls out and holds his cock over your body.'
  474. act 'Continue':gt 'saunawhore', 'cumTits'
  475. end
  476. else
  477. cumRand = rand(1, 9)
  478. if cumRand <= 2:
  479. 'He nods, pulls out, and brings his cock up in front of your face.'
  480. act 'Continue':gt 'saunawhore', 'cumFace'
  481. elseif cumRand <= 4:
  482. 'He nods, pulls out, and brings his cock up in front of your face.'
  483. act 'Continue':gt 'saunawhore', 'cumMouth'
  484. elseif cumRand <= 6:
  485. 'He nods, pulls out, and holds his cock over your body.'
  486. act 'Continue':gt 'saunawhore', 'cumBelly'
  487. elseif cumRand <= 8:
  488. 'He nods, pulls out, and holds his cock over your body.'
  489. act 'Continue':gt 'saunawhore', 'cumTits'
  490. else
  491. 'He shakes his head and says "Sorry, I can''t stop now!" and you realize he''s going to cum in you anyway!'
  492. act 'Continue':gt 'saunawhore', 'cumVaginal'
  493. end
  494. end
  495. end
  496. end
  497. if $ARGS[0] = 'cumVaginal':
  498. minut += 5
  499. if useCondom = 1:
  500. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomVaginal.jpg"></center>'
  501. 'The client''s cock twitches several more times as he cums into the condom inside of you.'
  502. 'He strips the condom from his dick, and you see that it has <<$cumType>> cum in it.'
  503. moodTypeRand += rand (-2, 2)
  504. if $moodType = 'bad':
  505. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomPourFace.jpg"></center>'
  506. 'Suddenly he grabs your head and pours the contents all over your face.'
  507. gs 'cum_call', '', 'sauna client', 0, 3, 0, cumVolMl
  508. gs 'cum_call', 'face', 'sauna client', 0, 0, 0, cumVolMl
  509. elseif $moodType = 'fairly normal':
  510. 'He throws it away on the floor, not caring about spilling the fluids around.'
  511. gs 'cum_call', '', 'sauna client', 0, 3, 0, cumVolMl
  512. elseif $moodType = 'good':
  513. 'He throws it in the waste bin and gently caresses your hair afterwards.'
  514. gs 'cum_call', '', 'sauna client', 0, 3, 0, cumVolMl
  515. end
  516. else
  517. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumVaginal'+rand(1, 5)+'.mp4"></video></center>'
  518. '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.'
  519. gs 'cum_call', '', 'sauna client', 0, 0, 0, cumVolMl
  520. if rand(1,100) >= 70:dynamic $venerasiak
  521. end
  522. gs 'stat'
  523. act 'Continue':gt 'saunawhore', 'clientLeave'
  524. end
  525. if $ARGS[0] = 'cumAnal':
  526. if useCondom = 1:
  527. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomAnal.jpg"></center>'
  528. 'The client''s cock twitches several more times as he cums into the condom inside of your ass.'
  529. 'He strips the condom from his dick, and you see that it has <<$cumType>> cum in it.'
  530. moodTypeRand += rand (-2, 2)
  531. if $moodType = 'bad':
  532. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/cumCondomPourFace.jpg"></center>'
  533. 'Suddenly he grabs your head and pours the contents all over your face.'
  534. gs 'cum_call', 'anus', 'sauna client', 0, 3, 0, cumVolMl
  535. gs 'cum_call', 'face', 'sauna client', 0, 0, 0, cumVolMl
  536. elseif $moodType = 'fairly normal':
  537. 'He throws it away on the floor, not caring about spilling the fluids around.'
  538. gs 'cum_call', 'anus', 'sauna client', 0, 3, 0, cumVolMl
  539. elseif $moodType = 'good':
  540. 'He throws it in the waste bin and gently caresses your hair afterwards.'
  541. gs 'cum_call', 'anus', 'sauna client', 0, 3, 0, cumVolMl
  542. end
  543. else
  544. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumAnal'+rand(1, 5)+'.mp4"></video></center>'
  545. '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.'
  546. if rand(1,100) >= 70:dynamic $venerasiak
  547. gs 'cum_call', 'anus', 'sauna client', 0, 0, 0, cumVolMl
  548. end
  549. gs 'stat'
  550. act 'Continue':gt 'saunawhore', 'clientLeave'
  551. end
  552. if $ARGS[0] = 'cumFace':
  553. facial += 1
  554. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumFace'+rand(1, 5)+'.mp4"></video></center>'
  555. if useCondom = 1:
  556. 'The client strips the condom from his dick and blows <<$cumType>> cum all over your face.'
  557. else
  558. 'The client finishes himself off and blows <<$cumType>> cum all over your face.'
  559. end
  560. gs 'cum_call', 'face', 0, 0, 0, cumVolMl
  561. gs 'stat'
  562. act 'Continue':gt 'saunawhore', 'clientLeave'
  563. end
  564. if $ARGS[0] = 'cumMouth':
  565. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumMouth'+rand(1, 5)+'.mp4"></video></center>'
  566. if useCondom = 1:
  567. 'The client strips the condom from his dick and shoots <<$cumType>> cum inside your mouth.'
  568. else
  569. 'The client stuffs his dick back inside your mouth, and as you suck it, he shoots <<$cumType>> cum inside your mouth.'
  570. end
  571. if rand(1,100) >= 70:dynamic $venerasiakOral
  572. gs 'cum_call', 'mouth', 0, 0, 0, cumVolMl
  573. gs 'stat'
  574. act 'Continue':gt 'saunawhore', 'clientLeave'
  575. end
  576. if $ARGS[0] = 'cumBelly':
  577. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumBelly'+rand(1, 5)+'.mp4"></video></center>'
  578. if useCondom = 1:
  579. 'The client strips the condom from his dick and shoots <<$cumType>> cum all over your belly.'
  580. else
  581. 'The client finishes himself off and shoots <<$cumType>> cum all over your belly.'
  582. end
  583. gs 'cum_call', 'stomach', 0, 0, 0, cumVolMl
  584. gs 'stat'
  585. act 'Continue':gt 'saunawhore', 'clientLeave'
  586. end
  587. if $ARGS[0] = 'cumTits':
  588. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/cumTits'+rand(1, 5)+'.mp4"></video></center>'
  589. 'You kneel down infront of him, raising your breasts higher for him to shoot his cum on them.'
  590. if useCondom = 1:
  591. 'The client strips the condom from his dick and shoots <<$cumType>> cum all over your tits.'
  592. else
  593. 'The client finishes himself off and shoots <<$cumType>> cum all over your tits.'
  594. end
  595. gs 'cum_call', 'breasts', 0, 0, 0, cumVolMl
  596. gs 'stat'
  597. act 'Continue':gt 'saunawhore', 'clientLeave'
  598. end
  599. if $ARGS[0] = 'bdsmclient':
  600. cla
  601. *clr
  602. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm1.jpg"></center>'
  603. '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.'
  604. '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.'
  605. '"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.'
  606. '"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.'
  607. act 'Sit and wait':
  608. cla
  609. *clr
  610. gs 'pain', 2, 'handL', 'bind'
  611. gs 'pain', 2, 'handR', 'bind'
  612. minut += 15
  613. gs 'stat'
  614. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm2.jpg"></center>'
  615. '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.'
  616. '"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.'
  617. '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.'
  618. act 'Squirm':
  619. cla
  620. *clr
  621. minut += 4
  622. gs 'stat'
  623. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm3.jpg"></center>'
  624. 'Not wanting to upset the patron you begin acting as you''re fighting to get loose, grunting and moaning.'
  625. '"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.'
  626. '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.'
  627. act 'Stand up':
  628. cla
  629. *clr
  630. minut += 10
  631. gs 'stat'
  632. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm4.jpg"></center>'
  633. 'The goons quickly enter the room, grab hold of you and stand you up. "How do you want her?" they ask.'
  634. '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.'
  635. '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.'
  636. '"You have a great body girl, has anyone told you that?" he asks as you try to move your body to a comfortable position.'
  637. '"That''s right, squirm you little whore. I know you''re uncomfortable. How does it feel having someone else in control of your fate?"'
  638. 'By now you''re getting worried about what the man is really up to.'
  639. act 'On all fours':
  640. cla
  641. *clr
  642. gs 'pain', 2, 'legs', 'bind'
  643. minut += 10
  644. gs 'stat'
  645. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm5.jpg"></center>'
  646. '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."'
  647. '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."'
  648. '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."'
  649. '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.'
  650. act 'On your back':
  651. cla
  652. *clr
  653. gs 'pain', 4, 'labia', 'pinch'
  654. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/sex/bdsm6.jpg"></center>'
  655. '"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.'
  656. '"Good job fellas." the man praises them. "Did you bring what I asked for?"'
  657. '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.'
  658. '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.'
  659. '"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.'
  660. gs 'arousal', 'foreplay', 15, 'prostitution', 'bound', 'sub'
  661. gs 'stat'
  662. act 'Finish':
  663. cla
  664. *clr
  665. basePay = (10 * rand(85,135))
  666. payment = (basePay / 2)
  667. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/givemoney.jpg"></center>'
  668. if workDolg > 0:
  669. 'The client leaves the room and pays the sauna <<payment>> <b>₽</b> for your services.'
  670. 'His goons untie you and have you slowly turn around so the madam can be sure you are unmarked, then leave.'
  671. else
  672. 'The client counts the money out as his goons untie you. He hands you <<payment>> <b>₽</b> for your services.'
  673. end
  674. gs 'arousal', 'end'
  675. gs 'stat'
  676. act 'Head back to the main area':gt 'saunawork'
  677. end
  678. end
  679. end
  680. end
  681. end
  682. end
  683. end
  684. if $ARGS[0] = 'clientLeave':
  685. basePay = (10 * rand(75,125))
  686. if prezik = 0:
  687. condomPrice = 50
  688. elseif prezik > 0:
  689. dynamic $prezik
  690. condomPrice = 0
  691. end
  692. if forced = 2:
  693. payment = (basePay * useCondom) - condomPrice
  694. else
  695. payment = (basePay / 2) - condomPrice
  696. end
  697. '<center><img <<$set_imgh>> src="images/locations/city/residential/sauna/givemoney.jpg"></center>'
  698. if workDolg > 0:
  699. workDolg -= payment
  700. 'Having finished with you, the client gets dressed, leaves the room, and pays the sauna <<payment>> <b>₽</b> for your services.'
  701. gs 'arousal', 'end'
  702. gs 'stat'
  703. act 'Head back to the main area':gt 'saunawork'
  704. else
  705. money += payment
  706. 'Having finished with you, the client gets dressed, takes his wallet and hands you <<payment>> <b>₽</b>.'
  707. gs 'arousal', 'end'
  708. gs 'stat'
  709. act 'Take the money and see him out':gt 'saunawork'
  710. end
  711. end
  712. --- saunawhore ---------------------------------