brothel.qsrc 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  1. # brothel
  2. $loc = 'brothel'
  3. ! brothelCredit - liked or not liked by the brothel management
  4. ! custTime - time spent with the current client; for calculation of the whores pay
  5. $pcs_font = '990099'
  6. $mas_font = '990000'
  7. $red_font = 'D81818'
  8. $rec_font = '585858'
  9. ! event probabilities
  10. ! pushing out anal plug
  11. prob_chPlug = 20
  12. ! anal rod after pushing out anal plug
  13. prob_chRod = 20
  14. ! receptionists pulls out the plug
  15. prob_recPlugCh = 30
  16. ! client will want to use needles (titTorture)
  17. prob_hardCh = 60
  18. ! chance to get abducted to a hotel room when alko wasted
  19. prob_abdCh = 20
  20. ! chance that client agrees to 100% bonus for above rules practices
  21. prob_agreeCh = 33
  22. dbg = 0
  23. if dbg = 1:
  24. 'loc: '+$loc
  25. 'args: '+$ARGS[0]
  26. 'session: '+$sessionB
  27. 'stage: '+stage
  28. 'pain: '+pain['total']
  29. 'step: '+step
  30. 'bonus '+bonus
  31. 'custTime '+custTime
  32. 'caneFeetCount '+caneFeetCount
  33. end
  34. if orgasmMeter > 100:
  35. orgasmMeter = 100
  36. end
  37. if rageMeter > 100:
  38. rageMeter = 100
  39. end
  40. payRate = 2000
  41. if $ARGS[0] = 'lobby':
  42. '<h3>Hotel Lobby</h3>'
  43. *nl
  44. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/hotellobby.jpg"></center>'
  45. *nl
  46. 'You are in a lobby of a middle-class Hotel.'
  47. 'There is a large restaurant hall, with long <a href="exec:gt ''brothel'', ''bar''">wooden bar</a> with and many high chairs.'
  48. 'Next to a bar are doors leading to a <a href="exec:gt ''brothel'', ''lobby:toilet''">toilet</a>.'
  49. *nl
  50. 'Alongside the windows are tables, each for about four to six people.'
  51. nroad = 20
  52. act 'Leave':gt 'road'
  53. end
  54. if $ARGS[0] = 'lobby:toilet':
  55. cla
  56. *clr
  57. $locM = 'brothel'
  58. $metka = 'lobby:toilet'
  59. $metkaM = 'lobby:toilet'
  60. $loc = 'brothel'
  61. $location_type = 'bathroom'
  62. minut += 2
  63. '<h3>Lobby Toilet</h3>'
  64. *nl
  65. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/hoteltoilet.jpg"></center>'
  66. *nl
  67. act 'Leave':gt 'brothel', 'lobby'
  68. act 'Look into the mirror': gt 'mirror', 'start'
  69. if pcs_hairbsh = 0: act 'Brush your hair': gt 'mirror', 'brush'
  70. dynamic $tampon
  71. dynamic $quickwash
  72. dynamic $basin
  73. end
  74. if $ARGS[0] = 'bar':
  75. '<h3>Hotel Bar</h3>'
  76. *nl
  77. if alko <= 3:
  78. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/bar.jpg"></center>'
  79. *nl
  80. 'Cozy bar made of fine hard wood. There are few patrons here, but no one you can recognize. Probably travelling guests.'
  81. *nl
  82. 'The barman is cleaning some glasses, occasionally looking your way, checking if you want to order something.'
  83. elseif alko > 3 and alko < 6:
  84. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/bardrunk.jpg"></center>'
  85. *nl
  86. 'Cozy bar made of fine hard wood. There are few patrons here, but no one you can recognize. Probably travelling guests.'
  87. *nl
  88. '<font color=#<<$red_font>>>You are drunk and the barman is obviously enjoying the presence of a nice girl in such a state, often flirting with you and enjoying the looks.</font>'
  89. elseif alko >= 6:
  90. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/barwasted.jpg"></center>'
  91. *nl
  92. 'Cozy bar made of fine hard wood. There are few patrons here, but no one you can recognize. Probably travelling guests.'
  93. *nl
  94. '<font color=#<<$red_font>>>You are wasted. Lying your head on the bar, barely keeping awake. The barman starts to be nervous, probably afraid of scaring away the regular guests.</font>'
  95. end
  96. act 'Order something':gt 'brothel', 'bar:order'
  97. act 'Just sit here':gt 'brothel', 'bar:sit'
  98. act 'Leave the bar':gt 'brothel', 'lobby'
  99. end
  100. if $ARGS[0] = 'bar:sit':
  101. '<h3>Hotel Bar</h3>'
  102. *nl
  103. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/bar.jpg"></center>'
  104. *nl
  105. 'You take a seat behind the bar, looking around at the few guests sitting around the dining room.'
  106. 'There''s nothing of importance, as far as you can see.'
  107. minut += 15
  108. gs 'stat'
  109. act 'Continue':gt 'brothel', 'bar'
  110. end
  111. if $ARGS[0] = 'bar:order':
  112. $loc = 'brothel'
  113. $metka = 'bar:order'
  114. abdCh = rand (0, 100)
  115. '<h3>Hotel Bar</h3>'
  116. '<h5>Ordering a drink</h5>'
  117. *nl
  118. if alko <= 3:
  119. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/barorder.jpg"></center>'
  120. elseif alko > 3 and alko < 6:
  121. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/bardrunk.jpg"></center>'
  122. elseif alko >= 6:
  123. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/barwasted.jpg"></center>'
  124. end
  125. *nl
  126. 'You signal to the barman that you want something.'
  127. '"What would you like miss?"'
  128. if alko > 6 and abdCh <= prob_abdCh and hotelWhore = 0:
  129. *nl
  130. 'You try to order another drink, but as you faint all that gets out of your mouth is some drunken babble..'
  131. 'The barman was obviously waiting for this moment.'
  132. 'He walks out of the bar, taking you in his arms and carrying away.'
  133. 'On the way you briefly regain consciousness from time to time, realizing that you are carried somewhere upstairs to what seems as one of the hotel rooms.'
  134. act 'Continue':gt 'brothel', 'abducted'
  135. else
  136. if hotelWhore = 1:
  137. act 'Order a Blue-blooded Russian.':gt 'brothel','bar:order:password'
  138. end
  139. act 'Order a snack': gs 'food_menu', 'pub'
  140. act 'Order a drink': gs 'beverage_menu', 'pub'
  141. end
  142. act 'Continue':gt 'brothel', 'bar'
  143. end
  144. if $ARGS[0] = 'abducted':
  145. $this = 'abducted'
  146. '<h3>Hotel Room</h3>'
  147. 'You wasted yourself in the bar and now you suffer the consequences.'
  148. if stage = 0:
  149. *nl
  150. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/roombedtied.jpg"></center>'
  151. *nl
  152. 'The barman dropped you on the bed face down, stripped you and tied your hands and feet to the corners of the bed.'
  153. 'You are barely able to resist, giving minimal resistance to your aggressor.'
  154. '<font color=#<<$mas_font>>>"Ha slut! Now you will get another drink from me, the freshest one!"</font>'
  155. gs 'pain', 2, 'armL', 'bind'
  156. gs 'pain', 2, 'armR', 'bind'
  157. gs 'pain', 2, 'legL', 'bind'
  158. gs 'pain', 2, 'legR', 'bind'
  159. gs 'stat'
  160. stage = 1
  161. act 'Continue':gt 'brothel', $this
  162. elseif stage = 1:
  163. *nl
  164. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/pinchAndFingerTiedToBed.jpg"></center>'
  165. *nl
  166. 'He jumps on to you, grabing your ass and pinching your cheeks.'
  167. '<font color=#<<$pcs_font>>>"Ouch! It..hrts.. Ouch!"</font> The pain forces you back to a consciousness for a brief moment.'
  168. 'Aroused with your reaction, he pushes his finger into your pussy, one by one until there are four of them.'
  169. '<font color=#<<$mas_font>>>"What a whore! She''s already wet!"</font>'
  170. 'He uses the juiced fingers and thrusts them into your anus, once again forcing you back to a living world.'
  171. '<font color=#<<$pcs_font>>>"Auuuuuuu!"</font> you wriggle in a cramp, feeling the sharp pain in your anus.'
  172. gs 'pain', 3, 'asshole', 'pinch'
  173. $orgasm_or = 'no'
  174. gs 'arousal', 'vaginal_finger', 5
  175. gs 'arousal', 'anal_finger', 5
  176. gs 'arousal', 'end'
  177. gs 'stat'
  178. stage = 2
  179. act 'Continue':gt 'brothel', $this
  180. elseif stage = 2:
  181. *nl
  182. '<center><video autoplay loop src="images/locations/shared/brothel/openChampagne.mp4"></video> <video autoplay loop src="images/locations/shared/brothel/champagneEnema.mp4"></video></center>'
  183. *nl
  184. '<font color=#<<$mas_font>>>"Now slut let''s get you your drink!"</font>'
  185. 'He reaches for a bottle of champagne from the minibar.'
  186. 'All you can hear in that moment is a popping sound as the bottle plug shoots out.. The barman covers the neck of the bottle with his thumb and shakes it to build up a pressure..'
  187. '..and then he forces it into you anus as far as it goes, while the sparkling wine gushes out deep into your intestines.'
  188. '<font color=#<<$mas_font>>>"Ayyyieeee!"</font> Again you scream aloud shaking both in surprise and pain.'
  189. gs 'pain', 6, 'asshole', 'stretch'
  190. gs 'arousal', 'anal_dildo', 5
  191. gs 'arousal', 'end'
  192. gs 'stat'
  193. stage = 3
  194. act 'Continue':gt 'brothel', $this
  195. elseif stage = 3:
  196. *nl
  197. '<center><video autoplay loop src="images/locations/shared/brothel/tiedToBedFuck.mp4"></video> <video autoplay loop src="images/locations/shared/brothel/tiedToBedAnal.mp4"></video></center>'
  198. *nl
  199. 'The champagne bottle is still inside your anus like a giant buttplug, but the flow has stopped.'
  200. 'He takes it and pulls it out. The wine slowly leaks out of your wrecked anus..'
  201. '<font color=#<<$mas_font>>>"Well, now that the drink is taken care of, we have also got you an expensive enema, so now we can finally get to the business!"</font>'
  202. 'He cleans your ass from the remains of whatever little was inside.'
  203. 'His dick is not the biggest one, but it is quite thick.'
  204. 'Your pussy is a first victim of the phallus, and after short while he moves to your anus.'
  205. 'Another jolt of pain runs through your bottom, but this time you fade away for sure..'
  206. gs 'pain', 6, 'asshole', 'stretch'
  207. guy += 4
  208. temp = 4
  209. sexpartkno = 0
  210. :abdrapeloop
  211. gs 'npcgeneratec', 0, 'Rapist', rand(35,50)
  212. gs 'boyStat', $npclastgenerated
  213. gs 'arousal', 'anal', 10
  214. gs 'arousal', 'end'
  215. cumarrcon = 0
  216. gs 'cum_call', 'anus', 'Rapist', 2
  217. temp -= 1
  218. if temp > 0:
  219. jump 'abdrapeloop'
  220. end
  221. rape += 1
  222. gang += 1
  223. $orgasm_or = ''
  224. gs 'stat'
  225. stage = 4
  226. act 'Continue':gt 'brothel', $this
  227. elseif stage = 4:
  228. analplugIN = 1
  229. pcs_hairbsh = 0
  230. InSleep = 1
  231. cloth_vid = 0
  232. pain['killer'] = 0
  233. if StoryLine = 1 and SchoolAtestat = 0:
  234. notathomesleep += 1
  235. else
  236. notathomesleep = 0
  237. end
  238. :loopson
  239. minut += 1
  240. stime += 1
  241. pcs_health += 5
  242. if stime >= 60:
  243. stime = 0
  244. pcs_sleep += 15
  245. gs 'stat'
  246. end
  247. if hour ! 10:jump 'loopson'
  248. InSleep = 0
  249. gs 'stat'
  250. *nl
  251. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/wakeUpBoundOnBedAnalPlug.jpg"></center>'
  252. *nl
  253. 'You wake up, still being bound to the bed. Behind the curtians you can see that it is late morning.'
  254. 'Your head is in pain and spinning, your stomach is like on a water.'
  255. 'You feel strange fullness in your abdomen and your pussy and anus itch.'
  256. 'As you try to struggle out of the bounds you realize what has happened.. and what is left as a reminder..'
  257. 'You desperately try to push the plug out of your ass, but its rim is too wide and it rests well inside you.'
  258. gs 'pain', 2, 'armL', 'bind'
  259. gs 'pain', 2, 'armR', 'bind'
  260. gs 'pain', 2, 'legL', 'bind'
  261. gs 'pain', 2, 'legR', 'bind'
  262. gs 'stat'
  263. stage = 5
  264. act 'Desperately wait':gt 'brothel', $this
  265. elseif stage = 5:
  266. *nl
  267. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/wakeUpBoundOnBedAnalPlug2.jpg"></center>'
  268. *nl
  269. 'Finally you hear the door open, someone is coming in.'
  270. '<font color=#<<$mas_font>>>"So girl, how was your night?"</font>'
  271. '<font color=#<<$pcs_font>>>"What? Who are you? Untie me!"</font>'
  272. '<font color=#<<$mas_font>>>"I will, but first you will tell me how was your night."</font>'
  273. '<font color=#<<$pcs_font>>>"Wh.. How could it be? I don''t remember most of it, I lie tied naked to a bed with something stuck in my anus I do not even know what is! My pussy and anus hurt and I was probably raped whole night unconscious!"</font>'
  274. '<font color=#<<$mas_font>>>"Well, you mostly covered it all. But you still didn''t tell me how did you like it."</font>'
  275. '<font color=#<<$pcs_font>>>"Please just untie me! All of me hurts like hell! Please!"</font>'
  276. '<font color=#<<$mas_font>>>"OK, but then you will answer me. And first we need to get rid of the plug, don''t we?"</font>'
  277. stage= 6
  278. act 'Continue':gt 'brothel', $this
  279. elseif stage = 6:
  280. analplugIN = 0
  281. *nl
  282. '<center><video autoplay loop src="images/locations/shared/brothel/pullPlugFromAss.mp4"></video></center>'
  283. *nl
  284. 'He leans to your ass and reaches for the top of the plug.'
  285. *nl
  286. '<font color=#<<$mas_font>>>"Quick or slow, girl?"</font>'
  287. '<font color=#<<$pcs_font>>>"What?! No, don''t touch it!"</font>'
  288. '<font color=#<<$mas_font>>>"Haha, they say do it swift, it hurts less! Let''s try it!"</font>'
  289. 'With those words he pulls the plug out, leaving your anus with huge gape..'
  290. gs 'pain', 3, 'asshole', 'stretch'
  291. gs 'stat'
  292. stage= 7
  293. act 'Sob from pain':gt 'brothel', $this
  294. elseif stage = 7:
  295. *nl
  296. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/abusedFace.jpg"></center>'
  297. *nl
  298. '<font color=#<<$mas_font>>>"Now tell me how did you like all of this. Answer me honestly and you will be free to go."</font>'
  299. '<font color=#<<$pcs_font>>>"Well..."</font>'
  300. stage = 8
  301. act 'Admit that you somehow liked it as you fancy to be dominated':abdLike = 1 & gt 'brothel', $this
  302. act 'Yell at him that it was horrible':abdLike = 0 & gt 'brothel', $this
  303. elseif stage = 8:
  304. if abdLike = 1:
  305. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/abusedFace.jpg"></center>'
  306. *nl
  307. 'You just admitted to a complete stranger, who abducted, tied and raped for a whole night, that you actually liked the experience..'
  308. '<font color=#<<$mas_font>>>"I thought so. What a nice submissive slut you are. I have an offer for you.."</font>'
  309. '<font color=#<<$pcs_font>>>"An offer?"</font> you didn''t know what to expect, but this is even more surprising.'
  310. '<font color=#<<$mas_font>>>"Yes. You know, this is not just a hotel. This is something more."</font>'
  311. '<font color=#<<$pcs_font>>>"What do you mean?"</font>'
  312. '<font color=#<<$mas_font>>>"We have use for girls like you. Our main business is downstairs, bellow the hotel in an old bunker."</font>'
  313. '<font color=#<<$mas_font>>>"It is a brothel."</font>'
  314. '<font color=#<<$pcs_font>>>"A whorehouse? Really?"</font>'
  315. '<font color=#<<$mas_font>>>"Not a common brothel like the many others. This one is special."</font>'
  316. '<font color=#<<$pcs_font>>>"How?"</font>'
  317. '<font color=#<<$mas_font>>>"It is a sado maso brothel. Whores get used by dominant males and vice versa."</font>'
  318. '<font color=#<<$pcs_font>>>"Oh.. OK. And the offer?"</font> you are confused.'
  319. '<font color=#<<$mas_font>>>"Well you just proved you like to be bound, abused, raped and humiliated. You''ve got the perfect CV. I want you to be one of our girls."</font>'
  320. '<font color=#<<$pcs_font>>>"Uhm... I, I need to think about it. I don''t know if I like it THAT much."</font>'
  321. '<font color=#<<$mas_font>>>"That''s OK. We don''t force our girls to work here. Most of the time at least.. But the pay is above anything you can get anywhere these days!"</font>'
  322. '<font color=#<<$pcs_font>>>"OK, I understand. I''ll think it through.."</font>'
  323. 'He looks at you as if he''s trying to read in you:'
  324. '<font color=#<<$mas_font>>>"Oh I think you will come soon enough. When you do so, go to whoever is behind the bar and tell him that you want a special drink. The Blue Blooded Russian. Everything else will be taken care of."</font>'
  325. 'He seems to be finished talking to you. On his way back to the door he tossses a pile of your clothes your way. Without a word he shuts the door and is gone.'
  326. hotelWhore = 1
  327. else
  328. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/abusedFace.jpg"></center>'
  329. *nl
  330. '<font color=#<<$mas_font>>>"Well bitch than you should not get wasted in a bar in middle of nowhere, full of strangers you don''t know!"</font>'
  331. '<font color=#<<$pcs_font>>>"You moron! Rapist! Idiot!"</font>'
  332. '<font color=#<<$mas_font>>>"Fuck off you slut. Take your clothes a begone!"</font>'
  333. 'You furiously take your clothes, put them on and run away through the door back to the lobby.'
  334. end
  335. stage = 0
  336. act 'Continue':gt 'brothel', 'lobby'
  337. end
  338. end
  339. if $ARGS[0] = 'bar:order:password':
  340. '<h3>Hotel Bar</h3>'
  341. '<h5>Ordering a drink: The Blue Blooded Russian</h5>'
  342. *nl
  343. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/whisper.jpg"></center>'
  344. *nl
  345. '"Oh I see. Come with me please." he leads you to the lobby, looking for the Errand Boy. He finds him leaning on a wall near the elevator.'
  346. '"This young miss is here for the special drink. The Blue Blooded Bussian."'
  347. 'The boy just nods and saying not a word leads you to the elevator. "Please look the other way, I now have to enter the combination."'
  348. act 'Turn around and don''t look':gt 'brothel','brothel:elevator'
  349. end
  350. if $ARGS[0] = 'brothel:elevator':
  351. '<h3>Elevator</h3>'
  352. *nl
  353. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/hotelElevator.jpg"></center>'
  354. *nl
  355. 'You arrive to a level which you can just guess is underground, beneath the Hotel. Looking at the surroundings it probably was an underground shelter during the Cold War.'
  356. '"Go through the hall to the reception, they will give you instructions." the boy says.'
  357. 'Leaving the elevator you faintly hear murmuring him "Have fun, slut". But maybe it''s just your imagination...'
  358. act 'Go to reception':gt 'brothel','brothel:reception'
  359. end
  360. if $ARGS[0] = 'brothel:reception':
  361. '<h3>Brothel Reception</h3>'
  362. *nl
  363. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/receptionist.jpg"></center>'
  364. *nl
  365. 'Behind the desk sits an older, grey haired man. "Ah, just in time. We lack several girls right now. Which section do you want to attend this time? Just choose one and go to its lobby."'
  366. if custTime > 0:
  367. act 'Ask to get your hard earned wage': gt 'brothel', 'brothel:getPaid'
  368. end
  369. act 'First section':gt 'brothel','brothel:section1:lobby'
  370. !!act 'Second section':gt 'brothel','brothel:section2'
  371. act 'Ask him to let you out': gt 'brothel', 'brothel:leave'
  372. end
  373. if $ARGS[0] = 'brothel:leave':
  374. '<h3>Brothel Reception</h3>'
  375. *nl
  376. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/receptionist.jpg"></center>'
  377. *nl
  378. if $clothingworntype = 'nude':
  379. 'The Receptionist looks up from his desk and gazes upon you: <font color=#<<$rec_font>>>"Didn''t you forget something, whore?"</font>'
  380. 'It takes you few seconds to realize that you are naked! <font color=#<<$pcs_font>>>"Oops..let me get my clothes first, I guess.."</font>'
  381. if $pantyworntype ! 'none':
  382. '<center><img <<$set_imgh>> src="images/pc/clothing/nude.jpg"></center>'
  383. else
  384. '<center><img <<$set_imgh>> src="images/pc/clothing/nude1.jpg"></center>'
  385. end
  386. act 'Go back to suit up': gt 'brothel', 'brothel:section1:girlroom'
  387. else
  388. 'The Receptionist pushes a hidden button, probably signaling the Errand Boy, because in a minute he arrives with the elevator.'
  389. '<font color=#<<$rec_font>>>"Go <<$pcs_firstname>>, you are free to leave."</font>'
  390. act 'Go to the elevator': gt 'brothel', 'lobby'
  391. end
  392. end
  393. if $ARGS[0] = 'brothel:getPaid':
  394. hours = custTime / 60
  395. pay = custTime * payRate / 60
  396. money += pay
  397. gs 'stat'
  398. '<h3>Brothel Reception</h3>'
  399. 'The Receptionist checks something in his book. Probably counting the time you spent working.'
  400. 'He looks up, smiles at you and says <font color=#<<$rec_font>>>"So <<$pcs_firstname>> you have whored for <<custTime>> minutes, that makes <<pay>> RUB."</font>'
  401. custTime = 0
  402. act 'Thank him and leave': gt 'brothel', 'brothel:reception'
  403. end
  404. if $ARGS[0] = 'brothel:section1:lobby':
  405. $sect = 'section1'
  406. '<h3>Brothel Lobby</h3>'
  407. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/lobby.jpg"></center>'
  408. 'A section 1 lobby. Spacy hall-like room, leading to several smaller rooms.'
  409. 'Comfortable couch is in the middle of the lobby, next to it are several cages sized just for a smaller person.'
  410. 'One of the doors also leads to a <a href="exec:gt ''brothel'', ''brothel:section1:girlroom''">room</a> made for the girls. '
  411. if (klismaday = daystart and (pcs_leghair <= 3 or pcs_pubes <= 3) and pcs_hairbsh = 1 and pcs_makeup >= 1 and pcs_lipbalm >= 1 and $pantyworntype = 'none' and $clothingworntype = 'nude' and (cumloc[1] = 0 and cumloc[4] = 0 and cumloc[8] = 0 and cumloc[9] = 0 and cumloc[10] = 0 and cumloc[11] = 0 and cumloc[15] = 0 and cumloc[16] = 0 and cumloc[17] = 0) and pcs_sweat < 40):
  412. act 'Get in the cage': gt 'brothel', 'brothel:section1:lobby:cage'
  413. else
  414. 'To be able to get working, you need to:'
  415. if pcs_sweat >= 40: '- have a shower.'
  416. if klismaday ! daystart: '- get an enema.'
  417. if (cumloc[1] > 0 or cumloc[4] > 0 or cumloc[8] > 0 or cumloc[9] > 0 or cumloc[10] > 0 or cumloc[15] > 0 or cumloc[16] > 0 or cumloc[17] > 0):'- wash yourself.'
  418. if cumloc[11] > 0: '- wash your face'
  419. if (pcs_leghair > 3 or pcs_pubes > 3): '- shave your pubes and legs.'
  420. if pcs_hairbsh ! 1: '- brush your hair.'
  421. if pcs_makeup < 1: '- put on some makeup.'
  422. if pcs_lipbalm < 1: '- apply some lipbalm.'
  423. if $pantyworntype ! 'none': '- remove your panties.'
  424. if $clothingworntype ! 'nude': '- strip off your clothes.'
  425. end
  426. act 'Go to the girl''s room':gt 'brothel', 'brothel:section1:girlroom'
  427. act 'Go to the reception': gt 'brothel', 'brothel:reception'
  428. end
  429. if $ARGS[0] = 'brothel:section1:girlroom':
  430. gs 'stat'
  431. $locM = 'brothel'
  432. $metka = 'brothel:section1:girlroom'
  433. $this = 'brothel:section1:girlroom'
  434. $metkaM = 'brothel:section1:girlroom'
  435. $location_type = 'bathroom'
  436. $metka = 'brothel:section1:girlroom'
  437. '<h3>Girl room</h3>'
  438. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/brothelRoom.jpg"></center>'
  439. *nl
  440. 'A room made for the working girls, like yourself.'
  441. 'It is equipped with a shower, almost on every wall hangs a large <a href="exec:gt ''mirror'', ''start''">mirror</a>. There is a water cooler beside the door, and some light snacks on the table, in case the girls get hungry or thirsty between sessions.'
  442. 'In a box beneath a table you can take some '+iif(kosmetica < 1,'<a href="exec: kosmetica += 5 & gt ''brothel'', $metka">cosmetics</a>','cosmetics')+' (you have '+kosmetica+') or, '+iif(lipbalm < 1,'<a href="exec: lipbalm += 5 & gt ''brothel'', $metka">lip balm</a>','lip balm')+' (you have '+lipbalm+'), or '+iif(stanok < 1,'<a href="exec: stanok += 5 & gt ''brothel'', $metka">shaving</a>','shaving')+' equipment (you have '+stanok+'), if you don''t have any.'
  443. 'For obvious reasons there is also a box with an '+iif(klisma < 1,'<a href="exec: klisma += 1 & gt ''brothel'', $metka">enema kit</a>','enema kit')+'. A box with some '+iif(painkiller < 1,'<a href="exec: painkiller += 5 & gt ''brothel'', $metka">painkillers</a>','painkillers')+' (you have '+painkiller+') is there, in case someone needs pain relief.'
  444. 'On the table lies a list with instructions, in case you don''t already remember them:'
  445. *nl
  446. '-------------------------------------------------------------------------------------'
  447. ' 1) You are the Slave.'
  448. ' 2) The Client is the Master and can do any practice with the Slave, except specifically named practices in point 3.'
  449. ' 3) The Slave will not be injured in such way that requires hospitalisation or leaves a lasting injury, unless the Slave agrees to such practice voluntarily.'
  450. ' 4) Each session is for safety purposes recorded on a camera. The record is ownership of the Organization.'
  451. ' 5) The Master can hide his/her identity by wearing a mask.'
  452. ' 6) The Slave earns a pay of '+payRate+' RUB for every started hour of a session.'
  453. *nl
  454. 'To begin your work, clean yourself, put on at least vibrant makeup, lip balm, brush your hair and strip of all clothes, then go to the lobby and lock yourself in a cage.'
  455. *nl
  456. '-------------------------------------------------------------------------------------'
  457. *nl
  458. act 'Have a snack (0:15)': gs 'food', 'snack'
  459. act 'Have a glass of water (0:05)':gs 'beverage', 'bev_wat'
  460. act 'Change your clothes':gt 'wardrobe', 'start'
  461. act 'Look in the mirror': gt 'mirror', 'start'
  462. act 'Have a shower':
  463. cls
  464. dynamic $showerdin
  465. gs 'stat'
  466. '<h3>Girl room</h3>'
  467. '<h5>Shower</h5>'
  468. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/brothelShower.jpg"></center>'
  469. ''
  470. '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 to potential clients.'
  471. dynamic $brit
  472. dynamic $dryOff
  473. end
  474. gs 'din_van', 'prvt_pee'
  475. if klismaday < daystart:
  476. act 'Give yourself an enema (0:05)':
  477. '<h3>Girl room</h3>'
  478. '<h5>Enema</h5>'
  479. cla
  480. *clr
  481. cumspclnt = 7
  482. gs 'cum_cleanup'
  483. minut += 5
  484. klismaday = daystart
  485. klismaday1 = 1
  486. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/klisma.jpg"></center>'
  487. *nl
  488. 'You give yourself an enema, feeling clean down there. Your ass is now ready for anal sex without any awkward surprises.'
  489. act 'Finish':gt 'brothel', $metka
  490. end
  491. end
  492. if analplug = 1 and analplugin = 1:
  493. act 'Remove your butt plug (0:05)':
  494. cla
  495. *clr
  496. minut += 5
  497. analplugIN = 0
  498. if pcs_ass < 30:pcs_ass += 1
  499. '<center><img <<$set_imgh>> src="images/pc/body/analplug.jpg"></center>'
  500. *nl
  501. 'You squat and tug gently at the butt plug, gasping as you push it out of you. You can''t help but feel a bit empty, now that it''s out.'
  502. act 'Finish':gt $loc, $metka
  503. end
  504. elseif analplug = 1 and analplugin = 0 and klismaday = daystart:
  505. act 'Insert your butt plug (0:05)':
  506. cla
  507. *clr
  508. minut += 5
  509. analplugIN = 1
  510. if pcs_ass < 10:pcs_ass += 5
  511. if pcs_ass >= 10 and pcs_ass < 20:pcs_ass += rand(1, 2)
  512. if pcs_ass >= 20 and pcs_ass < 30:pcs_ass += rand(0, 1)
  513. '<center><img <<$set_imgh>> src="images/pc/body/analplug.jpg"></center>'
  514. *nl
  515. if butpluguse > 0:'You squat and gently rub the butt plug against your anus, after lubricating it with a bit of saliva. After a short while, you''ve relaxed enough to be able to push it in. This should help with some anal stretching before today''s activities.'
  516. if butpluguse = 0:butpluguse = 1 & '"If I''m not going to use it, then why did I buy it?" you ask yourself. You look at the butt plug for a while, thinking "It is necessary to start developing my ass, especially in a place like this. You''re slightly embarrassed at the thought for a second, but are then overcome by your horny fantasies. Determined to get the plug all the way in, you slowly press it against your asshole after lubricating it with a bit of saliva. It hurts a bit at first, but once the thickest part is in the rest follows rather easily. Patting yourself on your ass once it''s in.'
  517. act 'Finish':gt $loc, $metka
  518. end
  519. end
  520. if vibrator = 1 and vibratorIN = 1:
  521. act 'Remove the vibrator (0:05)':
  522. cla
  523. *clr
  524. minut += 5
  525. vibratorIN = 0
  526. if pcs_vag < 30:pcs_vag += 1
  527. '<center><img <<$set_imgh>> src="images/shared/accessories/toys/vibrator.jpg"></center>'
  528. *nl
  529. 'You spread your legs and take the vibrator out of your pussy, letting out a slight moan as you do so. You feel somewhat empty now.'
  530. act 'Finish':gt $loc, $metka
  531. end
  532. elseif vibrator = 1 and vibratorIN = 0 and pcs_vag ! 0:
  533. act 'Insert the vibrator in your vagina (0:05)':
  534. cla
  535. *clr
  536. minut += 5
  537. vibratorIN = 1
  538. if pcs_vag < 30:pcs_vag += 2
  539. '<center><img <<$set_imgh>> src="images/shared/accessories/toys/vibrator.jpg"></center>'
  540. *nl
  541. 'You spread your legs and slowly insert the vibrator in your pussy, hoping the added arrousal will aid with today''s activities.'
  542. act 'Finish':gt $loc, $metka
  543. end
  544. end
  545. dynamic $tampon
  546. dynamic $quickwash
  547. dynamic $basin
  548. if painkiller > 0 and pain['total'] >0 and pain['killer'] = 0:
  549. act 'Take a painkiller':
  550. pain['killer'] += 1
  551. painkiller -= 1
  552. pcs_hydra += 20
  553. gt 'brothel', $this
  554. end
  555. end
  556. act 'Go back to lobby': gt 'brothel', 'brothel:section1:lobby'
  557. end
  558. if $ARGS[0] = 'brothel:section1:lobby:cage':
  559. '<h3>Brothel Lobby</h3>'
  560. '<h5>Slave cage</h5>'
  561. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/slaveincage.jpg"></center>'
  562. 'You are locked in a cage, like an animal. The bars are cold on touch, stressing the feeling of helplesness even more.'
  563. act 'Wait for a client': gt 'brothel', 'brothel:section1:lobby:cage:client'
  564. act 'Signal the receptionist that you want to leave': gt 'brothel', 'brothel:section1:lobby:cage:leave'
  565. end
  566. if $ARGS[0] = 'brothel:section1:lobby:cage:leave':
  567. '<h3>Brothel Lobby</h3>'
  568. '<h5>Slave cage: receptionist comes</h5>'
  569. 'He unlocks the self-locking mechanism from outside and let''s you crawl out.'
  570. '<font color=#<<$rec_font>>>"Changed your mind, girl? That''s not what we like, you know?"</font>'
  571. brothelCredit -= 1
  572. act 'Say an excuse and leave': gt 'brothel', 'brothel:section1:girlroom'
  573. end
  574. if $ARGS[0] = 'brothel:section1:lobby:cage:client':
  575. '<h3>Brothel Lobby</h3>'
  576. '<h5>Slave cage: a client has arrived</h5>'
  577. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/slaveincageclient.jpg"></center>'
  578. orgasmMeter = 0
  579. MasterType = rand(1, 2)
  580. if MasterType = 1 and age < 18:
  581. rageMeter = rand(10, 25)
  582. '<font color=#'+$mas_font+'>"Ahh, my pet is already in its place I see."</font>'
  583. 'He scans you through the bars with hungry eyes.'
  584. '<font color=#'+$mas_font+'>"Hmm, she looks young, exactly as I ordered. What is your age, slave?"</font>'
  585. '<font color=#<<$pcs_font>>>"I.. I am 18, Master."</font>'
  586. '<font color=#'+$mas_font+'>"No, tell me your true age, girl."</font>'
  587. '<font color=#<<$pcs_font>>>"Well.. it''s '+age+' years, Master."</font>'
  588. '<font color=#'+$mas_font+'>"Good, very good. Now let us go."</font>'
  589. elseif MasterType = 1 and age >= 18:
  590. rageMeter = 50
  591. '<font color=#'+$mas_font+'>"Ahh, my pet is already in its place I see."</font>'
  592. 'He scans you through the bars with hungry eyes.'
  593. '<font color=#'+$mas_font+'>"Hmm, she doesn''t look as young as I expected. What is your age, slave?"</font>'
  594. '<font color=#<<$pcs_font>>>"I.. I am '+age+', Master.</font>'
  595. 'He turns pale and is obviously annoyed.'
  596. '<font color=#<<$pcs_font>>>"Idiots. I told them what I want, and they delivered me this. Bad for you slut, you will feel the cost of their failure."</font>'
  597. '<font color=#'+$mas_font+'>"Let''s go you walking set of holes!"</font>'
  598. elseif MasterType = 2:
  599. rageMeter = rand(25,40)
  600. 'The client comes to your cage, not saying a word.'
  601. 'He unlocks the cage and harshly takes you by the collar, attaching a leash, leading you to one of the playrooms.'
  602. end
  603. act 'Be led out of the cage': gt 'brothel', 'brothel:section1:session:start'
  604. end
  605. if $ARGS[0] = 'brothel:section1:session:start':
  606. '<h3>Playroom</h3>'
  607. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/playroom.jpg"></center>'
  608. 'This room is designed for any perverted action you could think of. The thick walls indicate it is soundproof, though the walls are painted with smooth coating, probably to be easily washable.'
  609. 'It is quite spacy, in each corner there is a different bounding device. Next to the already locked doors lies large boxes with who-knows-what kinds of devices.'
  610. 'The only thing that connects you with the outside are cameras in each corner of the room, watchfully recording all that happens here.'
  611. if rageMeter <= 100:
  612. '<font color=#'+$mas_font+'>"So what will we do today, my little painslut?"</font>'
  613. act 'Be quiet and await what''s next': gt 'brothel', 'brothel:section1:session:masterChooses'
  614. !act 'Suggest an action': gt 'brothel', 'brothel:section1:session:slaveChooses'
  615. else
  616. 'Without a word Master leads you to a device..'
  617. act 'Continue': gt 'brothel', 'brothel:section1:session:masterChooses'
  618. end
  619. end
  620. if $ARGS[0] = 'brothel:section1:session:slaveChooses':
  621. '<h3>Playroom</h3>'
  622. '<h5>You decided to suggest what your Master should do with you..</h5>'
  623. 'You ask him: <font color=#<<$pcs_font>>>"Master, please.."</font>'
  624. !!act '..let''s just have us sex and see where it leads':
  625. !!act '..just bind me and use my holes':
  626. !!act '..I''ve been a bad girl, I should be punished':
  627. !!act '..I need to recharge my batteries':
  628. !!act '..I''m so thirsty, I could use a bit of water':
  629. !!act '..I am so tight, I need some exercise':
  630. act 'Reconsider and be quiet': gt 'brothel', 'brothel:section1:session:masterChooses'
  631. end
  632. if $ARGS[0] = 'brothel:section1:session:masterChooses':
  633. stage = 1
  634. mas_dec = rand(1, 3)
  635. if mas_dec = 1:
  636. $actType = 'electricity'
  637. elseif mas_dec = 2:
  638. $actType = 'titTorture'
  639. elseif mas_dec = 3:
  640. $actType = 'boundPlay'
  641. end
  642. $subloc = 'brothel:section1:session:play'
  643. gt 'brothel', $subloc
  644. end
  645. if $ARGS[0] = 'brothel:section1:session:play':
  646. $base = 'brothel:section1:session:play'
  647. $sessionB = $base
  648. !too much rage or orgasm - client is too aroused and masturbates to your face, finishing the session
  649. if rageMeter = 100:
  650. gt 'brothel', '<<$base>>:ragefinish'
  651. end
  652. if $actType = 'boundPlay':
  653. analplay = 0
  654. if orgasmMeter = 100:
  655. 'He finally builds up the orgasm and is ready to deliver his seed!'
  656. fin = rand (1, 4)
  657. if fin = 1:
  658. $finType = 'missionary:anal'
  659. elseif fin = 2:
  660. $finType = 'missionary:vaginal'
  661. elseif fin = 3:
  662. $finType = 'face:mouth'
  663. elseif fin = 4:
  664. $finType = 'face:face'
  665. end
  666. $subloc = '<<$base>>:finish'
  667. gt 'brothel', $subloc
  668. end
  669. if stage = 1:
  670. $subloc = '<<$base>>:lieOnBack'
  671. stage = 2
  672. gt 'brothel', $subloc
  673. elseif stage = 2:
  674. $subloc = '<<$base>>:tiedOnBack'
  675. stage = 3
  676. gt 'brothel', $subloc
  677. elseif stage = 3:
  678. actionRand = rand (1, 8)
  679. if actionRand = 1:$sl = 'tiedOnBackFuckMouth'
  680. if actionRand = 2:$sl = 'tiedOnBackFuckAnal'
  681. if actionRand = 3:$sl = 'tiedOnBackFuckVaginal'
  682. if actionRand = 4:$sl = 'tiedOnBackTease'
  683. if actionRand = 5:$sl = 'tiedOnBackFistAnal'
  684. if actionRand = 6:$sl = 'tiedOnBackVibroPussy'
  685. if actionRand = 7:$sl = 'tiedOnBackWhipPussy'
  686. $subloc = '<<$base>>:<<$sl>>'
  687. gt 'brothel', $subloc
  688. end
  689. end
  690. if $actType = 'titTorture':
  691. analplay = 0
  692. if orgasmMeter = 100:
  693. '<font color=#'+$mas_font+'>So my walking pair of tortured tits, ready for the next step?</font>'
  694. fin = rand (1, 4)
  695. if fin = 1:
  696. $finType = 'behind:anal'
  697. elseif fin = 2:
  698. $finType = 'behind:vaginal'
  699. elseif fin = 3:
  700. $finType = 'face:mouth'
  701. elseif fin = 4:
  702. $finType = 'face:face'
  703. end
  704. $subloc = '<<$base>>:finish'
  705. gt 'brothel', $subloc
  706. end
  707. if stage = 1:
  708. $subloc = '<<$base>>:hangbyneck'
  709. stage = 2
  710. gt 'brothel', $subloc
  711. elseif stage = 2:
  712. Pkind = rand (1, 4)
  713. if Pkind = 1:
  714. $subloc = '<<$base>>:whiptits'
  715. elseif Pkind = 2:
  716. $subloc = '<<$base>>:canetits'
  717. elseif Pkind = 3:
  718. $subloc = '<<$base>>:pinchtits'
  719. elseif Pkind = 4:
  720. $subloc = '<<$base>>:punchtits'
  721. end
  722. stage = 3
  723. gt 'brothel', $subloc
  724. elseif stage = 3:
  725. $subloc = '<<$base>>:pullnipples'
  726. stage = 4
  727. gt 'brothel', $subloc
  728. elseif stage = 4:
  729. $subloc = '<<$base>>:bindtits'
  730. stage = 5
  731. gt 'brothel', $subloc
  732. elseif stage = 5:
  733. $subloc = '<<$base>>:pinchboundtits'
  734. stage = 6
  735. gt 'brothel', $subloc
  736. elseif stage = 6:
  737. $subloc = '<<$base>>:hangbytits'
  738. stage = 7
  739. gt 'brothel', $subloc
  740. elseif stage = 7:
  741. hardCh = rand (0, 100)
  742. if hardCh < prob_hardCh:
  743. $subloc = '<<$base>>:nailsandneedlestits'
  744. gt 'brothel', $subloc
  745. else
  746. stage = 0
  747. orgasmMeter = 100
  748. gt 'brothel', $sessionB
  749. end
  750. end
  751. end
  752. if $actType = 'electricity':
  753. analplay = 1
  754. if orgasmMeter = 100:
  755. '<font color=#'+$mas_font+'>So my little lightbulp, ready for the next step?</font>'
  756. fin = rand (1, 4)
  757. if fin = 1:
  758. $finType = 'behind:anal'
  759. elseif fin = 2:
  760. $finType = 'behind:vaginal'
  761. elseif fin = 3:
  762. $finType = 'face:mouth'
  763. elseif fin = 4:
  764. $finType = 'face:face'
  765. end
  766. $subloc = '<<$base>>:finish'
  767. gt 'brothel', $subloc
  768. end
  769. if stage = 1:
  770. $subloc = '<<$base>>:asshigh'
  771. stage = 2
  772. gt 'brothel', $subloc
  773. elseif stage = 2 and analplugIN = 0:
  774. $subloc = '<<$base>>:buttplug'
  775. stage = 3
  776. gt 'brothel', $subloc
  777. elseif stage = 2 and analplugIN = 1:
  778. stage = 3
  779. gt 'brothel', $subloc
  780. elseif stage = 3:
  781. stage = 4
  782. $subloc = '<<$base>>:electrodesAss'
  783. gt 'brothel', $subloc
  784. elseif stage = 4:
  785. say = rand (1, 3)
  786. if say = 1:
  787. '<font color=#'+$mas_font+'>"Let''s shine, my little slut!"</font>'
  788. elseif say = 2:
  789. '<font color=#'+$mas_font+'>"SCREAM BITCH!"</font>'
  790. elseif say = 3:
  791. '<font color=#'+$mas_font+'>"HAHAHAHAHAHHAAAAA!!!!"</font>'
  792. end
  793. 'With these words the Client turns the power on.'
  794. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/togglepowerbutton.jpg"></center>'
  795. stage = 5
  796. $subloc = '<<$base>>:electrocuteAss'
  797. act 'Continue': gt 'brothel' , $subloc
  798. elseif stage = 5:
  799. if like = 1:
  800. '<font color=#'+$mas_font+'>YES! That''s all a slut like you needs to feel!</font>'
  801. '<font color=#'+$mas_font+'>But I think you still don''t have enough..</font>'
  802. stage = 4
  803. act 'Continue':gt 'brothel', $sessionB
  804. elseif like = 0:
  805. '<font color=#'+$mas_font+'>WHAT!? I can''t hear you well! I think I''ll just turn this toggle to a higher setting, just to be sure!</font>'
  806. '<font color=#'+pcs_font+'>No please, everything but THAT! Pleeaase!</font>'
  807. stage = 6
  808. gt 'brothel', $sessionB
  809. end
  810. elseif stage = 6:
  811. if like = 1:
  812. stage = 5
  813. gt 'brothel' , $sessionB
  814. elseif like = 0:
  815. stage = 7
  816. $subloc = '<<$base>>:electrocuteAssMore'
  817. gt 'brothel' , $subloc
  818. end
  819. elseif stage = 7:
  820. if like = 1:
  821. stage = 5
  822. gt 'brothel' , $sessionB
  823. elseif like = 0:
  824. stage = 8
  825. gt 'brothel' , $sessionB
  826. end
  827. elseif stage >= 8:
  828. $subloc = '<<$base>>:electrocuteAssMax'
  829. gt 'brothel', $subloc
  830. end
  831. end
  832. !too much pain - Sveta pushes out the anal plug by accident
  833. if (pain['total'] > 50 and analplugIN = 1):
  834. chPlug = rand(0, 100)
  835. if chPlug < prob_chPlug:
  836. gt 'brothel', '<<$base>>:pushplugout'
  837. end
  838. end
  839. prob = rand (0, 100)
  840. if analplugIN = 0 and prob < 30 and analplay = 1:
  841. gt 'brothel', '<<$base>>:buttplug'
  842. end
  843. end
  844. if $ARGS[0] = 'brothel:section1:session:play:finish':
  845. $this = 'brothel:section1:session:play:finish'
  846. if $finType = 'behind:vaginal':
  847. custTime += 15
  848. gs 'arousal', 'vaginal', 15, 'bound', 'sub', 'prostitution', 'humiliation', 'rough'
  849. gs 'arousal', 'end'
  850. gs 'stat'
  851. '<h3>Playroom</h3>'
  852. *nl
  853. th = rand (1, 2)
  854. if step = 0:
  855. 'The client now leaves all the toys behind and goes behind you. Unable to see him you can just guess what''s he doing behind your bare ass.'
  856. 'He puts his hands on your asscheeks, spreading them wide to get better look on both your holes..'
  857. 'You start to shake as you know what''s coming..'
  858. if analplugIN = 1:
  859. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/spreadAssWithPlugFromBehind.jpg"></center>'
  860. else
  861. '<center><video autoplay loop src="images/locations/shared/brothel/spreadAssFromBehind.mp4"></video></center>'
  862. end
  863. step = 1
  864. act 'Continue':gt 'brothel', $this
  865. elseif step = 1:
  866. ! pls not in anus
  867. if th = 1:
  868. if analplugIN = 1:
  869. 'Both your pussy and your anus are too well on display.. You say to yourself: <font color=#<<$pcs_font>>>(At least he won''t put it in my anus.. the plug is already there..)</font>'
  870. 'Right at that moment the Client penetrates your pussy and thrusts his pole up to the rim!'
  871. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/insertVaginalWithPlugFromBehind.jpg"></center>'
  872. else
  873. 'Both your pussy and your anus are too well on display.. You say to yourself: <font color=#<<$pcs_font>>>(Oh just please just don''t put it in my poor anus!)</font>'
  874. 'Right at that moment the Client penetrates your pussy and thrusts his pole up to the rim!'
  875. '<center><video autoplay loop src="images/locations/shared/brothel/insertVaginalFromBehind.mp4"></video></center>'
  876. end
  877. !pls not in pussy
  878. elseif th = 2:
  879. 'Both your pussy and your anus are well on display.. You say to yourself: <font color=#<<$pcs_font>>>(Please just don''t put it in my sore pussy!)</font>'
  880. 'Right at that moment the Client pushes his phallus in your tender pussy.. and all the way in!'
  881. if analplugIN = 1:
  882. 'The pain is intensified as the previously inserted anal plug is still in its place, rubbing the thin wall between your vagina and intestines.'
  883. 'The Client seems to disregard that, as he pounds your pussy even deeper..'
  884. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/insertVaginalWithPlugFromBehind.jpg"></center>'
  885. '<font color=#<<$pcs_font>>>"Owwwwuuch! Pleaaase no no take it ouuuut! Maaaster pleaaase!"</font>'
  886. 'Just as you say that the next pound of Client''s dick pushes out the plug, which falls out down between your bound legs.'
  887. analplugIN = 0
  888. gs 'pain', 2, 'pussy', 'stretch'
  889. gs 'stat'
  890. else
  891. '<center><video autoplay loop src="images/locations/shared/brothel/insertVaginalFromBehind.mp4"></video></center>'
  892. end
  893. end
  894. step = 2
  895. act 'Continue': gt 'brothel', $this
  896. elseif step = 2:
  897. '<font color=#'+$mas_font+'>"Now bitch I''m gonna ride you hard and deep!"</font>'
  898. 'With these words the Client increases his pace, fucking your poor pussy violently, roughly and very, very deep...'
  899. '<center><video autoplay loop src="images/locations/shared/brothel/fuckVaginalFromBehind.mp4"></video></center>'
  900. step = 3
  901. act 'Endure it': gt 'brothel', $this
  902. elseif step = 3:
  903. 'After what seems as eternity, the Client seems to be closing to his orgasm.'
  904. '<font color=#<<$pcs_font>>>"Yes Master, please fill me with your cum!"</font> You shout from the rest of your remaining energy, trying to get him cum as soon as possible.'
  905. 'It works as your words arouse him even more and finally he pumps all his vile seed deep into your vagina...'
  906. '<font color=#<<$pcs_font>>>(Yuk..I think it went even to my uterus! That''s gross!)</font>'
  907. '<center><video autoplay loop src="images/locations/shared/brothel/cumInPussyFromBehind.mp4"></video></center>'
  908. step = 0
  909. $subloc = '<<$base>>:end'
  910. gs 'cum_call', '', 'Master'
  911. act 'Continue': gt 'brothel', $subloc
  912. end
  913. elseif $finType = 'behind:anal':
  914. custTime += 15
  915. gs 'arousal', 'anal', 15, 'bound', 'sub', 'prostitution', 'humiliation', 'rough'
  916. gs 'arousal', 'end'
  917. gs 'stat'
  918. '<h3>Playroom</h3>'
  919. *nl
  920. th = rand (1, 2)
  921. if step = 0:
  922. 'The client now leaves all the toys behind and goes behind you. Unable to see him you can just guess what''s he doing behind your bare ass.'
  923. 'He puts his hands on your asscheeks, spreading them wide to get better look on both your holes..'
  924. 'You start to shake as you know what''s coming..'
  925. if analplugIN = 1:
  926. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/spreadAssWithPlugFromBehind.jpg"></center>'
  927. else
  928. '<center><video autoplay loop src="images/locations/shared/brothel/spreadAssFromBehind.mp4"></video></center>'
  929. end
  930. step = 1
  931. act 'Continue':gt 'brothel', $this
  932. elseif step = 1:
  933. ! pls not in anus
  934. if th = 1:
  935. if analplugIN = 1:
  936. 'Both your pussy and your anus are too well on display.. You say to yourself: <font color=#<<$pcs_font>>>(At least he won''t put it in my anus.. the plug is already there..)</font>'
  937. 'But as if you said your thought aloud, in precisely that moment the Client sticks a warm hard pole right in your ass.. up to his rim!'
  938. '<center><video autoplay loop src="images/locations/shared/brothel/fuckAnalWithPlugFromBehind.mp4"></video></center>'
  939. '<font color=#<<$pcs_font>>>"Owwwwuuch! Pleaaase no no take it ouuuut! Maaaster pleaaase!"</font>'
  940. 'Just as you say that the next pound of Client''s dick pushes out the plug, which falls out down between your bound legs.'
  941. 'The Client seems to disregard that, as he stretches your anus even more with his fallus.. Or maybe he does it on purpose!'
  942. analplugIN = 0
  943. gs 'pain', 2, 'anus', 'stretch'
  944. gs 'stat'
  945. else
  946. 'Both your pussy and your anus are too well on display.. You say to yourself: <font color=#<<$pcs_font>>>(Oh just please just don''t put it in my poor anus!)</font>'
  947. 'But as if you said your thought aloud, in precisely that moment the Client sticks a warm hard pole right in your ass.. up to his rim!'
  948. '<center><video autoplay loop src="images/locations/shared/brothel/fuckAnalFromBehind2.mp4"></video></center>'
  949. '<font color=#<<$pcs_font>>>"Owwwwuuch! Pleaaase no take it ouuuut! Maaaster please not in my ass!"</font>'
  950. end
  951. !pls not in pussy
  952. elseif th = 2:
  953. 'Both your pussy and your anus are well on display.. You say to yourself: <font color=#<<$pcs_font>>>(Please just don''t put it in my sore pussy!)</font>'
  954. 'Ironically you actually sigh in relief as the Client sticks his warm yet hard pole in your anus and not your pussy.'
  955. if analplugIN = 1:
  956. 'But you entirely forgot about that thing already inside you!'
  957. 'The pain is intensified as the previously inserted anal plug is still in its place...in your ass!'
  958. 'The Client seems to disregard that, as he stretches your anus even more with his fallus..'
  959. '<center><video autoplay loop src="images/locations/shared/brothel/fuckAnalWithPlugFromBehind.mp4"></video></center>'
  960. '<font color=#<<$pcs_font>>>"Owwwwuuch! Pleaaase no no take it ouuuut! Maaaster pleaaase!"</font>'
  961. 'Just as you say that the next pound of Client''s dick pushes out the plug, which falls out down between your bound legs.'
  962. analplugIN = 0
  963. gs 'pain', 4, 'anus', 'stretch'
  964. gs 'stat'
  965. else
  966. '<center><video autoplay loop src="images/locations/shared/brothel/fuckAnalFromBehind.mp4"></video></center>'
  967. end
  968. end
  969. step = 2
  970. act 'Continue': gt 'brothel', $this
  971. elseif step = 2:
  972. '<font color=#'+$mas_font+'>"Now bitch I''m gonna ride you hard and deep!"</font>'
  973. 'With these words the Client increases his pace, fucking your poor anus violently, roughly and very, very deep...'
  974. '<center><video autoplay loop src="images/locations/shared/brothel/fuckAnalFromBehind.mp4"></video></center>'
  975. step = 3
  976. act 'Endure it': gt 'brothel', $this
  977. elseif step = 3:
  978. 'After what seems as eternity, the Client seems to be closing to his orgasm.'
  979. '<font color=#<<$pcs_font>>>"Yes Master, please fill me with your cum!"</font> You shout from the rest of your remaining energy, trying to get him cum as soon as possible.'
  980. 'It works as your words arouse him even more and finally he pumps all his vile seed deep into your intestines... <font color=#<<$pcs_font>>>(Finally..)</font>'
  981. '<center><video autoplay loop src="images/locations/shared/brothel/cumInAssFromBehind.mp4"></video></center>'
  982. step = 0
  983. $subloc = '<<$base>>:end'
  984. gs 'cum_call', 'anus', 'Master'
  985. act 'Continue': gt 'brothel', $subloc
  986. end
  987. elseif $finType = 'missionary:vaginal':
  988. custTime += 5
  989. gs 'arousal', 'vaginal', 5, 'bound', 'sub', 'prostitution', 'humiliation', 'rough'
  990. gs 'arousal', 'end'
  991. gs 'pain', 2, 'cervix', 'ache'
  992. gs 'stat'
  993. '<h3>Playroom</h3>'
  994. *nl
  995. '<center><video autoplay loop src="images/locations/shared/brothel/cumMissionaryVaginal.mp4"></video></center>'
  996. *nl
  997. 'Being still bound on your back, you finally expect it to end.'
  998. 'The Client increases his pace and groaning cums into your vagina, releasing the hot sperm down your pussy, reaching even to your cervix..'
  999. $subloc = '<<$base>>:end'
  1000. gs 'cum_call', '', 'Master'
  1001. act 'Continue': gt 'brothel', $subloc
  1002. elseif $finType = 'missionary:anal':
  1003. custTime += 5
  1004. gs 'arousal', 'anal', 5, 'bound', 'sub', 'prostitution', 'humiliation', 'rough'
  1005. gs 'arousal', 'end'
  1006. gs 'pain', 1, 'anus', 'stretch'
  1007. gs 'stat'
  1008. '<h3>Playroom</h3>'
  1009. *nl
  1010. '<center><video autoplay loop src="images/locations/shared/brothel/cumMissionaryAnal.mp4"></video></center>'
  1011. *nl
  1012. 'Being still bound on your back, you finally expect it to end.'
  1013. 'The Client increases his pace and groaning cums into your anus, releasing the hot sperm inside the intestines.'
  1014. $subloc = '<<$base>>:end'
  1015. gs 'cum_call', 'anus', 'Master'
  1016. act 'Continue': gt 'brothel', $subloc
  1017. elseif $finType = 'face:mouth':
  1018. custTime += 5
  1019. gs 'arousal', 'bj', 5, 'bound', 'sub', 'prostitution', 'humiliation', 'rough'
  1020. gs 'arousal', 'end'
  1021. gs 'pain', 2, 'throat', 'stretch'
  1022. gs 'stat'
  1023. '<h3>Playroom</h3>'
  1024. *nl
  1025. if step = 0:
  1026. 'The client now leaves all the toys behind and goes to you.'
  1027. 'He starts to caress your face.. unable to move you just hold and endure his touches..'
  1028. 'You start to shake as you know what''s coming..'
  1029. *nl
  1030. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/caressFace.jpg"></center>'
  1031. step = 1
  1032. act 'Continue':gt 'brothel', $this
  1033. elseif step = 1:
  1034. 'As you were afraid of, the Client takes his cock and thrusts it in your mouth: <font color=#<<$mas_font>>"Now let''s use this mouthy hole!"</font>'
  1035. 'Unable even to react or moan, you are plugged with his meat, choking and dribbling all around..'
  1036. *nl
  1037. '<center><video autoplay loop src="images/locations/shared/brothel/fuckFaceTied.mp4"></video></center>'
  1038. step = 2
  1039. act 'Continue':gt 'brothel', $this
  1040. elseif step = 2:
  1041. 'His pace is increasing as orgasms builds in his cock.'
  1042. 'The warm feel of his cum surprises you..'
  1043. 'Most of the cum penetrates directly in your throat and down to the belly, the rests flows out around your mouth and his dick..'
  1044. *nl
  1045. '<center><video autoplay loop src="images/locations/shared/brothel/cumInMouth.mp4"></video></center>'
  1046. step = 0
  1047. $subloc = '<<$base>>:end'
  1048. gs 'cum_call', 'mouth', 'Master'
  1049. act 'Continue': gt 'brothel', $subloc
  1050. end
  1051. elseif $finType = 'face:face':
  1052. custTime += 15
  1053. gs 'arousal', 'bj', 15, 'bound', 'sub', 'prostitution', 'humiliation', 'rough'
  1054. gs 'arousal', 'end'
  1055. gs 'stat'
  1056. '<h3>Playroom</h3>'
  1057. *nl
  1058. if step = 0:
  1059. 'The client now leaves all the toys behind and goes to you.'
  1060. 'He starts to caress your face.. unable to move you just hold and endure his touches..'
  1061. 'You start to shake as you know what''s coming..'
  1062. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/caressFace.jpg"></center>'
  1063. step = 1
  1064. act 'Continue':gt 'brothel', $this
  1065. elseif step = 1:
  1066. 'As you were afraid of, the Client takes his cock and thrusts it in your mouth: <font color=#<<$mas_font>>"Now let''s use this mouthy hole!"</font>'
  1067. 'Unable even to react or moan, you are plugged with his meat, choking and dribbling all around..'
  1068. '<center><video autoplay loop src="images/locations/shared/brothel/fuckFaceTied.mp4"></video></center>'
  1069. step = 2
  1070. act 'Continue':gt 'brothel', $this
  1071. elseif step = 2:
  1072. 'His pace is increasing as orgasms builds in his cock.'
  1073. 'The warm feel of his cum surprises you as it lands all over your face.'
  1074. 'The sticky white liquid gets in your eyes and nose, slowly dripping around your mouth..'
  1075. '<center><video autoplay loop src="images/locations/shared/brothel/cumOnFace.mp4"></video></center>'
  1076. step = 0
  1077. $subloc = '<<$base>>:end'
  1078. gs 'cum_call', 'face', 'Master'
  1079. act 'Continue': gt 'brothel', $subloc
  1080. end
  1081. end
  1082. end
  1083. if $ARGS[0] = 'brothel:section1:session:play:tiedOnBackFuckMouth':
  1084. $this = 'brothel:section1:session:play:tiedOnBackFuckMouth'
  1085. custTime += 10
  1086. orgasmMeter += 25
  1087. rageMeter += 5
  1088. '<h3>Playroom</h3>'
  1089. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1090. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1091. *nl
  1092. '<center><video autoplay loop src="images/locations/shared/brothel/tiedOnBackFuckMouth.mp4"></video></center>'
  1093. *nl
  1094. 'You are still bound on your back, with hands and kness tied together, exposing both of your holes.'
  1095. 'The Client reaches to you, looking down to your round crotch.'
  1096. '<font color=#<<$pcs_font>>>"So what will it be, slut?"</font>'
  1097. '<font color=#<<$mas_font>>>"Uhm...a fucking of my pussy? Or anus?"</font>'
  1098. '<font color=#<<$pcs_font>>>"Fucking indeed, but neither of those. Open your mouth!"</font>'
  1099. 'You have no option but to do as he wants, opening your lips for his thick phallus.'
  1100. 'You choke, saliva everywhere, but it seems he won''t stop until you either suffocate or until he cums!'
  1101. gs 'arousal', 'bj', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1102. gs 'arousal', 'end'
  1103. gs 'pain', 2, 'throat', 'stretch'
  1104. gs 'stat'
  1105. act 'Continue': gt 'brothel', $sessionB
  1106. end
  1107. if $ARGS[0] = 'brothel:section1:session:play:tiedOnBackFuckAnal':
  1108. $this = 'brothel:section1:session:play:tiedOnBackFuckAnal'
  1109. custTime += 10
  1110. orgasmMeter += 25
  1111. rageMeter += 5
  1112. '<h3>Playroom</h3>'
  1113. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1114. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1115. *nl
  1116. '<center><video autoplay loop src="images/locations/shared/brothel/tiedOnBackFuckAnal.mp4"></video></center>'
  1117. *nl
  1118. 'You are still bound on your back, with hands and kness tied together, exposing both of your holes.'
  1119. 'The Client reaches to you, looking down to your round crotch.'
  1120. '<font color=#<<$pcs_font>>>"So what will it be, slut?"</font>'
  1121. 'Before you even try to decide how to react to this straight question, he forces his dick down your...anus!'
  1122. '<font color=#<<$mas_font>>>"Owwwch!"</font>'
  1123. '<font color=#<<$pcs_font>>>"Didn''t expect such a quick entry, did you?"</font>'
  1124. 'But again you are unable to answer, because he starts to pound you so fast and deep, that even an attempt to get a sound out of your mouth is futile.'
  1125. 'You can just helplessly endure the hard fucking he''s giving you..'
  1126. 'As it wasn''t enough, he slaps your tits every now and then, making the whole experience even more hopeless.'
  1127. gs 'arousal', 'anal', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1128. gs 'arousal', 'end'
  1129. gs 'pain', 2, 'breasts', 'slap'
  1130. gs 'stat'
  1131. act 'Continue': gt 'brothel', $sessionB
  1132. end
  1133. if $ARGS[0] = 'brothel:section1:session:play:tiedOnBackFuckVaginal':
  1134. $this = 'brothel:section1:session:play:tiedOnBackFuckVaginal'
  1135. custTime += 10
  1136. orgasmMeter += 25
  1137. rageMeter += 5
  1138. '<h3>Playroom</h3>'
  1139. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1140. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1141. *nl
  1142. '<center><video autoplay loop src="images/locations/shared/brothel/tiedOnBackFuckVaginal.mp4"></video></center>'
  1143. *nl
  1144. 'You are still bound on your back, with hands and kness tied together, exposing both of your holes.'
  1145. 'The Client reaches to you, looking down to your round crotch.'
  1146. '<font color=#<<$pcs_font>>>"So what will it be, slut?"</font>'
  1147. 'Before you even try to decide how to react to this straight question, he forces his dick down your...pussy!'
  1148. '<font color=#<<$mas_font>>>"Owwwch!"</font>'
  1149. '<font color=#<<$pcs_font>>>"Didn''t expect such a quick entry, did you?"</font>'
  1150. 'But again you are unable to answer, because he starts to pound you so fast and deep, that even an attempt to get a sound out of your mouth is futile.'
  1151. 'You can just helplessly endure the hard fucking he''s giving you..'
  1152. 'As it wasn''t enough, he slaps your tits every now and then, making the whole experience even more hopeless.'
  1153. gs 'arousal', 'vaginal', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1154. gs 'arousal', 'end'
  1155. gs 'stat'
  1156. act 'Continue': gt 'brothel', $sessionB
  1157. end
  1158. if $ARGS[0] = 'brothel:section1:session:play:tiedOnBackTease':
  1159. $this = 'brothel:section1:session:play:tiedOnBackTease'
  1160. custTime += 10
  1161. orgasmMeter += 5
  1162. rageMeter += 5
  1163. '<h3>Playroom</h3>'
  1164. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1165. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1166. *nl
  1167. '<center><video autoplay loop src="images/locations/shared/brothel/tiedOnBackTease.mp4"></video></center>'
  1168. *nl
  1169. 'The client circles around you, touching every part of your body as if he were looking for something.'
  1170. 'He starts by exploring both of your holes, stretching the lips and probing the insides.'
  1171. 'Then he twists your nipples around, waiting for you to make an uncomfortable sound.'
  1172. 'After a while he seems to be done, likely looking content with his explorations.'
  1173. 'You notice a large bulge rising from his (still worn) pants.'
  1174. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1175. gs 'arousal', 'end'
  1176. gs 'pain', 2, 'nipples', 'stretch'
  1177. gs 'stat'
  1178. act 'Continue': gt 'brothel', $sessionB
  1179. end
  1180. if $ARGS[0] = 'brothel:section1:session:play:tiedOnBackFistAnal':
  1181. $this = 'brothel:section1:session:play:tiedOnBackFistAnal'
  1182. custTime += 15
  1183. rageMeter += 10
  1184. orgasmMeter += 10
  1185. '<h3>Playroom</h3>'
  1186. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1187. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1188. *nl
  1189. '<center><video autoplay loop src="images/locations/shared/brothel/tiedOnBackFistAnal.mp4"></video></center>'
  1190. *nl
  1191. '<font color=#<<$mas_font>>>"How long dick are you able to take inside your ass, slut?"</font>'
  1192. '<font color=#<<$pcs_font>>>"I..I don''t know master, I have never measured any."</font>'
  1193. '<font color=#<<$mas_font>>>"Then we need to take the measurements, I''d say!"</font>'
  1194. 'He takes a big bottle of lube, squirting it on his hand.'
  1195. '<font color=#<<$pcs_font>>>"No please, this won''t fit in me!"</font>'
  1196. '<font color=#<<$mas_font>>>"How can you know if you didn''t try, dumb cunt?"</font>'
  1197. 'He pushes few finger into your anus right away, causing you a cramp in your abdomen.'
  1198. 'But he doesn''t stop, putting one by one all of his fingers, even the thumb.'
  1199. 'You scream in pain and horror but he pushes even more until finally his hand jumps inside you.'
  1200. '<font color=#<<$mas_font>>>"Now let us see how far can we get!"</font>'
  1201. 'He pushes his hand even more inside, almost the whole elbow is in your intestines now!'
  1202. 'He turns his fist from side to side, making your thin stomach bulge!'
  1203. gs 'arousal', 'anal_fist', 15, 'bound', 'sub', 'prostitution', 'humiliation'
  1204. gs 'arousal', 'end'
  1205. gs 'pain', 3, 'asshole', 'stretch'
  1206. gs 'pain', 2, 'tummy', 'cramp'
  1207. gs 'stat'
  1208. act 'Continue': gt 'brothel', $sessionB
  1209. end
  1210. if $ARGS[0] = 'brothel:section1:session:play:tiedOnBackVibroPussy':
  1211. $this = 'brothel:section1:session:play:tiedOnBackVibroPussy'
  1212. custTime += 15
  1213. orgasmMeter += 10
  1214. rageMeter += 10
  1215. '<h3>Playroom</h3>'
  1216. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1217. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1218. *nl
  1219. '<center><video autoplay loop src="images/locations/shared/brothel/tiedOnBackVibroPussy.mp4"></video></center>'
  1220. *nl
  1221. '<font color=#<<$mas_font>>>"Is your pussy a sensitive one, girl?"</font>'
  1222. '<font color=#<<$pcs_font>>>"I..I would say regularly sensitive, master."</font>'
  1223. '<font color=#<<$mas_font>>>"After this, it will be nothing like regular, haha!"</font>'
  1224. 'With those words his face turns grim - and you feel an unpleasant shiver down your back.'
  1225. 'Your fears come true in few seconds - he takes out a giant vibration device!'
  1226. 'He puts the top of the device right on your exposed pussy lips, also spreading them to get right onto your clitoris.'
  1227. 'Then he slowly reaches for the button with big red ON.'
  1228. gs 'pain', 3, 'clitoris', 'bind'
  1229. $orgasm_or = 'What comes next is too intesive for you, forcing you into an orgasm mixed with pain and loud screams!'
  1230. $orgasm_or = 'yes'
  1231. gs 'arousal', 'vaginal_vibe', 15, 'bound', 'sub', 'prostitution', 'humiliation'
  1232. gs 'arousal', 'end'
  1233. gs 'stat'
  1234. act 'Continue': gt 'brothel', $sessionB
  1235. end
  1236. if $ARGS[0] = 'brothel:section1:session:play:tiedOnBackWhipPussy':
  1237. $this = 'brothel:section1:session:play:tiedOnBackWhipPussy'
  1238. custTime += 10
  1239. rageMeter += 20
  1240. orgasmMeter += 5
  1241. '<h3>Playroom</h3>'
  1242. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1243. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1244. *nl
  1245. '<center><video autoplay loop src="images/locations/shared/brothel/tiedOnBackWhipPussy.mp4"></video></center>'
  1246. *nl
  1247. '<font color=#<<$mas_font>>>"Is your pussy a sensitive one, girl?"</font>'
  1248. '<font color=#<<$pcs_font>>>"I..I would say regularly sensitive, master."</font>'
  1249. '<font color=#<<$mas_font>>>"After this, it will be nothing like regular, haha!"</font>'
  1250. 'With those words his face turn grim - and you get unpleasenat shiver on your back.'
  1251. 'Your fears come true in few seconds - he takes out a whip!'
  1252. 'He puts the top of the whip right on your exposed pussy lips, enjoying the frightened face you are giving him.'
  1253. 'Then suddenly he starts to punish the most sensitive part of your young body, giving you no mercy.'
  1254. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1255. gs 'arousal', 'end'
  1256. gs 'pain', 2, 'labia', 'spank'
  1257. gs 'stat'
  1258. act 'Continue': gt 'brothel', $sessionB
  1259. end
  1260. if $ARGS[0] = 'brothel:section1:session:play:tiedOnBack':
  1261. $this = 'brothel:section1:session:play:tiedOnBack'
  1262. minut += 10
  1263. custTime += 10
  1264. orgasmMeter += 5
  1265. '<h3>Playroom</h3>'
  1266. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1267. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1268. *nl
  1269. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/tiedOnBackKneesHigh.jpg"></center>'
  1270. *nl
  1271. 'He brings some ropes and wooden sticks. <font color=#<<$pcs_font>>>(What does he need those for?)</font>'
  1272. 'Soon you get to know what for - your titties! Not that he ties you, that would be expected, but he secures your tender tits with the wooden sticks, forcing them to get fuller and fuller..'
  1273. 'You end up bound so securely, that all you can do is stare at him in expectation of what is coming next..'
  1274. gs 'pain', 2, 'breasts', 'bind'
  1275. gs 'stat'
  1276. act 'Continue': gt 'brothel', $sessionB
  1277. end
  1278. if $ARGS[0] = 'brothel:section1:session:play:lieOnBack':
  1279. $this = 'brothel:section1:session:play:lieOnBack'
  1280. minut += 5
  1281. custTime += 5
  1282. '<h3>Playroom</h3>'
  1283. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1284. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1285. *nl
  1286. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/onBackKneesHigh.jpg"></center>'
  1287. *nl
  1288. 'The client reaches for your neck, forcefully leading you to one of the beds.'
  1289. 'You know what''s coming..he throws you on the soft pillows: <font color=#<<$mas_font>>>"Lie on your back and put your knees as close to your head as you can!"</font>'
  1290. 'You do as ordered..'
  1291. act 'Continue': gt 'brothel', $sessionB
  1292. end
  1293. if $ARGS[0] = 'brothel:section1:session:play:nailsandneedlestits':
  1294. $this = 'brothel:section1:session:play:nailsandneedlestits'
  1295. minut += 20
  1296. custTime += 20
  1297. '<h3>Playroom</h3>'
  1298. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1299. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1300. if step = 0:
  1301. 'The Client is obviously aroused beyond his expectation: <font color=#<<$mas_font>>>"I have these beautiful nails and needles here with me.."</font>'
  1302. '<font color=#<<$pcs_font>>>"What the..?"</font>'
  1303. '<font color=#<<$mas_font>>>"..and I think those nipples of yours are aching for them!"</font>'
  1304. '<font color=#<<$pcs_font>>>"You can''t be serious! This IS against the rules, let me out!"</font>'
  1305. '<font color=#<<$mas_font>>>"Not if you agree with this. So what will it be?"</font>'
  1306. step = 1
  1307. act 'No way, you''ll never do that': gt 'brothel', $this
  1308. elseif step = 1:
  1309. caneFeetCount = 0
  1310. '<font color=#<<$mas_font>>>"Would a bonus to your pay change your mind?"</font>'
  1311. '<font color=#<<$mas_font>>>"Wh..what bonus?"</font>'
  1312. '<font color=#<<$mas_font>>>"Ah, let''s say 50% more?"</font>'
  1313. act 'Say you''ll do it': step = 2 & bonus = 50 & gt 'brothel', $this
  1314. act 'Say you''ll do it fot 100% more': step = 3 & gt 'brothel', $this
  1315. act 'No way, you''ll never do that': step = 10 & gt 'brothel', $this
  1316. elseif step = 2:
  1317. '<font color=#<<$mas_font>>>"A whore is a whore I see. Now let us begin!"</font>'
  1318. step = 4
  1319. act 'Continue': gt 'brothel', $this
  1320. elseif step = 3:
  1321. agreeCh = rand (0, 100)
  1322. if agreeCh < prob_agreeCh:
  1323. '<font color=#<<$mas_font>>>"I agree bitch! Twice more money for you, twice more pain for your tits! Now let us begin!</font>'
  1324. step = 4
  1325. bonus = 100
  1326. act 'Continue': gt 'brothel', $this
  1327. else
  1328. '<font color=#<<$mas_font>>>"What? Who do you think I am slut? A fucking monger?"</font>'
  1329. '<font color=#<<$pcs_font>>>"I..No! I didn''t mea.."</font>'
  1330. '<font color=#<<$mas_font>>>"Shut up slave! You will agree to it for free NOW!"</font>'
  1331. step = 10
  1332. act 'Continue': gt 'brothel', $this
  1333. end
  1334. elseif step = 4:
  1335. gs 'pain', 3, 'nipples', 'pierce'
  1336. gs 'stat'
  1337. 'He comes with a set of needles of various sizes. Judging by the fancy bag he carries them in, he is not doing this to a first girl..'
  1338. 'One by one he takes them out of the bag and slowly penetrates your aearola.'
  1339. 'It hurts like being at doctor taking blood, but worse, because they don''t take blood from your nipples in the hospital!'
  1340. 'When you think it''s over he takes out one large needle with longer rod than the others..'
  1341. '<font color=#<<$mas_font>>>"Now where do you think this one goes?"</font>'
  1342. 'Not waiting for answer he stabs your nipple in the middle!'
  1343. '<center><video autoplay loop src="images/locations/shared/brothel/needlesintits.mp4"></video></center>'
  1344. *nl
  1345. '<font color=#<<$mas_font>>>"Owwwwwwwwwwwwwwwwww"</font>'
  1346. 'And af it wasn''t already enough, he moves with the needle inside you in and out..'
  1347. '<font color=#<<$pcs_font>>>"Pleaase, no more.. no more.."</font>'
  1348. 'Stepping away he looks at his doing, at your poor tits.'
  1349. '<font color=#<<$mas_font>>>"Yes, no more. No more needles. Now to the nails!"</font>'
  1350. step = 5
  1351. act 'Continue': gt 'brothel', $this
  1352. elseif step = 5:
  1353. gs 'pain', 4, 'breasts', 'pierce'
  1354. gs 'stat'
  1355. 'He pulls out the needles, fast and not caring about the further pain it cuases.'
  1356. 'He let''s you down, lies you on a wooden plank with your tits touching it.'
  1357. 'The hammer and nails in his hands frighten you to another level.'
  1358. '<font color=#<<$pcs_font>>>"Oh my... I thought it through! I don''t agree with this! Take your money back and release me now!"</font>'
  1359. '<font color=#<<$mas_font>>>"Too late bitch! Once you agree there''s no going back! It''s on the camera, remember? Now enjoy!"</font>'
  1360. *nl
  1361. '<center><video autoplay loop src="images/locations/shared/brothel/nailtits.mp4"></video></center>'
  1362. *nl
  1363. '<font color=#<<$pcs_font>>>"Owwwwwwwwwwwwwwwwww"</font>'
  1364. 'The nails are put on your tits and nailed like a one plank to another.'
  1365. step = 6
  1366. act 'Endure': gt 'brothel', $this
  1367. elseif step = 6:
  1368. gs 'pain', 5, 'breasts', 'pierce'
  1369. gs 'stat'
  1370. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/nailedbytitstotheground.jpg"></center>'
  1371. 'At the end of the session, you lie on the wooden ground with your nipples being nailed to it, hanging by your hair and barely staying awake.'
  1372. '<font color=#<<$mas_font>>>"So slut, how did you like it?"</font>'
  1373. '<font color=#<<$pcs_font>>>"Ehh..I...Master..."</font>'
  1374. '<font color=#<<$mas_font>>>"You know? I don''t care anyways. Actually I hope it was horrible for you. You deserve it, such a naughty whore."</font>'
  1375. *nl
  1376. '<font color=#<<$mas_font>>>"Now beg me to fuck you!"</font>'
  1377. step = 0
  1378. act 'Beg him to fuck you': orgasmMeter = 100 & gt 'brothel', $sessionB
  1379. elseif step = 10:
  1380. if caneFeetCount >= 3:
  1381. step = 20
  1382. gt 'brothel', $this
  1383. elseif caneFeetCount = 0:
  1384. caneFeetCount += 1
  1385. gs 'pain', 2, 'feet', 'spank'
  1386. '<center><video autoplay loop src="images/locations/shared/brothel/canefeet.mp4"></video></center>'
  1387. '<font color=#<<$mas_font>>>"I think you need more motivation, slut."</font>'
  1388. 'With that he takes your feet and starts to cane your sensitive feet, increasing the pace with every stroke!'
  1389. '<font color=#<<$pcs_font>>>"Oww! Oww! Oww! Oww! Oww!"</font>'
  1390. '<font color=#<<$mas_font>>>"So slave, what do you say now? Should I Continue with this, or do you agree with my offer?"</font>'
  1391. act 'Say you agree': step = 4 & gt 'brothel', $this
  1392. act 'Say you still don''t agree': gt 'brothel', $this
  1393. else
  1394. caneFeetCount += 1
  1395. gs 'pain', 2, 'feet', 'spank'
  1396. '<center><video autoplay loop src="images/locations/shared/brothel/canefeet.mp4"></video></center>'
  1397. '<font color=#<<$mas_font>>>"Think about it slut! Think about your poor feet right now!"</font>'
  1398. '<font color=#<<$pcs_font>>>"Oww! Oww! Oww! Oww! Oww!"</font>'
  1399. '<font color=#<<$mas_font>>>"So slave, what do you say now? Should I Continue with this, or do you agree with my offer?"</font>'
  1400. act 'Say you agree': step = 4 & gt 'brothel', $this
  1401. act 'Say you still don''t agree': gt 'brothel', $this
  1402. end
  1403. elseif step = 20:
  1404. 'He is obviously pissed off by your disapproval.'
  1405. '<font color=#<<$mas_font>>>"Fucking bitch! Now let me at least punish you how I can!"</font>'
  1406. orgasmMeter = 100
  1407. step = 0
  1408. act 'Continue': gt 'brothel', $sessionB
  1409. end
  1410. end
  1411. if $ARGS[0] = 'brothel:section1:session:play:whiptits':
  1412. custTime += 10
  1413. '<h3>Playroom</h3>'
  1414. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1415. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1416. '<center><video autoplay loop src="images/locations/shared/brothel/whiptits.mp4"></video></center>'
  1417. 'As you hang with hands tied, you can just watch as the Client takes a whip and repeatedly punishes your tender tities..'
  1418. '<font color=#<<$pcs_font>>>"Oww! Oww! Nooo! Owww! Not.. Any.. More.. Please... Oww.."</font> with each stroke you try to beg him to stop it but it seems to arouse him even more.'
  1419. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1420. gs 'arousal', 'end'
  1421. gs 'pain', 2, 'breasts', 'slap'
  1422. gs 'stat'
  1423. act 'Continue': gt 'brothel', $sessionB
  1424. end
  1425. if $ARGS[0] = 'brothel:section1:session:play:canetits':
  1426. custTime += 10
  1427. '<h3>Playroom</h3>'
  1428. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1429. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1430. '<center><video autoplay loop src="images/locations/shared/brothel/canetits.mp4"></video></center>'
  1431. 'As you hang with hands tied, you can just watch as the Client takes a wooden cane and repeatedly punishes your tender tities..'
  1432. '<font color=#<<$pcs_font>>>"Oww! Oww! Nooo! Owww! Not.. Any.. More.. Please... Oww.."</font> with each stroke you try to beg him to stop it but it seems to arouse him even more.'
  1433. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1434. gs 'arousal', 'end'
  1435. gs 'pain', 2, 'breasts', 'spank'
  1436. gs 'stat'
  1437. act 'Continue': gt 'brothel', $sessionB
  1438. end
  1439. if $ARGS[0] = 'brothel:section1:session:play:pinchtits':
  1440. custTime += 10
  1441. '<h3>Playroom</h3>'
  1442. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1443. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1444. '<center><video autoplay loop src="images/locations/shared/brothel/pinchtits.mp4"></video></center>'
  1445. 'As you hang with hands tied, you can just watch as the Client takes a wooden pins and pinches your sensitive nipples and earola.'
  1446. 'First it is just unpleasenat but the repeated attacks on your tits make it worse with each attempt..'
  1447. '<font color=#<<$pcs_font>>>"Oww! Oww! Nooo! Owww!"</font> with each pinch you try to beg him to stop it but it seems to arouse him even more.'
  1448. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1449. gs 'arousal', 'end'
  1450. gs 'pain', 3, 'breasts', 'pinch'
  1451. gs 'stat'
  1452. act 'Continue': gt 'brothel', $sessionB
  1453. end
  1454. if $ARGS[0] = 'brothel:section1:session:play:punchtits':
  1455. custTime += 10
  1456. '<h3>Playroom</h3>'
  1457. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1458. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1459. '<center><video autoplay loop src="images/locations/shared/brothel/punchtits.mp4"></video></center>'
  1460. 'As you hang with hands tied, you can just watch as the Client closes his strong manly fists.'
  1461. 'Your tender tities are but punchbags for as if this was a boxing session!'
  1462. '<font color=#<<$pcs_font>>>"Oww! Oww! Nooo! Owww!"</font> with each punch you try to beg him to stop it but it seems to arouse him even more.'
  1463. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1464. gs 'arousal', 'end'
  1465. gs 'pain', 3, 'breasts', 'hit'
  1466. gs 'stat'
  1467. act 'Continue': gt 'brothel', $sessionB
  1468. end
  1469. if $ARGS[0] = 'brothel:section1:session:play:bindtits':
  1470. custTime += 10
  1471. '<h3>Playroom</h3>'
  1472. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1473. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1474. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/bindtits.jpg"></center>'
  1475. 'Client takes a piece of rope and starts attaching it to your chest.'
  1476. 'First you do not know what is his purpose, but as soon as he circles your breasts with the ropes, you know it well.'
  1477. 'He ties the strings around your tits very tight, making them even more sensitive and as an addition turning more purple with each minute.'
  1478. '<font color=#<<$pcs_font>>>"Not so tight Master please!"</font>'
  1479. '<font color=#<<$mas_font>>>"Shut up slut!"</font> he obviously wants you to suffer..'
  1480. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1481. gs 'arousal', 'end'
  1482. gs 'pain', 3, 'breasts', 'bind'
  1483. gs 'stat'
  1484. act 'Continue': gt 'brothel', $sessionB
  1485. end
  1486. if $ARGS[0] = 'brothel:section1:session:play:pinchboundtits':
  1487. custTime += 10
  1488. '<h3>Playroom</h3>'
  1489. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1490. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1491. '<center><video autoplay loop src="images/locations/shared/brothel/pinchboundtits.mp4"></video></center>'
  1492. 'Your tits are already squeezed by the ropes, but the Client wants to unleash additional suffering upon them.'
  1493. 'He uses his fingers to pinch your nipples, stretching them as far as they go.'
  1494. 'Your tits are already so full that you feel as they should rupture any second, and by trying to catch the nipples, Client causes you extremely unpleasant sensations!'
  1495. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1496. gs 'arousal', 'end'
  1497. gs 'pain', 3, 'nipples', 'stretch'
  1498. gs 'stat'
  1499. act 'Continue': gt 'brothel', $sessionB
  1500. end
  1501. if $ARGS[0] = 'brothel:section1:session:play:pullnipples':
  1502. !stage += 1
  1503. custTime += 10
  1504. '<h3>Playroom</h3>'
  1505. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1506. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1507. '<center><video autoplay loop src="images/locations/shared/brothel/pullNipples.mp4"></video></center>'
  1508. 'Client takes a piece of rope and attaches it to your nipples.'
  1509. 'As soon as both strings are on place, he pulls them hard, as if he was trying to tear off your nipples!'
  1510. '<font color=#<<$pcs_font>>>"Owwwwuuch!!!"</font> you gasp both in surprise and pain, trying to endure the continuous pull.'
  1511. '<font color=#<<$mas_font>>>"Nice! Do you think this will make your nipples longer, slut? Or will those shrink again? Let''s see!"</font>'
  1512. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1513. gs 'arousal', 'end'
  1514. gs 'pain', 2, 'nipples', 'stretch'
  1515. gs 'stat'
  1516. act 'Continue': gt 'brothel', $sessionB
  1517. end
  1518. if $ARGS[0] = 'brothel:section1:session:play:hangbyneck':
  1519. !stage += 1
  1520. custTime += 10
  1521. '<h3>Playroom</h3>'
  1522. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1523. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1524. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/hangbyneck.jpg"></center>'
  1525. 'First he bounds your hands behind the back.'
  1526. 'As you stand there, you are getting more nervous about what''s he going to do with you..'
  1527. 'The Client comes with another rope, attaching it to already prepared hook hanging from the ceiling.'
  1528. 'To your horror he snaps the rope around your neck as if he''s going to hang you dead!'
  1529. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1530. gs 'arousal', 'end'
  1531. gs 'stat'
  1532. act 'Continue': gt 'brothel', $sessionB
  1533. end
  1534. if $ARGS[0] = 'brothel:section1:session:play:hangbytits':
  1535. !stage += 1
  1536. custTime += 10
  1537. '<h3>Playroom</h3>'
  1538. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1539. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1540. '<center><video autoplay loop src="images/locations/shared/brothel/hangbytits.mp4"></video></center>'
  1541. 'Client attaches anoter rope to your already bound tits, using a pulley attached to the ceiling.'
  1542. 'You start to shake in the moment you connect the ropes attached to your breats and the pulley above you..'
  1543. '<font color=#<<$pcs_font>>>"No Master, you can''t be serious!! You will tear the off! It is against the rules, stop it!</font> you desparetly try to avoid whats coming.'
  1544. '<font color=#<<$mas_font>>>"NO, it''s not against the rules. They won''t tear off, you''ll see!"</font> with those words he starts to pull the rope up, leveling you from the ground just by your tits.'
  1545. '<font color=#<<$pcs_font>>>"AYYYEEEEEEEEEEEE!</font> you yell more from horror than actual pain, as you slowly realize..'
  1546. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1547. gs 'arousal', 'end'
  1548. gs 'pain', 3, 'breasts', 'bind'
  1549. gs 'stat'
  1550. act 'Continue': gt 'brothel', $sessionB
  1551. end
  1552. if $ARGS[0] = 'brothel:section1:session:play:asshigh':
  1553. !stage += 1
  1554. custTime += 10
  1555. '<h3>Playroom</h3>'
  1556. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1557. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1558. '<center><video autoplay loop src="images/locations/shared/brothel/asshigh.mp4"></video></center>'
  1559. 'You are bound lying on your chest, Master raises your ass high in the air, forcing you to awkward position with both your holes on display, while tying you so you cannot move at all.'
  1560. gs 'arousal', 'foreplay', 10, 'bound', 'sub', 'prostitution', 'humiliation'
  1561. gs 'arousal', 'end'
  1562. act 'Continue': gt 'brothel', $sessionB
  1563. end
  1564. if $ARGS[0] = 'brothel:section1:session:play:buttplug':
  1565. !stage += 1
  1566. custTime += 2
  1567. gs 'pain', 5, 'asshole', 'stretch'
  1568. '<h3>Playroom</h3>'
  1569. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1570. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1571. '<font color=#<<$pcs_font>>>(What in the world have I gotten to...)</font> you start to have second thoughts, but before they even form, you are interrupted with sharp pain:'
  1572. '<center><video autoplay loop src="images/locations/shared/brothel/buttplug.mp4"></video></center>'
  1573. '<font color=#<<$pcs_font>>>"Owwchhh!" Take it out! Take it ouuuut PLEASE!"</font>'
  1574. 'Disregarding your plea, Master says half for himself, obviously entertained <font color=#'+$mas_font+'>"It fits just nice, what a surprise! It looked quite thick!"</font>"'
  1575. 'You can but guess what as you don''t see what happens behind you, however you feel cold, probably metallic plug in your anus.'
  1576. gs 'arousal', 'anal_dildo', 2, 'bound', 'sub', 'prostitution', 'humiliation'
  1577. gs 'arousal', 'end'
  1578. gs 'stat'
  1579. analplugIN = 1
  1580. act 'Continue': gt 'brothel', $sessionB
  1581. end
  1582. if $ARGS[0] = 'brothel:section1:session:play:electrodesAss':
  1583. !stage += 1
  1584. custTime += 5
  1585. '<h3>Playroom</h3>'
  1586. '<h5>Electricity</h5>'
  1587. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1588. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1589. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/electrodesAss.jpg"></center>'
  1590. 'You feel slightly cold sensation, as if something wet was put on and near your private areas.'
  1591. gs 'arousal', 'foreplay', 5, 'bound', 'sub', 'prostitution', 'humiliation'
  1592. gs 'arousal', 'end'
  1593. gs 'stat'
  1594. 'The sensation fades away in a few seconds, leaving a feeling of something being sticked to your bottom parts.'
  1595. act 'Continue': gt 'brothel', $sessionB
  1596. end
  1597. if $ARGS[0] = 'brothel:section1:session:play:electrocuteAss':
  1598. !stage += 1
  1599. custTime += 5
  1600. gs 'pain', 2, 'asscheeks', 'shock'
  1601. gs 'pain', 2, 'thighs', 'shock'
  1602. '<h3>Playroom</h3>'
  1603. '<h5>Electricity</h5>'
  1604. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1605. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1606. '<center><video autoplay loop src="images/locations/shared/brothel/electrocuteAss.mp4"></video></center>'
  1607. 'Your body trembles in cramps as the electric discharge flows through your sensitive parts.'
  1608. gs 'arousal', 'anal', 5, 'sub', 'rough', 'maso', 'bound'
  1609. gs 'arousal', 'end'
  1610. gs 'stat'
  1611. '<font color=#<<$pcs_font>>>"Owwchhh! It hurts!"</font>'
  1612. '<font color=#'+$mas_font+'>"That''s the point slut! How do you like it? Tell me now!"</font>'
  1613. act 'Tell him you hate it and want him to stop':gt 'brothel', 'dislike'
  1614. act 'Tell him you love it':gt 'brothel', 'like'
  1615. end
  1616. if $ARGS[0] = 'brothel:section1:session:play:electrocuteAssMore':
  1617. !stage += 1
  1618. custTime += 5
  1619. gs 'pain', 2, 'asscheeks', 'shock'
  1620. gs 'pain', 2, 'thighs', 'shock'
  1621. '<h3>Playroom</h3>'
  1622. '<h5>Electricity</h5>'
  1623. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1624. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1625. '<center><video autoplay loop src="images/locations/shared/brothel/electrocuteAssMore.mp4"></video></center>'
  1626. 'Your body trembles in cramps to a limit as the electric discharge set on high settings flows through your sensitive parts.'
  1627. 'You feel as your skin should peel away and your anus would tear apart any second.'
  1628. gs 'arousal', 'anal', 5, 'sub', 'rough', 'maso', 'bound'
  1629. gs 'arousal', 'end'
  1630. gs 'stat'
  1631. '<font color=#<<$pcs_font>>>"Owwchhh! It hurts so much! STOPP ITT!"</font>'
  1632. '<font color=#'+$mas_font+'>"You should''ve subdue at the first point, dumb slut. How do you like it now?"</font>'
  1633. act 'Tell him you hate it and want him to stop':gt 'brothel', 'dislike'
  1634. act 'Tell him you love it':gt 'brothel', 'like'
  1635. end
  1636. if $ARGS[0] = 'brothel:section1:session:play:electrocuteAssMax':
  1637. !stage += 1
  1638. custTime += 5
  1639. gs 'pain', 3, 'asscheeks', 'shock'
  1640. gs 'pain', 3, 'thighs', 'shock'
  1641. '<h3>Playroom</h3>'
  1642. '<h5>Electricity</h5>'
  1643. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1644. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1645. '<center><video autoplay loop src="images/locations/shared/brothel/electrocuteAssMax.mp4"></video></center>'
  1646. 'Your body trembles in cramps beyond a limit as the electric discharge set on highest settings flows through your sensitive parts and spreads throughout the whole body.'
  1647. 'You feel as your skin should turn upside down and your anus would explode together with the stomach.'
  1648. gs 'arousal', 'anal', 5, 'sub', 'rough', 'maso', 'bound'
  1649. gs 'arousal', 'end'
  1650. gs 'stat'
  1651. '<font color=#<<$pcs_font>>>"Owwchhh! AAARHHHGHHGHGH!!!"</font> You are unable to even get out a senseless moan anymore..'
  1652. '<font color=#'+$mas_font+'>"Now this is what I call a barbecue party!"</font>'
  1653. act 'Cry that you hate it and want him to stop':gt 'brothel', 'dislike'
  1654. act 'Cry that that you love it':gt 'brothel', 'like'
  1655. end
  1656. if $ARGS[0] = 'brothel:section1:session:play:shockAnus':
  1657. !stage += 1
  1658. minut += 5
  1659. custTime += 5
  1660. gs 'pain', 3, 'asshole', 'shock'
  1661. gs 'stat'
  1662. '<h3>Playroom</h3>'
  1663. '<h5>Electricity</h5>'
  1664. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1665. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1666. '<center><video autoplay loop src="images/locations/shared/brothel/shockAnus.mp4"></video></center>'
  1667. 'You have obviously annoyed the Client by what you did.'
  1668. 'He takes a long rod: <font color=#<<$mas_font>>>"Now where''s the fucking button!"</font>'
  1669. 'A shiver runs through your spine and soon you know why! He sticks the rod in your anus, giving you a electrocuting your sensitive hole!"'
  1670. '<font color=#<<$pcs_font>>>"Owwwwwwwwwwwwwwwwww!"</font> Tears run out of your eyes in pain and terror..'
  1671. '<font color=#<<$mas_font>>>"Don''t do it again slut! Or this will be halfway in your anus!"</font>'
  1672. act 'Continue':gt 'brothel', $sessionB
  1673. end
  1674. if $ARGS[0] = 'brothel:section1:session:play:pushplugout':
  1675. minut += 1
  1676. custTime += 1
  1677. analplugIN = 0
  1678. gs 'pain', 3, 'asshole', 'cramp'
  1679. gs 'stat'
  1680. '<h3>Playroom</h3>'
  1681. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1682. '<b>Rage meter: <<rageMeter>> / 100</b>'
  1683. '<center><video autoplay loop src="images/locations/shared/brothel/pushplugout.mp4"></video></center>'
  1684. 'Unable to withstand all the pain your muscles pull themself in a massive cramp, causing the anal plug fall out like an apple from a tree.'
  1685. chRod = rand(0, 100)
  1686. if chRod < prob_chRod:
  1687. act 'Continue': gt 'brothel', '<<$base>>:shockAnus'
  1688. else
  1689. act 'Continue': gt 'brothel', $sessionB
  1690. end
  1691. end
  1692. if $ARGS[0] = 'brothel:section1:session:play:ragefinish':
  1693. minut += 5
  1694. custTime += 5
  1695. gs 'stat'
  1696. '<h3>Playroom</h3>'
  1697. '<b>Orgasm meter: <<orgasmMeter>> / 100</b>'
  1698. '<b color=#'+$red_font+'>Rage meter: <<rageMeter>> / 100</b>'
  1699. '<center><video autoplay loop src="images/locations/shared/brothel/masturbateinface.mp4"></video></center>'
  1700. 'The client is now too excited by the violence unleashed upon you. He takes his own dick in his hands and starts masturbating right in front of your face.'
  1701. 'Being bound you have no choice but witness his slimy dick turning dark red as he furiously masturbates.'
  1702. 'Finally in a few minutes a large amount of slimy cum lands all over your face. It gets in your mouth and even sticks your eyelids together.'
  1703. gs 'cum_call', 'face', 'Master'
  1704. act 'Continue': gt 'brothel', '<<$base>>:end'
  1705. end
  1706. if $ARGS[0] = 'brothel:section1:session:play:end':
  1707. $this = 'brothel:section1:session:play:end'
  1708. minut += 10
  1709. custTime += 10
  1710. gs 'stat'
  1711. '<h3>Playroom</h3>'
  1712. if step = 1:
  1713. 'The Receptionist circles around you, obviously enjoying the open position you are tied in.'
  1714. recPlugCh = rand(0,100)
  1715. step = 2
  1716. if analplugIN = 1 and recPlugCh < prob_recPlugCh:
  1717. 'Then he notices the anal plug that is still well inside your anus. He gigles aloud but says not a word.. this is not good..'
  1718. '<center><video autoplay loop src="images/locations/shared/brothel/pullPlugFromAss.mp4"></video></center>'
  1719. 'With one hard pull he rips the plug out of your anus, causing your already weared anus additional pain!'
  1720. '<font color=#<<$pcs_font>>>"Ouuuuchhhhh! You moron, you didn''t even pay for this!"</font>'
  1721. analplugIN = 0
  1722. gs 'pain', 3, 'asshole', 'stretch'
  1723. gs 'stat'
  1724. act 'Yell at him to untie you': gt 'brothel', $this
  1725. else
  1726. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/receptionistGaze.jpg"></center>'
  1727. 'You can read obvious disgust from his face. You rather not try to guess what he thinks about you.. The feel of his gaze on your bare body is frightening you even more than you already are..'
  1728. act 'Beg him to finally untie you': gt 'brothel', $this
  1729. end
  1730. elseif step = 2:
  1731. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/receptionistSlaveRelease.jpg"></center>'
  1732. 'Finally he reaches to you and starts with the untying, letting you go.'
  1733. if analplugIN = 1:
  1734. step = 3
  1735. act 'Get up': gt 'brothel', $this
  1736. else
  1737. step = 0
  1738. act 'Leave': gt 'brothel', 'brothel:section1:girlroom'
  1739. end
  1740. elseif step = 3:
  1741. 'As you try to get up, suddenly you realize the massive plug still deep in your anus..'
  1742. '<font color=#<<$pcs_font>>>(I have to take it out..)</font>'
  1743. '<center><video autoplay loop src="images/locations/shared/brothel/pullPlugFromAssYourself.mp4"></video></center>'
  1744. '<font color=#<<$pcs_font>>>Oww.. Oww.. Owwwch!</font> with loud wet "plop" the plug finally goes out!'
  1745. step = 0
  1746. analplugIN = 0
  1747. gs 'pain', 4, 'asshole', 'stretch'
  1748. gs 'stat'
  1749. act 'Throw it away and leave': gt 'brothel', 'brothel:section1:girlroom'
  1750. else
  1751. '<center><img <<$set_imgh>> src="images/locations/shared/brothel/sessionend.jpg"></center>'
  1752. 'It seems you have served your purpose. The client is satisfied, his needs are taken care of.'
  1753. 'He starts to pack the few things he brought to the room, entirely ignoring your uncomfortable moans and pleads. As if you weren''t there anymore.'
  1754. 'The last little indication that he is even aware of you is a rough loud slap on your ass. Afterwards he leaves the room, closing the door behind you, leaving you in the pitiful state and awkward position you were the whole session tied in.'
  1755. *nl
  1756. '<font color=#<<$pcs_font>>>"Oh my please someone get me out of here!"</font>'
  1757. *nl
  1758. 'Finally in a few minutes the receptionist enters the playroom.'
  1759. step = 1
  1760. gs 'pain', 2, 'asscheeks', 'slap'
  1761. gs 'stat'
  1762. act 'Ask him to release you': gt 'brothel', $this
  1763. end
  1764. end
  1765. if $ARGS[0] = 'like':
  1766. like = 1
  1767. orgasmMeter += 25
  1768. gt 'brothel', $sessionB
  1769. end
  1770. if $ARGS[0] = 'dislike':
  1771. like = 0
  1772. rageMeter += 20
  1773. gt 'brothel', $sessionB
  1774. end
  1775. --- brothel ---------------------------------