mod_public_WC_cabine.qsrc 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368
  1. # mod_public_WC_cabine
  2. if $ARGS[0] = 'start':
  3. CLOSE ALL
  4. $location_type = 'public_indoors'
  5. $metka = 'start'
  6. $loc = 'mod_public_WC_cabine'
  7. $menu_loc = 'mod_public_WC_cabine'
  8. $menu_arg = 'start'
  9. menu_off = 0
  10. *clr & cla
  11. gs 'stat'
  12. WCzoo = 1
  13. WCforest = 1
  14. WCmod = 1
  15. if WCmodopciya = 1: WCmod = 0
  16. if WCforestopciya = 1: WCfores = 0
  17. if wczooopciya = 1: wczoo = 0
  18. colir = 0
  19. colir2 = 0
  20. odianadveriah = 0
  21. gandon = 0
  22. ghnow = 0
  23. gs 'themes', 'indoors'
  24. '<center><b><font color="maroon">Public toilet</font></b></center>'
  25. '<center><img <<$set_imgh>> src="mod/public_WC/WC/bathroom_mens.jpg"></center>'
  26. act 'Go outside':
  27. gs 'arousal', 'end'
  28. gs 'stat'
  29. gt 'pav_commercial'
  30. end
  31. if hour <= 5 or hour >= 21:
  32. act 'Go in the Men''s toilet': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  33. end
  34. if hour > 5 and hour < 21:
  35. gs 'willpower', 'exhib', 'self'
  36. if will_cost <= pcs_willpwr:
  37. act 'Go in the Mens toilet in front of everyone (<<will_cost>> Willpower)':
  38. gs 'willpower', 'exhib', 'self'
  39. gs 'willpower', 'pay', 'self'
  40. gs 'stat'
  41. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  42. end
  43. else
  44. act 'Go in the Men''s toilet (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  45. end
  46. end
  47. end
  48. if $ARGS[0] = 'mod_public_WC_cabine_WORK':
  49. *clr & cla
  50. minut +=5
  51. menu_off = 1
  52. temp = rand(1,3)
  53. if temp = 1:
  54. colir = 2
  55. else
  56. colir = 1
  57. end
  58. dick = rand(14,30)
  59. npc_dick[$npclastgenerated] = dick
  60. gs 'stat'
  61. '<center><b><font color="maroon">Toilet cabine</font></b></center>'
  62. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/womens/sitting.jpg"></center>'
  63. if stat['bj'] = 0:
  64. gs 'stat'
  65. 'You sit down, in the toilet is a rather large almost perfectly round hole. Puzzled, you wonder how it got there and why no one has fixed it.'
  66. elseif stat['bj'] >= 1:
  67. pcs_horny += 10
  68. gs 'stat'
  69. 'You sit down, in the toilet is a rather large almost perfectly round hole. Puzzled, you wonder how it got there and why no one has fixed it, and most importantly why is it for men?'
  70. end
  71. if pcs_horny >=40:
  72. gs 'willpower', 'mast', 'self'
  73. if will_cost <= pcs_willpwr:
  74. act 'Caress Yourself (<<will_cost>> Willpower)':
  75. if pcs_inhib < 40:inhib_exp += rand(1,3)
  76. *clr & cla
  77. gs 'willpower', 'mast', 'self'
  78. gs 'willpower', 'pay', 'self'
  79. gs 'stat'
  80. picrand = rand(1,2)
  81. if picrand = 1:
  82. *clr & cla
  83. gs 'stat'
  84. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/caress1.mp4"></video></center>'
  85. 'Feeling a bit turned on, you close the door to the stall and you behind to reach down your underwear and start rubbing your clit.'
  86. gs 'arousal', 'masturbate', 4
  87. gs 'stat'
  88. act 'Continue': gs 'mod_public_WC_cabine', 'contmast'
  89. else
  90. *clr & cla
  91. gs 'stat'
  92. '<center><img <<$set_imgh>> src="images/shared/sex/mast/mastr.jpg"></center>'
  93. 'Feeling a bit turned on, you close the door to the stall and you sit down exposing your pussy and begin to run your clit.'
  94. gs 'arousal', 'masturbate', 4
  95. gs 'stat'
  96. act 'Continue': gs 'mod_public_WC_cabine', 'contmast'
  97. end
  98. end
  99. else
  100. act 'Caress Yourself (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  101. end
  102. end
  103. act 'Look at the Hole': gt 'mod_public_WC_cabine', 'hole'
  104. if $clothingworntype ! 'nude' and gloryhole >= 10:
  105. act 'undress':
  106. '<center><video autoplay loop src="mod/public_WC/wc/gh/undress.mp4"></video></center>'
  107. minut += 3
  108. inhib_exp += rand(0,1)
  109. 'Now they will see my naked body through the hole!'
  110. gs 'clothing', 'strip'
  111. gs 'underwear', 'remove'
  112. gs 'stat'
  113. odianadveriah = 1
  114. act 'put clothes on a cabin''s door as a sign "I am going to be be here for a long time"':
  115. odianadveriah = 3
  116. 'now my clothes are hanging on the door as a sign "I am going to be be here for a long time".'
  117. end
  118. act 'put clothes on a door knob':
  119. odianadveriah = 2
  120. 'now my clothes are carefully hanging on the doorknob.'
  121. end
  122. end
  123. end
  124. if $clothingworntype = 'nude' and odianadveriah ! 0:
  125. act 'Get dressed':
  126. minut+=3
  127. gs 'clothing', 'wear_last_worn'
  128. gs 'underwear', 'wear'
  129. 'You put your clothes back on.'
  130. gs 'stat'
  131. end
  132. end
  133. if siga > 0:
  134. act 'smoke':
  135. if rand(1,4) = 1:
  136. pcs_willpwr += rand(1,2)
  137. if pcs_willpwr >= willpowermax: pcs_willpwr = willpowermax
  138. if pcs_willpwr <= 0: pcs_willpwr = 0
  139. gs 'stat'
  140. end
  141. if ghnow < 5:
  142. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/smoke/wait.jpg"></center>'
  143. minut += 5
  144. gs 'drugs','smoke'
  145. gs 'stat'
  146. 'You decide to kill some time with cigarette.'
  147. else
  148. '<center><video autoplay loop src="mod/public_WC/wc/gh/smoke/wait_q.mp4"></video></center>'
  149. minut += 5
  150. gs 'drugs','smoke'
  151. gs 'stat'
  152. 'You decide to kill some time with cigarette.'
  153. end
  154. if ghnow >= 5 and 120 <= ghnow * ghnow + rand(15, 75) - odianadveriah * odianadveriah:
  155. *clr & cla
  156. '<center><video autoplay loop src="mod/public_WC/WC/Enter.mp4"></video></center>'
  157. 'The doors are knocked out, men break in.'
  158. act 'Yell':gt 'mod_public_WC_cabine', 'rape2'
  159. end
  160. end
  161. end
  162. act 'Get Up': gt 'pav_commercial'
  163. if ghnow >= 5:
  164. '<font color="red">You hear loud sounds and quarrels.</font>'
  165. act 'Look what''s going on':
  166. '<center><video autoplay loop src="mod/public_WC/wc/gh/Line.mp4"></video></center>'
  167. if ghnow = 5: 'There are 2% chance of problems'
  168. if ghnow = 6: 'There are 20% chance of problems'
  169. if ghnow = 7: 'There are 40% chance of problems'
  170. if ghnow = 8: 'There are 65% chance of problems'
  171. if ghnow = 9: 'There are 95% chance of problems'
  172. end
  173. end
  174. if ghnow >= 3 and rand(1,15) = 1:
  175. *clr & cla
  176. '<center><b><font color="maroon">Toilet cabine</font></b></center>'
  177. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/womens/sitting.jpg"></center>'
  178. 'The angry black guy''s voice says "Yo Bitch! Black Cat needs free service, right now!"'
  179. act 'send him':
  180. agreech = 0
  181. gt 'mod_public_WC_cabine_ch', 'start'
  182. end
  183. act 'agree':
  184. agreech = 1
  185. gt 'mod_public_WC_cabine_ch', 'start'
  186. end
  187. end
  188. if ghnow >= 5 and 100 <= ghnow * ghnow + rand(15, 75) - odianadveriah * odianadveriah:
  189. *clr & cla
  190. '<center><video autoplay loop src="mod/public_WC/WC/Enter.mp4"></video></center>'
  191. 'The doors are knocked out, men break in.'
  192. act 'Yell':gt 'mod_public_WC_cabine', 'rape2'
  193. end
  194. if rand (1,100) <= 15 and odianadveriah = 3:
  195. *clr & cla
  196. 'I see my clothes being pulled from the door to that side.'
  197. dynamic $clothingworntype + '_h[<<clothingwornnumber>>] -= 100'
  198. !add remove clothes if worn out
  199. if dyneval('RESULT = <<$clothingworntype>>_h[<<clothingwornnumber>>]') <= 0:
  200. gadforest_clothestorn = 1
  201. gs 'mod_public_WC_cabine', 'strip', 'gadforest'
  202. gs 'stat'
  203. end
  204. 'I hear someone laughing running out of the toilet.'
  205. 'OMG!!! I have no clothes'
  206. odianadveriah = 0
  207. act 'Continue': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  208. end
  209. end
  210. if $ARGS[0] = 'contmast':
  211. *clr & cla
  212. pcs_mood += 5
  213. menu_off = 1
  214. if picrand = 1:
  215. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/caress1.mp4"></video></center>'
  216. else
  217. '<center><img <<$set_imgh>> src="images/shared/sex/mast/mastr.jpg"></center>'
  218. end
  219. if pcs_horny <= 60:
  220. 'You are starting to feel warm and you insert your finger in your pussy.'
  221. else
  222. 'You are starting to feel warm and you insert your finger in your pussy. You keep fingering your pussy and before long you are breathing heavily and start to moan.'
  223. end
  224. gs 'arousal', 'masturbate', 5
  225. gs 'stat'
  226. if pcs_horny >= 90:
  227. act 'Climax':
  228. *clr & cla
  229. pcs_mood += 15
  230. if pcs_inhib < 40: inhib_exp += rand(1,3)
  231. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/orgasm.mp4"></video></center>'
  232. $orgasm_or = 'custom'
  233. $orgasm_txt = 'As your pussy gets wet you pulls you panties down and slip your fingers inside of yourself. You start finger fucking yourself, with in a few minutes a powerful orgasm rocks your body. Leaving you gasping and trembling as you recover.'
  234. gs 'arousal', 'masturbate', 2
  235. gs 'arousal', 'end'
  236. gs 'stat'
  237. act 'Leave cabine':gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  238. end
  239. else
  240. act 'Continue': gt 'mod_public_WC_cabine', 'contmast'
  241. end
  242. gs 'willpower', 'mast', 'self'
  243. if will_cost <= pcs_willpwr:
  244. act 'Stop (<<will_cost>> Willpower)':
  245. cla
  246. minut += 1
  247. gs 'willpower', 'mast', 'self'
  248. gs 'willpower', 'pay', 'self'
  249. gs 'arousal', 'end'
  250. gs 'stat'
  251. 'You decide that you shouldn''t continue and stop yourself from finishing.'
  252. act 'Leave Stall':gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  253. end
  254. else
  255. act 'Stop (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  256. end
  257. end
  258. if $ARGS[0] = 'hole':
  259. *clr & cla
  260. menu_off = 0
  261. temp = rand(1,3)
  262. if temp = 1:
  263. colir = 2
  264. else
  265. colir = 1
  266. end
  267. jerk = 0
  268. gs 'npcgeneratec', 0, 'unknown guy', rand(18,40)
  269. if npc_dick[$npclastgenerated] < 6: npc_dick[$npclastgenerated] = 6
  270. gs 'boyStat', $npclastgenerated
  271. minut +=5
  272. gs 'stat'
  273. '<center><video autoplay loop src="mod/public_WC/wc/gh/wait/lookinthehole.mp4"></video></center>'
  274. if ztemp = 2:
  275. *clr
  276. '<center><img <<$set_imgh>> src="mod/public_WC/WC/GH/wait/work_puss.jpg"></center>'
  277. end
  278. wait 700
  279. if gloryhole = 0:
  280. act 'Sign the wall':
  281. *clr & cla
  282. ztemp = 0
  283. gs 'stat'
  284. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/ghstartled.mp4"></video></center>'
  285. 'While looking through the hole you decided to write something on the wall, as evidence of your adventure. While you were focused on writing, you didn''t notice the dick poking through the hole until the tip of it nearly went into your mouth. Startled you jerk away from the offending penis.'
  286. act 'Suck it': gt 'mod_public_WC_cabine', 'blowjob'
  287. if pcs_throat = 0:act 'Touch the shaft':gt 'mod_public_WC_cabine', 'virgin'
  288. gs 'willpower', 'bj', 'resist'
  289. if will_cost <= pcs_willpwr:
  290. act 'Quickly leave the cabine (<<will_cost>> Willpower)':
  291. *clr & cla
  292. gs 'willpower', 'bj', 'resist'
  293. gs 'willpower', 'pay', 'resist'
  294. gs 'stat'
  295. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/eww.mp4"></video></center>'
  296. 'You shudder in disgust at the thought that some stranger''s dick was just practically in your mouth, you get up and quickly leave.'
  297. act'Leave':gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  298. end
  299. else
  300. act 'Quickly leave the cabine (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  301. end
  302. end
  303. elseif rand(1, 10) >= 7 - (ghnow * 2) - ztemp:
  304. *clr & cla
  305. gs 'stat'
  306. temp = rand(1,3)
  307. '<center><video autoplay loop src="mod/public_WC/WC/GH/wait/work_face_<<temp>>.mp4"></video></center>'
  308. if ztemp = 2:
  309. *clr
  310. '<center><img <<$set_imgh>> src="mod/public_WC/WC/GH/wait/work_puss.jpg"></center>'
  311. ztemp = 0
  312. end
  313. 'You shows everyone, you are ready to work.'
  314. act 'Go away':
  315. cla
  316. 'This is mistake, gladly you stoped yourself'
  317. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  318. end
  319. gs 'willpower', 'bj', 'self'
  320. if will_cost <= pcs_willpwr:
  321. act 'Start to Work (<<will_cost>> Willpower)':
  322. *clr & cla
  323. $dodatkovi = rand(1,5) * 50
  324. $GROSHI = 250 + $dodatkovi
  325. money += $GROSHI
  326. minut += 10 + (3 * $dodatkovi / 50)
  327. gs 'willpower', 'bj', 'self'
  328. gs 'willpower', 'pay', 'self'
  329. gs 'stat'
  330. if gloryhole = 0:
  331. if colir = 1:
  332. 'Someones dick stick to your mouth push your head away.'
  333. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/start/start.mp4"></video></center>'
  334. else
  335. 'Someones black dick stick to your mouth push your head away.'
  336. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/start/startv (2).mp4"></video></center>'
  337. end
  338. 'The man slips few <b>₽</b> banknots into the hole near your head.'
  339. act 'Blow Him': gt 'mod_public_WC_cabine', 'blowjob'
  340. elseif gloryhole > 0:
  341. dick = rand (10,40)
  342. npc_dick[$npclastgenerated] = dick
  343. if colir = 1:
  344. 'White <<dick>> cm dick comes through the hole'
  345. if 25 >= rand(1,100):
  346. 'It wears condom'
  347. gandon = 1
  348. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/dick_con.jpg"></center>'
  349. else
  350. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/start/startv.mp4"></video></center>'
  351. end
  352. else
  353. 'Black <<dick>> cm dick comes through the hole'
  354. if 15 >= rand(1,100):
  355. 'It wears condom'
  356. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/start/startv.mp4"></video></center>'
  357. gandon = 1
  358. else
  359. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/start/startv ('+rand(1,7)+').mp4"></video></center>'
  360. end
  361. end
  362. 'The man slips few <b>₽</b> banknots into the hole.'
  363. act 'Blow Him': gt 'mod_public_WC_cabine', 'blowjob'
  364. act 'Give a hand job': gt 'mod_public_WC_cabine', 'hj'
  365. act 'Give a foot job': gt 'mod_public_WC_cabine', 'lj'
  366. end
  367. gs 'willpower', 'bj', 'resist'
  368. if will_cost <= pcs_willpwr:
  369. act 'Stop (<<will_cost>> Willpower)':
  370. *clr & cla
  371. gs 'willpower', 'bj', 'resist'
  372. gs 'willpower', 'pay', 'resist'
  373. gs 'stat'
  374. 'This horroble taste wakes you up! You reconsider what you are about to do, do you really want to suck some strange man''s dick, through a hole in the bathroom for money?'
  375. gs 'willpower', 'bj', 'resist', 'hard'
  376. if will_cost <= pcs_willpwr:
  377. act 'Take his money and RUN (<<will_cost>> Willpower)':
  378. gs 'willpower', 'bj', 'resist', 'hard'
  379. gs 'willpower', 'pay', 'resist'
  380. gs 'stat'
  381. gt 'mod_public_WC_cabine', 'rape'
  382. end
  383. else
  384. act 'Take his money and Leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  385. end
  386. act 'Give back the money and Leave':
  387. money -= $GROSHI
  388. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  389. end
  390. act 'Blow Him': gt 'mod_public_WC_cabine', 'blowjob'
  391. act 'Give a hand job': gt 'mod_public_WC_cabine', 'hj'
  392. act 'Give a foot job': gt 'mod_public_WC_cabine', 'lj'
  393. end
  394. else
  395. act 'Stop (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  396. end
  397. end
  398. else
  399. act 'Start to Work (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  400. end
  401. else
  402. *clr & cla
  403. gs 'stat'
  404. temp = rand(1,3)
  405. '<center><video autoplay loop src="mod/public_WC/WC/GH/wait/work_face_<<temp>>.mp4"></video></center>'
  406. 'The mouth begins to get tired, but nobody came. Am I do everything right?'
  407. if ztemp = 2:
  408. *clr
  409. '<center><img <<$set_imgh>> src="mod/public_WC/WC/GH/wait/work_puss.jpg"></center>'
  410. 'No one want to buy, Really? Am I doing everything right?'
  411. ztemp = 0
  412. end
  413. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  414. act 'Wait':
  415. *clr & cla
  416. 'You decide stay and wait for someone to come.'
  417. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  418. end
  419. if gloryhole >= 50:
  420. act 'Try to sell my pussy':
  421. ztemp = 2
  422. gt 'mod_public_WC_cabine', 'hole'
  423. end
  424. end
  425. if siga > 0:
  426. act 'Smoke':
  427. *clr & cla
  428. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/smoke/wait.jpg"></center>'
  429. minut += 5
  430. gs 'drugs','smoke'
  431. gs 'stat'
  432. 'You decide to kill some time with cigarette.'
  433. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  434. if gloryhole >= 50:
  435. act 'Try to sell my pussy':
  436. ztemp = 2
  437. gt 'mod_public_WC_cabine', 'hole'
  438. end
  439. end
  440. end
  441. end
  442. if ghnow < 4:
  443. act 'Have a look through the hole':
  444. *clr & cla
  445. if rand(1, 10) >= 7 - (ghnow * 2) - ztemp:
  446. gs 'npcgeneratec', 0, 'unknown guy', rand(25,40)
  447. gs 'boyStat', $npclastgenerated
  448. $boy[0] = $boy
  449. if rand(1,2) = 1:
  450. colir = 1
  451. else
  452. colir = 2
  453. end
  454. 'While looking through the hole, I see some juicy dick'
  455. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/wait/ask.jpg"></center>'
  456. gs 'arousal', 'voyeur', 5
  457. gs 'stat'
  458. gs 'willpower', 'bj', 'self'
  459. if will_cost <= pcs_willpwr:
  460. act 'ask the guy to suck his dick (<<will_cost>> Willpower)':
  461. *clr & cla
  462. gs 'willpower', 'bj', 'self'
  463. gs 'willpower', 'pay', 'self'
  464. 'The guy stand in shock a little'
  465. if rand(1, 10) >= 5 - (ghnow * 2):
  466. 'but after few moment I here "Shure why not"'
  467. 'I see his dick comes throught the hole'
  468. if colir = 1:
  469. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/wait/walldick1.jpg"></center>'
  470. else
  471. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/wait/walldick2.jpg"></center>'
  472. end
  473. act 'Blow Him': gt 'mod_public_WC_cabine', 'blowjob'
  474. act 'Give a hand job': gt 'mod_public_WC_cabine', 'hj'
  475. act 'Give a foot job': gt 'mod_public_WC_cabine', 'lj'
  476. else
  477. 'The guy said "Nope", and went out obviously quicker then must to.'
  478. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  479. act 'Wait':
  480. *clr & cla
  481. 'You decide stay and wait for someone to come.'
  482. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  483. end
  484. if gloryhole >= 50:
  485. act 'Try to sell my pussy':
  486. ztemp = 2
  487. gt 'mod_public_WC_cabine', 'hole'
  488. end
  489. end
  490. end
  491. end
  492. else
  493. act 'ask the guy to suck his dick (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  494. end
  495. gs 'willpower', 'bj', 'self'
  496. if will_cost <= pcs_willpwr:
  497. act 'offer my service to the guy (<<will_cost>> Willpower)':
  498. *clr & cla
  499. gs 'willpower', 'bj', 'self'
  500. gs 'willpower', 'pay', 'self'
  501. 'The guy stand in shok a little'
  502. if rand(1, 10) >= 6 - (ghnow * 2):
  503. 'but after few moment I here "Sounds like a good idea"'
  504. 'few banknots slips through the hole'
  505. 'I see his dick comes throught the hole'
  506. $dodatkovi = rand(1,5) * 50
  507. $GROSHI = 150 + $dodatkovi
  508. money += $GROSHI
  509. minut += 10 + (3 * $dodatkovi / 50)
  510. gs 'stat'
  511. if colir = 1:
  512. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/wait/walldick1.jpg"></center>'
  513. else
  514. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/wait/walldick2.jpg"></center>'
  515. end
  516. act 'Blow Him': gt 'mod_public_WC_cabine', 'blowjob'
  517. act 'Give a hand job': gt 'mod_public_WC_cabine', 'hj'
  518. act 'Give a foot job': gt 'mod_public_WC_cabine', 'lj'
  519. else
  520. 'The guy said "Nope", and went out obviously quicker then must to.'
  521. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  522. act 'Wait':
  523. *clr & cla
  524. 'You decide stay and wait for someone to come.'
  525. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  526. end
  527. if gloryhole >= 50:
  528. act 'Try to sell my pussy':
  529. ztemp = 2
  530. gt 'mod_public_WC_cabine', 'hole'
  531. end
  532. end
  533. end
  534. end
  535. else
  536. act 'offer my service to the guy (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  537. end
  538. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  539. act 'Wait':
  540. *clr & cla
  541. 'You decide stay and wait for someone to come.'
  542. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  543. end
  544. if gloryhole >= 50:
  545. act 'Try to sell my pussy':
  546. ztemp = 2
  547. gt 'mod_public_WC_cabine', 'hole'
  548. end
  549. end
  550. else
  551. *clr & cla
  552. gs 'stat'
  553. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/womens/sex/ghseenomen.jpg"></center>'
  554. 'Looking through the hole, I can see a row of urinals. There are no men currently here.'
  555. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  556. act 'Wait':
  557. *clr & cla
  558. 'You decide stay and wait for someone to come.'
  559. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  560. end
  561. if gloryhole >= 50:
  562. act 'Try to sell my pussy':
  563. ztemp = 2
  564. gt 'mod_public_WC_cabine', 'hole'
  565. end
  566. end
  567. end
  568. end
  569. end
  570. end
  571. end
  572. if $ARGS[0] = 'virgin':
  573. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/ghvirgin1.mp4"></video></center>'
  574. 'You tentatively reach out and gently touch the dick, half afraid to, but also half wanting to.'
  575. gs 'willpower', 'hj', 'resist'
  576. if will_cost <= pcs_willpwr:
  577. act 'Quickly leave the cabine (<<will_cost>> Willpower)':
  578. *clr & cla
  579. gs 'willpower', 'hj', 'resist'
  580. gs 'willpower', 'pay', 'resist'
  581. gs 'stat'
  582. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/eww.mp4"></video></center>'
  583. 'You shudder in disgust at the thought that you were just touching some stranger''s dick. You get up and quickly leave.'
  584. act'Leave':gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  585. end
  586. else
  587. act 'Quickly leave the cabine (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  588. end
  589. act 'Grab it':
  590. *clr & cla
  591. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/ghfeeling.mp4"></video></center>'
  592. 'Biting your lip and deciding you want to feel it some more, you reach over again and grab it. You caress it with your hand, it is harder than you expected and warm to the touch, it almost feels like it is throbbing in your hand. Unexplained feelings of excitement run through your body. You hear through the wall the guy saying, "Stop playing with it and stroke it." "Huh?" You reply, not knowing why he wants you to stroke it. He replies, "Really, you don''t know? Just grab it with your hand and slide it up and down."'
  593. gs 'arousal', 'foreplay', 5, 'unknown'
  594. gs 'stat'
  595. gs 'willpower', 'hj', 'resist', 'hard'
  596. if will_cost <= pcs_willpwr:
  597. act 'Stop (<<will_cost>> Willpower)':
  598. *clr & cla
  599. gs 'willpower', 'hj', 'resist', 'hard'
  600. gs 'willpower', 'pay', 'resist'
  601. gs 'arousal', 'end'
  602. gs 'stat'
  603. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/eww.mp4"></video></center>'
  604. 'You let go of him, wondering what possessed you to grab some stranger''s dick in the first place. You quickly leave the cabine, you can hear the guy. "Hey why did you stop?... Hello? Are you still there? What the fuck!"'
  605. act 'Quickly get out': gt 'pav_commercial'
  606. end
  607. else
  608. act 'Stop (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  609. end
  610. act 'Slide your hand on his penis':
  611. *clr & cla
  612. gs 'stat'
  613. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/ghstroke1.mp4"></video></center>'
  614. 'You decide to gently slide your hand on his dick. You feel his hard penis throb as you continue to slide your hand up and down. To your surprise you are really enjoying stroking the dick, your pussy starts to itch from the experience. As you get more turned on, you grab it with both hands and stroke it.'
  615. gs 'arousal', 'hj', 5, 'unknown'
  616. gs 'stat'
  617. act 'Continue Stroking':
  618. *clr & cla
  619. minut +=5
  620. gs 'arousal', 'end'
  621. gs 'cum_call', 'hands', 'an unknown guy from the gloryhole'
  622. gs 'stat'
  623. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/ghmastcum.mp4"></video></center>'
  624. 'Without any warning, hot white liquid spurts out the tip of his penis. You look at your hands, watching the sperm run down the back of your hand and down onto your arm. The man panting says, "That was," he takes another breath, "That was great."'
  625. 'You decide to lick a bit of the white liquid off your hand curiously wanting to know what it tastes like. It''s slimy and tastes tart.'
  626. act 'Continue': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  627. end
  628. end
  629. end
  630. end
  631. if $ARGS[0] = 'blowjob':
  632. *clr & cla
  633. if temp ! 3004:
  634. guy += 1
  635. ghnow += 1
  636. gloryhole += 1
  637. end
  638. if gandon = 1 and temp ! 3004:
  639. act 'remove condom':
  640. *clr & cla
  641. if colir = 1:
  642. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/start/condomoff1.mp4"></video></center>'
  643. else
  644. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/start/condomoff'+rand(1,2)+'.mp4"></video></center>'
  645. end
  646. gandon = 0
  647. temp = rand(1,20)
  648. if temp <= 10:
  649. '"Ni-i-ice"... few more banknots slip throught the hole.'
  650. money += rand(1,8) * 25
  651. act 'continue': gt 'mod_public_WC_cabine', 'blowjob'
  652. elseif temp = 20:
  653. 'The guy said WTF bitch!!!'
  654. if rand(1,2) = 1:
  655. 'He quickly remove his cock and angrily go away.'
  656. ghnow -= rand(0,2)
  657. if ghnow < 0: ghnow = 0
  658. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  659. act 'Wait':
  660. *clr & cla
  661. 'You decide stay and wait for someone to come.'
  662. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  663. end
  664. if gloryhole >= 50:
  665. act 'Try to sell my pussy':
  666. ztemp = 2
  667. gt 'mod_public_WC_cabine', 'hole'
  668. end
  669. end
  670. else
  671. 'Hey cunt! I swear if you don''t dress a condom back you will have problems!!!'
  672. if prezik > 0:
  673. act 'use my condom':
  674. *clr & cla
  675. prezik -= 1
  676. gandon = 1
  677. minut += 5
  678. gs 'stat'
  679. 'Ok, girl. Now go on.'
  680. act 'continue':
  681. temp = 3004
  682. gt 'mod_public_WC_cabine', 'blowjob'
  683. end
  684. end
  685. end
  686. act 'I have no condoms':
  687. *clr & cla
  688. 'Then give my money back and 300 over for destroyed condom'
  689. if money >= $GROSHI + 300 :
  690. act 'Give the money back':
  691. money -= $GROSHI + 300
  692. gs 'stat'
  693. 'Buy bitch, we even'
  694. 'The jerk go away'
  695. ghnow -= rand(0,2)
  696. if ghnow < 0: ghnow = 0
  697. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  698. act 'Wait':
  699. *clr & cla
  700. 'You decide stay and wait for someone to come.'
  701. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  702. end
  703. if gloryhole >= 50:
  704. act 'Try to sell my pussy':
  705. ztemp = 2
  706. gt 'mod_public_WC_cabine', 'hole'
  707. end
  708. end
  709. end
  710. end
  711. act 'I have no money yet':
  712. *clr & cla
  713. stat['pcs_persuas'] += rand(0,2)
  714. gs 'stat'
  715. if pcs_persuas >= rand(0, 70):
  716. 'Shit girl, you have pissed me off!'
  717. 'Fuck you! Bitch!!!'
  718. 'The jerk go away'
  719. ghnow -= rand(0,2)
  720. if ghnow < 0: ghnow = 0
  721. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  722. act 'Wait':
  723. *clr & cla
  724. 'You decide stay and wait for someone to come.'
  725. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  726. end
  727. if gloryhole >= 50:
  728. act 'Try to sell my pussy':
  729. ztemp = 2
  730. gt 'mod_public_WC_cabine', 'hole'
  731. end
  732. end
  733. else
  734. 'Bitch, I don''t believe you!'
  735. 'The door to the cabin is knocked out!'
  736. gandon = 1
  737. if ghnow >= 5:
  738. act 'Yell':gt 'mod_public_WC_cabine', 'rape2'
  739. else
  740. gs 'npcgeneratec', 0, 'Purse Snatcher', rand(18,45)
  741. gs 'boyStat', $npclastgenerated
  742. gs 'fight','initFight'
  743. gs 'fight_npcdata', 'snatcher'
  744. act 'Fight': gt 'fight', 'start'
  745. end
  746. end
  747. end
  748. end
  749. end
  750. else
  751. act 'continue':
  752. temp = 3004
  753. gt 'mod_public_WC_cabine', 'blowjob'
  754. end
  755. end
  756. end
  757. end
  758. if gandon = 0:
  759. if colir = 1:
  760. temp = rand(1,5)
  761. if temp = 1:
  762. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/bj/bjv.mp4"></video></center>'
  763. else
  764. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/bj/bj ('+rand(1,20)+').jpg"></center>'
  765. end
  766. elseif colir = 2:
  767. temp = rand(1,5)
  768. if temp = 1:
  769. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/bj/bjv ('+rand(1,2)+').mp4"></video></center>'
  770. else
  771. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/bj/bj ('+rand(1,18)+').jpg"></center>'
  772. end
  773. end
  774. else
  775. if colir = 1:
  776. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/b/bjv ('+rand(1,4)+').mp4"></video></center>'
  777. else
  778. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/ch/bjv.mp4"></video></center>'
  779. end
  780. end
  781. 'You wrap your lips around his dick and take his <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock in your mouth and start to suck it, you suck the cock enthusiastically.'
  782. gs 'arousal', 'bj', 5, 'unknown', 'sub'
  783. gs 'stat'
  784. if $clothingworntype ! 'nude':
  785. if stat['vaginal'] > 0 or stat['anal'] > 0:act 'Undress':gt 'mod_public_WC_cabine', 'ghsex'
  786. else
  787. if stat['vaginal'] > 0 or stat['anal'] > 0:act 'Use my other holes':gt 'mod_public_WC_cabine', 'ghsex'
  788. end
  789. if ghnow >= 4 and gandon = 0:
  790. ztemp = 3
  791. if rand(1,2) = 1:
  792. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/d2/show/2D_bj.jpg"></center>'
  793. else
  794. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/d2/show/2D.jpg"></center>'
  795. end
  796. 'You see a new dick comes from the another hole, which you didn''t notice before.'
  797. temp = 100
  798. act 'Grab 2nd Dick':gt 'mod_public_WC_cabine', '2D'
  799. end
  800. act 'make a selfie':
  801. if colir = 1:
  802. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/selfie/b2.jpg"></center>'
  803. else
  804. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/selfie/ch.jpg"></center>'
  805. end
  806. minut += 3
  807. gs 'stat'
  808. gs 'willpower', 'exhib', 'self', 'hard'
  809. if will_cost <= pcs_willpwr:
  810. act 'make a stories on ВКонтакте (<<will_cost>> Willpower)':
  811. gs 'willpower', 'pay', 'self'
  812. gs 'stat'
  813. minut += 5
  814. if ghnow >= 5:
  815. ghnow -= 2
  816. else
  817. ghnow += 3
  818. end
  819. pav_prostitute += 4
  820. slutty += 2
  821. pav_media += rand(0,1)
  822. pcs_inhib += rand(1,2)
  823. gs 'flash', 'exhibitionism', 2
  824. gs 'stat'
  825. if bfa >= 1:
  826. if rand(0,100) >= 80:
  827. 'I received a massage from my boyfriend... We broke up.'
  828. gs 'lover', 'remove', lover_number
  829. slutty += 2
  830. gs 'stat'
  831. end
  832. end
  833. end
  834. else
  835. act 'make a stories on ВКонтакте (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  836. end
  837. if bfa >= 1:
  838. gs 'willpower', 'exhib', 'self', 'hard'
  839. if will_cost <= pcs_willpwr:
  840. act 'send it to my boyfriend (break up) (<<will_cost>> Willpower)':
  841. gs 'willpower', 'pay', 'self'
  842. gs 'stat'
  843. gs 'lover', 'remove', lover_number
  844. willpowermax += rand(1,2)
  845. slutty += 2
  846. gs 'stat'
  847. end
  848. else
  849. act 'send it to my boyfriend (break up) (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  850. end
  851. end
  852. end
  853. act 'Continue to Suck':
  854. *clr & cla
  855. if gandon = 0:
  856. if colir = 1:
  857. temp = rand(1,5)
  858. if temp = 1:
  859. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/bj/bjv.mp4"></video></center>'
  860. else
  861. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/bj/bj ('+rand(1,20)+').jpg"></center>'
  862. end
  863. else
  864. temp = rand(1,5)
  865. if temp = 1:
  866. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/bj/bjv ('+rand(1,2)+').mp4"></video></center>'
  867. else
  868. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/bj/bj ('+rand(1,18)+').jpg"></center>'
  869. end
  870. end
  871. else
  872. if colir = 1:
  873. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/b/bjv ('+rand(1,4)+').mp4"></video></center>'
  874. else
  875. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/ch/bjv.mp4"></video></center>'
  876. end
  877. end
  878. 'You suck on his dick, bobbing your head, sometimes using your hands to stroke his shaft at the same time, other times your hands massage his balls. Before to long you hear the guy moan in pleasure, "I''m cuming."'
  879. gs 'arousal', 'bj', 5, 'unknown', 'sub'
  880. gs 'stat'
  881. act 'Swallow':
  882. *clr & cla
  883. swallow += 1
  884. gs 'cum_call', 'mouth', 'an unknown guy from the gloryhole'
  885. gs 'arousal', 'end'
  886. gs 'stat'
  887. if colir = 1:
  888. temp = rand(1,2)
  889. if temp = 1:
  890. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/bj/bjcv ('+rand(1,29)+').mp4"></video></center>'
  891. else
  892. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/cum/bj/bjc ('+rand(1,95)+').jpg"></center>'
  893. end
  894. else
  895. temp = rand(1,3)
  896. if temp = 1:
  897. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/cum/bj/bjcv ('+rand(1,3)+').mp4"></video></center>'
  898. else
  899. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/cum/bj/bjc ('+rand(1,14)+').jpg"></center>'
  900. end
  901. end
  902. 'Despite what he says you keep sucking his dick, you are looking forward to him filling your mouth up with his tasty sperm. Moments later hot spurts of cum fill your mouth, you savor the taste of it in your mouth, before you swallow it all down.'
  903. act 'Get up': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  904. end
  905. act 'point on my face':
  906. *clr & cla
  907. facial += 1
  908. gs 'cum_call', 'face', 'an unknown guy from the gloryhole'
  909. gs 'arousal', 'end'
  910. gs 'stat'
  911. if colir = 1:
  912. temp = rand(1,5)
  913. if temp = 1:
  914. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/nalyce/lycecv ('+rand(1,2)+').mp4"></video></center>'
  915. else
  916. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/cum/nalyce/lycec ('+rand(1,12)+').jpg"></center>'
  917. end
  918. else
  919. temp = rand(1,5)
  920. if temp = 1:
  921. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/cum/nalyce/lycecv ('+rand(1,2)+').mp4"></video></center>'
  922. else
  923. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/cum/nalyce/lycec ('+rand(1,14)+').jpg"></center>'
  924. end
  925. end
  926. 'I feel his sperm rapidly moving in his dick, I pull my mouth off his dick, shortly later, hot spurts of cum start flying and covering my face.'
  927. act 'Get up': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  928. end
  929. act 'point on my body':
  930. *clr & cla
  931. facial += 1
  932. gs 'cum_call', 'stomach', 'an unknown guy from the gloryhole'
  933. gs 'stat'
  934. gs 'cum_call', 'breasts', 'an unknown guy from the gloryhole'
  935. gs 'stat'
  936. if $clothingworntype ! 'nude':
  937. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  938. gs 'stat'
  939. end
  940. if colir = 1:
  941. temp = rand(1,2)
  942. if temp = 1:
  943. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/tilo/tilocv ('+rand(1,3)+').mp4"></video></center>'
  944. else
  945. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/cum/tilo/tiloc ('+rand(1,3)+').jpg"></center>'
  946. end
  947. else
  948. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/cum/tilo/tilo ('+rand(1,3)+').jpg"></center>'
  949. end
  950. 'I feel his sperm rapidly moving in his dick, I pull my mouth off his dick, shortly later, hot spurts of cum start flying and showering me.'
  951. act 'Get up': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  952. end
  953. if gandon = 1:
  954. *clr & cla
  955. if gandon = 0:
  956. if colir = 1:
  957. temp = rand(1,5)
  958. if temp = 1:
  959. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/bj/bjv.mp4"></video></center>'
  960. else
  961. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/bj/bj ('+rand(1,20)+').jpg"></center>'
  962. end
  963. else
  964. temp = rand(1,5)
  965. if temp = 1:
  966. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/bj/bjv ('+rand(1,2)+').mp4"></video></center>'
  967. else
  968. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/bj/bj ('+rand(1,18)+').jpg"></center>'
  969. end
  970. end
  971. else
  972. if colir = 1:
  973. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/b/bjv ('+rand(1,4)+').mp4"></video></center>'
  974. else
  975. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/ch/bjv.mp4"></video></center>'
  976. end
  977. end
  978. 'I suck on his dick, bobbing my head, sometimes using my hands to stroke his shaft at the same time, other times my hands massage his balls. Before to long I hear the guy moan in pleasure, "I''m cuming."'
  979. act 'Make him cum':
  980. *clr & cla
  981. if colir = 1:
  982. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/b/cum/bj.jpg"></center>'
  983. else
  984. if rand (1,2) = 1:
  985. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/ch/cum/bj1.jpg"></center>'
  986. else
  987. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/ch/cum/bjv1.mp4"></video></center>'
  988. end
  989. end
  990. gs 'cum_call', 'internalcondom'
  991. gs 'arousal', 'end'
  992. gs 'stat'
  993. 'I feel he is on the edge. And a moment later the condom starts to fill up'
  994. if trt_cumeater = 1:
  995. cla
  996. act 'I didn''t want to waste it':
  997. *clr & cla
  998. swallow += 1
  999. minut += rand (5,15)
  1000. 'I lick all the cum from condom...'
  1001. if rand (1,10) >= 9:
  1002. if $clothingworntype ! 'nude':
  1003. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  1004. gs 'stat'
  1005. '...some drops fell on my cloth...'
  1006. end
  1007. end
  1008. spafinloc = 11
  1009. gs 'cum_manage'
  1010. spafinloc = 12
  1011. gs 'cum_manage'
  1012. spafinloc = 13
  1013. gs 'cum_manage'
  1014. if rand (1,10) >= 10:
  1015. spafinloc = 16
  1016. gs 'cum_manage'
  1017. '...some drops fell on my hair...'
  1018. end
  1019. if rand(1,3) >= 2:
  1020. '"Wow, girl, you are rock!"'
  1021. temp = rand(0,4)
  1022. money += temp * 25
  1023. if temp > 0: 'some extra money comes from the hole!'
  1024. gs 'stat'
  1025. end
  1026. act 'Get up':
  1027. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1028. end
  1029. if rand (1,2) = 1:
  1030. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/con_drink/con_drinkv ('+rand(1,3)+').mp4"></video></center>'
  1031. else
  1032. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/con_drink/con_drink ('+rand(1,10)+').jpg"></center>'
  1033. end
  1034. end
  1035. else
  1036. act 'Get up':
  1037. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1038. end
  1039. act 'Drink cum from condom':
  1040. *clr & cla
  1041. swallow += 1
  1042. minut += rand (5,15)
  1043. 'I lick all the cum from condom...'
  1044. if rand (1,10) >= 5:
  1045. if $clothingworntype ! 'nude':
  1046. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  1047. gs 'stat'
  1048. '...some drops fell on my cloth...'
  1049. end
  1050. end
  1051. spafinloc = 11
  1052. gs 'cum_manage'
  1053. spafinloc = 12
  1054. gs 'cum_manage'
  1055. spafinloc = 13
  1056. gs 'cum_manage'
  1057. if rand (1,10) >= 6:
  1058. spafinloc = 16
  1059. gs 'cum_manage'
  1060. '...some drops fell on my hair...'
  1061. end
  1062. if rand(1,3) >= 2:
  1063. '"Wow, girl, you are rock!"'
  1064. temp = rand(0,4)
  1065. money += temp * 25
  1066. if temp > 0: 'some extra money comes from the hole!'
  1067. gs 'stat'
  1068. end
  1069. act 'Get up':
  1070. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1071. end
  1072. if rand (1,2) = 1:
  1073. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/con_drink/con_drinkv ('+rand(1,3)+').mp4"></video></center>'
  1074. else
  1075. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/con_drink/con_drink ('+rand(1,10)+').jpg"></center>'
  1076. end
  1077. end
  1078. end
  1079. end
  1080. end
  1081. end
  1082. end
  1083. if $ARGS[0] = 'hj':
  1084. *clr & cla
  1085. if temp ! 3004:
  1086. guy += 1
  1087. ghnow += 1
  1088. if ghnow <= 2: gloryhole += 1
  1089. end
  1090. stat['hj'] += 1
  1091. if gandon = 1 and temp ! 3004:
  1092. act 'remove condom':
  1093. *clr & cla
  1094. if colir = 1:
  1095. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/start/condomoff1.mp4"></video></center>'
  1096. else
  1097. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/start/condomoff'+rand(1,2)+'.mp4"></video></center>'
  1098. end
  1099. gandon = 0
  1100. temp = rand(1,20)
  1101. if temp <= 10:
  1102. '"Ni-i-ice"... few more banknots slip throught the hole.'
  1103. money += rand(1,8) * 25
  1104. act 'continue': gt 'mod_public_WC_cabine', 'hj'
  1105. elseif temp = 20:
  1106. 'The guy said WTF bitch!!!'
  1107. if rand(1,2) = 1:
  1108. 'He quickly remove his cock and angrily go away.'
  1109. ghnow -= rand(0,2)
  1110. if ghnow < 0: ghnow = 0
  1111. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1112. act 'Wait':
  1113. *clr & cla
  1114. 'You decide stay and wait for someone to come.'
  1115. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  1116. end
  1117. if gloryhole >= 50:
  1118. act 'Try to sell my pussy':
  1119. ztemp = 2
  1120. gt 'mod_public_WC_cabine', 'hole'
  1121. end
  1122. end
  1123. else
  1124. 'Hey cunt! I swear if you don''t dress a condom back you will have problems!!!'
  1125. if prezik > 0:
  1126. act 'use my condom':
  1127. *clr & cla
  1128. prezik -= 1
  1129. gandon = 1
  1130. minut += 5
  1131. gs 'stat'
  1132. 'Ok, girl. Now go on.'
  1133. act 'continue':
  1134. temp = 3004
  1135. gt 'mod_public_WC_cabine', 'hj'
  1136. end
  1137. end
  1138. end
  1139. act 'I have no condoms':
  1140. *clr & cla
  1141. 'Then give my money back and 300 over for destroyed condom'
  1142. if money >= $GROSHI + 300 :
  1143. act 'Give the money back':
  1144. money -= $GROSHI + 300
  1145. gs 'stat'
  1146. 'Buy bitch, we even'
  1147. 'The jerk go away'
  1148. ghnow -= rand(0,2)
  1149. if ghnow < 0: ghnow = 0
  1150. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1151. act 'Wait':
  1152. *clr & cla
  1153. 'You decide stay and wait for someone to come.'
  1154. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  1155. end
  1156. if gloryhole >= 50:
  1157. act 'Try to sell my pussy':
  1158. ztemp = 2
  1159. gt 'mod_public_WC_cabine', 'hole'
  1160. end
  1161. end
  1162. end
  1163. end
  1164. act 'I have no money yet':
  1165. *clr & cla
  1166. stat['pcs_persuas'] += rand(0,2)
  1167. gs 'stat'
  1168. if pcs_persuas >= rand(0, 70):
  1169. 'Shit girl, you have pissed me off!'
  1170. 'Fuck you! Bitch!!!'
  1171. 'The jerk go away'
  1172. ghnow -= rand(0,2)
  1173. if ghnow < 0: ghnow = 0
  1174. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1175. act 'Wait':
  1176. *clr & cla
  1177. 'You decide stay and wait for someone to come.'
  1178. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  1179. end
  1180. if gloryhole >= 50:
  1181. act 'Try to sell my pussy':
  1182. ztemp = 2
  1183. gt 'mod_public_WC_cabine', 'hole'
  1184. end
  1185. end
  1186. else
  1187. 'Bitch, I don''t believe you!'
  1188. 'The door to the cabin is knocked out!'
  1189. gandon = 1
  1190. if ghnow >= 5:
  1191. act 'Yell':gt 'mod_public_WC_cabine', 'rape2'
  1192. else
  1193. gs 'npcgeneratec', 0, 'Purse Snatcher', rand(18,45)
  1194. gs 'boyStat', $npclastgenerated
  1195. gs 'fight','initFight'
  1196. gs 'fight_npcdata', 'snatcher'
  1197. act 'Fight': gt 'fight', 'start'
  1198. end
  1199. end
  1200. end
  1201. end
  1202. end
  1203. else
  1204. act 'continue':
  1205. temp = 3004
  1206. gt 'mod_public_WC_cabine', 'hj'
  1207. end
  1208. end
  1209. end
  1210. end
  1211. if gandon = 0:
  1212. if colir = 1:
  1213. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/hj/hjv ('+rand(1,4)+').mp4"></video></center>'
  1214. else
  1215. if rand(1,2) = 1:
  1216. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/hj/hj.jpg"></center>'
  1217. else
  1218. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/hj/hjv'+rand(1,2)+'.mp4"></video></center>'
  1219. end
  1220. end
  1221. else
  1222. if colir = 1:
  1223. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/b/hjv ('+rand(1,3)+').mp4"></video></center>'
  1224. else
  1225. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/ch/hjv.mp4"></video></center>'
  1226. end
  1227. end
  1228. 'I wrap my hands around his <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock and start to jerk it enthusiastically.'
  1229. gs 'arousal', 'hj', 5, 'unknown', 'sub'
  1230. gs 'stat'
  1231. if $clothingworntype ! 'nude':
  1232. if stat['vaginal'] > 0 or stat['anal'] > 0:act 'Undress':gt 'mod_public_WC_cabine', 'ghsex'
  1233. else
  1234. if stat['vaginal'] > 0 or stat['anal'] > 0:act 'Use my other holes':gt 'mod_public_WC_cabine', 'ghsex'
  1235. end
  1236. if ghnow >= 4 and gandon = 0:
  1237. ztemp = 2
  1238. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/d2/show/2D.jpg"></center>'
  1239. 'You see a new dick comes from the another hole, which you didn''t notice before.'
  1240. temp = 200
  1241. act 'Grab 2nd Dick':gt 'mod_public_WC_cabine', '2D'
  1242. end
  1243. act 'Blow Him':
  1244. money += 25*rand(0,4)
  1245. gt 'mod_public_WC_cabine', 'blowjob'
  1246. end
  1247. if jerk ! 1:
  1248. act 'Give a foot job':
  1249. money += 25*rand(0,4)
  1250. jerk = 1
  1251. gt 'mod_public_WC_cabine', 'lj'
  1252. end
  1253. end
  1254. act 'make a selfie':
  1255. if colir = 1:
  1256. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/selfie/b2.jpg"></center>'
  1257. else
  1258. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/selfie/ch.jpg"></center>'
  1259. end
  1260. minut += 3
  1261. gs 'stat'
  1262. gs 'willpower', 'exhib', 'self', 'hard'
  1263. if will_cost <= pcs_willpwr:
  1264. act 'make a stories on ВКонтакте (<<will_cost>> Willpower)':
  1265. gs 'willpower', 'pay', 'self'
  1266. gs 'stat'
  1267. minut += 5
  1268. if ghnow >= 5:
  1269. ghnow -= 2
  1270. else
  1271. ghnow += 3
  1272. end
  1273. pav_prostitute += 4
  1274. slutty += 2
  1275. pav_media += rand(0,1)
  1276. pcs_inhib += rand(1,2)
  1277. gs 'flash', 'exhibitionism', 2
  1278. gs 'stat'
  1279. if bfa >= 1:
  1280. if rand(0,100) >= 80:
  1281. 'I received a massage from my boyfriend... We broke up.'
  1282. gs 'lover', 'remove', lover_number
  1283. slutty += 2
  1284. gs 'stat'
  1285. end
  1286. end
  1287. end
  1288. else
  1289. act 'make a stories on ВКонтакте (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1290. end
  1291. if bfa >= 1:
  1292. gs 'willpower', 'exhib', 'self', 'hard'
  1293. if will_cost <= pcs_willpwr:
  1294. act 'send it to my boyfriend (break up) (<<will_cost>> Willpower)':
  1295. gs 'willpower', 'pay', 'self'
  1296. gs 'stat'
  1297. gs 'lover', 'remove', lover_number
  1298. willpowermax += rand(1,2)
  1299. slutty += 2
  1300. gs 'stat'
  1301. end
  1302. else
  1303. act 'send it to my boyfriend (break up) (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1304. end
  1305. end
  1306. end
  1307. act 'Continue to jerk':
  1308. *clr & cla
  1309. if colir = 1:
  1310. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/hj/hjv ('+rand(1,4)+').mp4"></video></center>'
  1311. else
  1312. if rand(1,2) = 1:
  1313. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/hj/hj.jpg"></center>'
  1314. else
  1315. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/hj/hjv'+rand(1,2)+'.mp4"></video></center>'
  1316. end
  1317. end
  1318. 'I jerk his dick sometimes using hands massage his balls. Before to long I hear the guy moan in pleasure, "I''m cuming."'
  1319. gs 'arousal', 'hj', 5, 'unknown', 'sub'
  1320. gs 'stat'
  1321. act 'point on my face':
  1322. *clr & cla
  1323. facial += 1
  1324. gs 'cum_call', 'face', 'an unknown guy from the gloryhole'
  1325. gs 'arousal', 'end'
  1326. gs 'stat'
  1327. if colir = 1:
  1328. temp = rand(1,5)
  1329. if temp = 1:
  1330. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/nalyce/lycecv ('+rand(1,2)+').mp4"></video></center>'
  1331. else
  1332. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/cum/nalyce/lycec ('+rand(1,12)+').jpg"></center>'
  1333. end
  1334. else
  1335. temp = rand(1,5)
  1336. if temp = 1:
  1337. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/cum/nalyce/lycecv ('+rand(1,2)+').mp4"></video></center>'
  1338. else
  1339. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/cum/nalyce/lycec ('+rand(1,14)+').jpg"></center>'
  1340. end
  1341. end
  1342. 'I feel his sperm rapidly moving in his dick, I pull my mouth off his dick, shortly later, hot spurts of cum start flying and covering my face.'
  1343. act 'Get up': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1344. end
  1345. act 'point on my body':
  1346. *clr & cla
  1347. facial += 1
  1348. gs 'cum_call', 'stomach', 'an unknown guy from the gloryhole'
  1349. gs 'stat'
  1350. gs 'cum_call', 'breasts', 'an unknown guy from the gloryhole'
  1351. gs 'stat'
  1352. if $clothingworntype ! 'nude':
  1353. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  1354. gs 'stat'
  1355. end
  1356. if colir = 1:
  1357. temp = rand(1, 7)
  1358. if temp <= 3:
  1359. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/hj/hjcv ('+rand(1,4)+').mp4"></video></center>'
  1360. elseif temp = 4:
  1361. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/tilo/tilocv (3).mp4"></video></center>'
  1362. else
  1363. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/cum/tilo/tiloc ('+rand(1,3)+').jpg"></center>'
  1364. end
  1365. else
  1366. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/cum/tilo/tilo ('+rand(1,3)+').jpg"></center>'
  1367. end
  1368. 'My hands feel his sperm rapidly moving in his dick, I point it on me, shortly later, hot spurts of cum start flying and showering me.'
  1369. act 'Get up': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1370. end
  1371. if gandon = 1:
  1372. *clr & cla
  1373. if colir = 1:
  1374. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/b/hjv ('+rand(1,3)+').mp4"></video></center>'
  1375. else
  1376. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/ch/hjv.mp4"></video></center>'
  1377. end
  1378. 'I feel he is on the edge.'
  1379. act 'continue to jerk':
  1380. *clr & cla
  1381. if colir = 1:
  1382. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/b/cum/hj ('+rand(1,5)+').jpg"></center>'
  1383. else
  1384. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/ch/cum/anal1.jpg"></center>'
  1385. end
  1386. gs 'cum_call', 'internalcondom'
  1387. gs 'arousal', 'end'
  1388. gs 'stat'
  1389. 'I see how his cum fill up his condom'
  1390. if trt_cumeater = 1:
  1391. cla
  1392. act 'I didn''t want to waste it':
  1393. *clr & cla
  1394. swallow += 1
  1395. minut += rand (5,15)
  1396. 'I lick all the cum from condom...'
  1397. if rand (1,10) >= 9:
  1398. if $clothingworntype ! 'nude':
  1399. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  1400. gs 'stat'
  1401. '...some drops fell on my cloth...'
  1402. end
  1403. end
  1404. spafinloc = 11
  1405. gs 'cum_manage'
  1406. spafinloc = 12
  1407. gs 'cum_manage'
  1408. spafinloc = 13
  1409. gs 'cum_manage'
  1410. if rand (1,10) >= 10:
  1411. spafinloc = 16
  1412. gs 'cum_manage'
  1413. '...some drops fell on my hair...'
  1414. end
  1415. if rand(1,3) >= 2:
  1416. '"Wow, girl, you are rock!"'
  1417. temp = rand(0,4)
  1418. money += temp * 25
  1419. if temp > 0: 'some extra money comes from the hole!'
  1420. gs 'stat'
  1421. end
  1422. act 'Get up':
  1423. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1424. end
  1425. if rand (1,2) = 1:
  1426. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/con_drink/con_drinkv ('+rand(1,3)+').mp4"></video></center>'
  1427. else
  1428. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/con_drink/con_drink ('+rand(1,10)+').jpg"></center>'
  1429. end
  1430. end
  1431. else
  1432. act 'Get up':
  1433. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1434. end
  1435. act 'Drink cum from condom':
  1436. *clr & cla
  1437. swallow += 1
  1438. minut += rand (5,15)
  1439. 'I lick all the cum from condom...'
  1440. if rand (1,10) >= 5:
  1441. if $clothingworntype ! 'nude':
  1442. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  1443. gs 'stat'
  1444. '...some drops fell on my cloth...'
  1445. end
  1446. end
  1447. spafinloc = 11
  1448. gs 'cum_manage'
  1449. spafinloc = 12
  1450. gs 'cum_manage'
  1451. spafinloc = 13
  1452. gs 'cum_manage'
  1453. if rand (1,10) >= 6:
  1454. spafinloc = 16
  1455. gs 'cum_manage'
  1456. '...some drops fell on my hair...'
  1457. end
  1458. if rand(1,3) >= 2:
  1459. '"Wow, girl, you are rock!"'
  1460. temp = rand(0,4)
  1461. money += temp * 25
  1462. if temp > 0: 'some extra money comes from the hole!'
  1463. gs 'stat'
  1464. end
  1465. act 'Get up':
  1466. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1467. end
  1468. if rand (1,2) = 1:
  1469. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/con_drink/con_drinkv ('+rand(1,3)+').mp4"></video></center>'
  1470. else
  1471. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/con_drink/con_drink ('+rand(1,10)+').jpg"></center>'
  1472. end
  1473. end
  1474. end
  1475. end
  1476. act 'Quickly remove the condom':
  1477. *clr & cla
  1478. facial += 1
  1479. gs 'cum_call', 'face', 'an unknown guy from the gloryhole'
  1480. gs 'arousal', 'end'
  1481. gs 'stat'
  1482. gs 'cum_call', 'stomach', 'an unknown guy from the gloryhole'
  1483. gs 'stat'
  1484. gs 'cum_call', 'breasts', 'an unknown guy from the gloryhole'
  1485. gs 'stat'
  1486. if $clothingworntype ! 'nude':
  1487. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  1488. gs 'stat'
  1489. end
  1490. if colir = 1:
  1491. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/cum/tilo/tiloc ('+rand(1,2)+').jpg"></center>'
  1492. else
  1493. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/cum/tilo/tilo (2).jpg"></center>'
  1494. end
  1495. 'Quickly removes his condom I start to showering in his cum'
  1496. if rand(1,10) >= 9:
  1497. money += 100
  1498. gs 'stat'
  1499. 'Another 100 banknot falls from the hole.'
  1500. end
  1501. act 'Get up': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1502. end
  1503. end
  1504. end
  1505. end
  1506. if $ARGS[0] = 'lj':
  1507. *clr & cla
  1508. guy += 1
  1509. if ghnow <= 2: ghnow += 1
  1510. gloryhole += 1
  1511. stat['footjob'] += 1
  1512. if gandon = 1:
  1513. act 'remove condom':
  1514. *clr & cla
  1515. if colir = 1:
  1516. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/start/condomoff1.mp4"></video></center>'
  1517. else
  1518. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/start/condomoff'+rand(1,2)+'.mp4"></video></center>'
  1519. end
  1520. gandon = 0
  1521. act 'continue': gt 'mod_public_WC_cabine', 'blowjob'
  1522. end
  1523. end
  1524. if colir = 1:
  1525. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/lj/ljv1.mp4"></video></center>'
  1526. else
  1527. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/lj/ljv1.mp4"></video></center>'
  1528. end
  1529. 'I put his <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock between my legs and starts to gently rub it.'
  1530. gs 'arousal', 'footjob', 5, 'unknown', 'sub'
  1531. gs 'stat'
  1532. if $clothingworntype ! 'nude':
  1533. if stat['vaginal'] > 0 or stat['anal'] > 0:act 'Undress':gt 'mod_public_WC_cabine', 'ghsex'
  1534. else
  1535. if stat['vaginal'] > 0 or stat['anal'] > 0:act 'Use my other holes':gt 'mod_public_WC_cabine', 'ghsex'
  1536. end
  1537. if ghnow >= 4 and gandon = 0:
  1538. ztemp = 1
  1539. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/d2/show/2D.jpg"></center>'
  1540. 'You see a new dick comes from the another hole, which you didn''t notice before.'
  1541. temp = 300
  1542. act 'Grab 2nd Dick':gt 'mod_public_WC_cabine', '2D'
  1543. end
  1544. act 'Blow Him':
  1545. money += 25*rand(0,4)
  1546. gt 'mod_public_WC_cabine', 'blowjob'
  1547. end
  1548. if jerk ! 1:
  1549. act 'Give a hand job':
  1550. money += 25*rand(0,4)
  1551. jerk = 1
  1552. gt 'mod_public_WC_cabine', 'hj'
  1553. end
  1554. end
  1555. act 'Continue to masturbate':
  1556. *clr & cla
  1557. if colir = 1:
  1558. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/lj/ljv1.mp4"></video></center>'
  1559. else
  1560. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/lj/ljv1.mp4"></video></center>'
  1561. end
  1562. if gandon = 1:
  1563. gandon = 0
  1564. 'I moving my legs up and down on his penis. In few minutes he rip off his condom.'
  1565. 'I musturbates him for some time... I hear the guy moan in pleasure, "I''m cuming."'
  1566. else
  1567. 'I moving my legs up and down on his penis. I hear the guy moan in pleasure, "I''m cuming."'
  1568. end
  1569. gs 'arousal', 'footjob', 5, 'unknown', 'sub'
  1570. gs 'stat'
  1571. act 'he cums':
  1572. *clr & cla
  1573. gs 'cum_call', 'stomach', 'an unknown guy from the gloryhole'
  1574. gs 'stat'
  1575. gs 'cum_call', 'breasts', 'an unknown guy from the gloryhole'
  1576. gs 'stat'
  1577. gs 'cum_call', 'legs', 'an unknown guy from the gloryhole'
  1578. gs 'stat'
  1579. if $clothingworntype ! 'nude':
  1580. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  1581. gs 'stat'
  1582. end
  1583. if colir = 1:
  1584. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/cumtilo/ct ('+rand(1,4)+').jpg"></center>'
  1585. else
  1586. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/cumtilo/ct ('+rand(1,4)+').jpg"></center>'
  1587. end
  1588. 'He is sprinking cum all over me.'
  1589. act 'Get up': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1590. end
  1591. end
  1592. end
  1593. if $ARGS[0] = 'ghsex':
  1594. *clr & cla
  1595. money += 25*rand(0,7)
  1596. gs 'stat'
  1597. '<center><b><font color="maroon">Empty Stall</font></b></center>'
  1598. if $clothingworntype = 'nude':
  1599. 'I badly want to fuck him.'
  1600. if colir = 1:
  1601. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/wait/walldick1.jpg"></center>'
  1602. else
  1603. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/wait/walldick2.jpg"></center>'
  1604. end
  1605. else
  1606. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/ghundress.mp4"></video></center>'
  1607. 'I let go of him and quickly undress, I badly want to fuck him.'
  1608. if rand (1,15) <= 1 and ghnow >= 4:
  1609. 'While I am undressing hands from holes start to rub me.'
  1610. '<center><video autoplay loop src="mod/public_WC/wc/gh/hands from holes.mp4"></video></center>'
  1611. gs 'arousal', 'foreplay', 5, 'unknown', 'sub'
  1612. gs 'stat'
  1613. if ghnow >= 4 and gandon = 0:
  1614. ztemp = 1
  1615. temp = 100
  1616. act '"I want your dics together!"':gt 'mod_public_WC_cabine', '2D'
  1617. end
  1618. end
  1619. end
  1620. gs 'stat'
  1621. if stat['anal'] > 0: act 'Ass':gt 'mod_public_WC_cabine', 'anal'
  1622. if stat['vaginal'] > 0: act 'Pussy':gt 'mod_public_WC_cabine', 'pussy2'
  1623. end
  1624. if $ARGS[0] = 'anal':
  1625. *clr & cla
  1626. if temp ! 3004:
  1627. ghnow += 1
  1628. end
  1629. if gandon = 1 and temp ! 3004:
  1630. act 'remove condom':
  1631. *clr & cla
  1632. if colir = 1:
  1633. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/start/condomoff1.mp4"></video></center>'
  1634. else
  1635. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/start/condomoff'+rand(1,2)+'.mp4"></video></center>'
  1636. end
  1637. gandon = 0
  1638. temp = rand(1,20)
  1639. if temp <= 10:
  1640. '"Ni-i-ice"... few more banknots slip throught the hole.'
  1641. money += rand(1,8) * 25
  1642. act 'continue': gt 'mod_public_WC_cabine', 'anal'
  1643. elseif temp = 20:
  1644. 'The guy said WTF bitch!!!'
  1645. if rand(1,2) = 1:
  1646. 'He quickly remove his cock and angrily go away.'
  1647. ghnow -= rand(0,2)
  1648. if ghnow < 0: ghnow = 0
  1649. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1650. act 'Wait':
  1651. *clr & cla
  1652. 'You decide stay and wait for someone to come.'
  1653. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  1654. end
  1655. if gloryhole >= 50:
  1656. act 'Try to sell my pussy':
  1657. ztemp = 2
  1658. gt 'mod_public_WC_cabine', 'hole'
  1659. end
  1660. end
  1661. else
  1662. 'Hey cunt! I swear if you don''t dress a condom back you will have problems!!!'
  1663. if prezik > 0:
  1664. act 'use my condom':
  1665. *clr & cla
  1666. prezik -= 1
  1667. gandon = 1
  1668. minut += 5
  1669. gs 'stat'
  1670. 'Ok, girl. Now go on.'
  1671. act 'continue':
  1672. temp = 3004
  1673. gt 'mod_public_WC_cabine', 'anal'
  1674. end
  1675. end
  1676. end
  1677. act 'I have no condoms':
  1678. *clr & cla
  1679. 'Then give my money back and 300 over for destroyed condom'
  1680. if money >= $GROSHI + 300 :
  1681. act 'Give the money back':
  1682. money -= $GROSHI + 300
  1683. gs 'stat'
  1684. 'Buy bitch, we even'
  1685. 'The jerk go away'
  1686. ghnow -= rand(0,2)
  1687. if ghnow < 0: ghnow = 0
  1688. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1689. act 'Wait':
  1690. *clr & cla
  1691. 'You decide stay and wait for someone to come.'
  1692. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  1693. end
  1694. if gloryhole >= 50:
  1695. act 'Try to sell my pussy':
  1696. ztemp = 2
  1697. gt 'mod_public_WC_cabine', 'hole'
  1698. end
  1699. end
  1700. end
  1701. end
  1702. act 'I have no money yet':
  1703. *clr & cla
  1704. stat['pcs_persuas'] += rand(0,2)
  1705. gs 'stat'
  1706. if pcs_persuas >= rand(0, 70):
  1707. 'Shit girl, you have pissed me off!'
  1708. 'Fuck you! Bitch!!!'
  1709. 'The jerk go away'
  1710. ghnow -= rand(0,2)
  1711. if ghnow < 0: ghnow = 0
  1712. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1713. act 'Wait':
  1714. *clr & cla
  1715. 'You decide stay and wait for someone to come.'
  1716. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  1717. end
  1718. if gloryhole >= 50:
  1719. act 'Try to sell my pussy':
  1720. ztemp = 2
  1721. gt 'mod_public_WC_cabine', 'hole'
  1722. end
  1723. end
  1724. else
  1725. 'Bitch, I don''t believe you!'
  1726. 'The door to the cabin is knocked out!'
  1727. gandon = 1
  1728. if ghnow >= 5:
  1729. act 'Yell':gt 'mod_public_WC_cabine', 'rape2'
  1730. else
  1731. gs 'npcgeneratec', 0, 'Purse Snatcher', rand(18,45)
  1732. gs 'boyStat', $npclastgenerated
  1733. gs 'fight','initFight'
  1734. gs 'fight_npcdata', 'snatcher'
  1735. act 'Fight': gt 'fight', 'start'
  1736. end
  1737. end
  1738. end
  1739. end
  1740. end
  1741. else
  1742. act 'continue':
  1743. temp = 3004
  1744. gt 'mod_public_WC_cabine', 'anal'
  1745. end
  1746. end
  1747. end
  1748. end
  1749. if gandon = 0:
  1750. if colir = 1:
  1751. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/anal/analv.mp4"></video></center>'
  1752. else
  1753. if rand(1,3) <= 1:
  1754. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/anal/anal'+rand(1,2)+'.jpg"></center>'
  1755. else
  1756. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/anal/analv ('+rand(1,6)+').mp4"></video></center>'
  1757. end
  1758. end
  1759. else
  1760. if colir = 1:
  1761. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/b/anal.jpg"></center>'
  1762. else
  1763. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/ch/anal.jpg"></center>'
  1764. end
  1765. end
  1766. if ghnow >= 4 and gandon = 0:
  1767. '<center><video autoplay loop src="mod/public_WC/wc/gh/d2/show/2D_anal.mp4"></video></center>'
  1768. 'You see a new dick comes from the another hole, which you didn''t notice before.'
  1769. temp = 200
  1770. ztep = 4
  1771. act 'Grab 2nd Dick':gt 'mod_public_WC_cabine', '2D_vag'
  1772. end
  1773. 'You rub your wet pussy and get your fingers nice and wet and then rub it on your asshole, you do the same to his dick, then you guide his <<npc_dick[$npclastgenerated]>>cm <<$npc_thdick[$npclastgenerated]>> cock into your ass. You feel his dick enter your tight ass, feelings of pain and pleasure rush through you.'
  1774. gs 'arousal', 'masturbate', 5, 'unknown', 'sub'
  1775. gs 'arousal', 'anal', 5, 'unknown', 'sub'
  1776. minut -= 5
  1777. gs 'stat'
  1778. act 'Keep Going':
  1779. *clr & cla
  1780. gs 'stat'
  1781. if gandon = 0:
  1782. if colir = 1:
  1783. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/anal/analv.mp4"></video></center>'
  1784. else
  1785. if rand(1,3) <= 1:
  1786. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/anal/anal'+rand(1,2)+'.jpg"></center>'
  1787. else
  1788. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/anal/analv ('+rand(1,6)+').mp4"></video></center>'
  1789. end
  1790. end
  1791. else
  1792. if colir = 1:
  1793. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/b/anal.jpg"></center>'
  1794. else
  1795. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/ch/anal.jpg"></center>'
  1796. end
  1797. end
  1798. if pcs_ass < 10:
  1799. 'The pain doesn''t fade and instead it starts to hurt worse after a while and the pleasure starts to fade. You fuck his dick with your ass, at first taking him deeper and deeper, as you get faster and faster. As the pleasure fades and the pain gets worse you slow down and don''t take him as deep. you start to rub your clit to help with the sensation of pleasure. You consider stopping as the pain gets worse, but you can tell by the throbbing of his dick and ragged breathing he is about to cum and decided to keep it up so he can finish.'
  1800. elseif pcs_ass < 20:
  1801. 'The pain fades slowly and soon all you feel pleasure. You fuck his dick with your ass, taking him deeper and deeper, as you get faster and faster, you start to rub your clit as you feel yourself getting close to climax. You can tell by the throbbing of his dick and ragged breathing he is about to cum.'
  1802. else
  1803. 'The pain fades quickly and soon all you feel pleasure. You fuck his dick with your ass, taking him deeper and deeper, as you get faster and faster, you start to rub your clit as you feel yourself getting close to climax. You can tell by the throbbing of his dick and ragged breathing he is about to cum.'
  1804. end
  1805. gs 'arousal', 'anal', 5, 'unknown', 'sub'
  1806. gs 'stat'
  1807. act 'Let him cum in your ass':
  1808. *clr & cla
  1809. gs 'cum_call', 'anus', 'an unknown guy from the gloryhole'
  1810. gs 'arousal', 'anal', 10, 'unknown', 'sub'
  1811. minut -= 9
  1812. gs 'arousal', 'end'
  1813. gs 'stat'
  1814. if colir = 1:
  1815. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/krem_anal/analcv.mp4"></video></center>'
  1816. else
  1817. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/cum/krem_anal/analcv ('+rand(1,3)+').mp4"></video></center>'
  1818. end
  1819. 'You feel his dick throb as he shoots his load of sperm deep in your ass, filling it up. When you pull your ass off his dick, you feel the hot sperm spilling out of your gaping asshole.'
  1820. act 'Get up': gt'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1821. end
  1822. act 'Let him cum all over your ass':
  1823. *clr & cla
  1824. gs 'cum_call', 'butt', 'an unknown guy from the gloryhole'
  1825. gs 'arousal', 'anal', 10, 'unknown', 'sub'
  1826. minut -= 9
  1827. gs 'arousal', 'end'
  1828. gs 'stat'
  1829. if rand (1,13) = 1:
  1830. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/bathroom/womens/sex/ghcumonass.jpg"></center>'
  1831. else
  1832. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/asscum/asscum ('+rand(1,12)+').jpg"></center>'
  1833. end
  1834. 'You pull your ass away, feeling his cock slip out of your asshole, just as you feel hot splashing of cum landing on your butt, coating your cheeks and running down the crack of your ass.'
  1835. act 'Get up': gt'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1836. end
  1837. act 'Turn around, kneel and let him cum in your mouth':
  1838. *clr & cla
  1839. swallow += 1
  1840. gs 'cum_call', 'mouth', 'an unknown guy from the gloryhole'
  1841. if colir = 1:
  1842. temp = rand(1,2)
  1843. if temp = 1:
  1844. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/bj/bjcv ('+rand(1,29)+').mp4"></video></center>'
  1845. else
  1846. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/cum/bj/bjc ('+rand(1,95)+').jpg"></center>'
  1847. end
  1848. else
  1849. temp = rand(1,3)
  1850. if temp = 1:
  1851. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/cum/bj/bjcv ('+rand(1,3)+').mp4"></video></center>'
  1852. else
  1853. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/cum/bj/bjc ('+rand(1,14)+').jpg"></center>'
  1854. end
  1855. end
  1856. 'Once down on your knees you take his dick into your mouth and start sucking him, tasting your own ass on his dick. But you are looking forward to him filling your mouth up with his tasty sperm. Moments later hot spurts of cum fill your mouth, you savor the taste of it in your mouth, before you swallow it all down.'
  1857. gs 'arousal', 'bj', 10, 'unknown', 'sub'
  1858. minut -= 9
  1859. gs 'arousal', 'end'
  1860. gs 'stat'
  1861. act 'Get up': gt'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1862. end
  1863. act 'Turn around, kneel and let him cum on your face':
  1864. *clr & cla
  1865. facial += 1
  1866. gs 'cum_call', 'face', 'an unknown guy from the gloryhole'
  1867. gs 'arousal', 'hj', 10, 'unknown', 'sub'
  1868. minut -= 9
  1869. gs 'arousal', 'end'
  1870. gs 'stat'
  1871. if colir = 1:
  1872. temp = rand(1,5)
  1873. if temp = 1:
  1874. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/nalyce/lycecv ('+rand(1,2)+').mp4"></video></center>'
  1875. else
  1876. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/cum/nalyce/lycec ('+rand(1,12)+').jpg"></center>'
  1877. end
  1878. else
  1879. temp = rand(1,5)
  1880. if temp = 1:
  1881. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/cum/nalyce/lycecv ('+rand(1,2)+').mp4"></video></center>'
  1882. else
  1883. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/cum/nalyce/lycec ('+rand(1,14)+').jpg"></center>'
  1884. end
  1885. end
  1886. 'You put your face near his dick and start jerking him off, shortly later, hot spurts of cum start flying and covering your face.'
  1887. act 'Get up': gt'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1888. end
  1889. if gandon = 1:
  1890. *clr & cla
  1891. if gandon = 0:
  1892. if colir = 1:
  1893. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/anal/analv.mp4"></video></center>'
  1894. else
  1895. if rand(1,3) <= 1:
  1896. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/anal/anal'+rand(1,2)+'.jpg"></center>'
  1897. else
  1898. '<center><video autoplay loop src="mod/public_WC/wc/gh/gh/ch/anal/analv ('+rand(1,6)+').mp4"></video></center>'
  1899. end
  1900. end
  1901. else
  1902. if colir = 1:
  1903. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/b/anal.jpg"></center>'
  1904. else
  1905. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/ch/anal.jpg"></center>'
  1906. end
  1907. end
  1908. if pcs_ass < 10:
  1909. 'The pain doesn''t fade and instead it starts to hurt worse after a while and the pleasure starts to fade. You fuck his dick with your ass, at first taking him deeper and deeper, as you get faster and faster. As the pleasure fades and the pain gets worse you slow down and don''t take him as deep. you start to rub your clit to help with the sensation of pleasure. You consider stopping as the pain gets worse, but you can tell by the throbbing of his dick and ragged breathing he is about to cum and decided to keep it up so he can finish.'
  1910. elseif pcs_ass < 20:
  1911. 'The pain fades slowly and soon all you feel pleasure. You fuck his dick with your ass, taking him deeper and deeper, as you get faster and faster, you start to rub your clit as you feel yourself getting close to climax. You can tell by the throbbing of his dick and ragged breathing he is about to cum.'
  1912. else
  1913. 'The pain fades quickly and soon all you feel pleasure. You fuck his dick with your ass, taking him deeper and deeper, as you get faster and faster, you start to rub your clit as you feel yourself getting close to climax. You can tell by the throbbing of his dick and ragged breathing he is about to cum.'
  1914. end
  1915. act 'make him cum':
  1916. *clr & cla
  1917. if colir = 1:
  1918. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/b/cum/anal ('+rand(1,2)+').jpg"></center>'
  1919. else
  1920. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/ch/cum/anal1.jpg"></center>'
  1921. end
  1922. 'I feel warm cum fills up his condom in my ass.'
  1923. if trt_cumeater = 1:
  1924. cla
  1925. act 'I didn''t want to waste it':
  1926. *clr & cla
  1927. swallow += 1
  1928. minut += rand (5,15)
  1929. 'I lick all the cum from condom...'
  1930. if rand (1,10) >= 9:
  1931. if $clothingworntype ! 'nude':
  1932. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  1933. gs 'stat'
  1934. '...some drops fell on my cloth...'
  1935. end
  1936. end
  1937. spafinloc = 11
  1938. gs 'cum_manage'
  1939. spafinloc = 12
  1940. gs 'cum_manage'
  1941. spafinloc = 13
  1942. gs 'cum_manage'
  1943. if rand (1,10) >= 10:
  1944. spafinloc = 16
  1945. gs 'cum_manage'
  1946. '...some drops fell on my hair...'
  1947. end
  1948. if rand(1,3) >= 2:
  1949. '"Wow, girl, you are rock!"'
  1950. temp = rand(0,4)
  1951. money += temp * 25
  1952. if temp > 0: 'some extra money comes from the hole!'
  1953. gs 'stat'
  1954. end
  1955. act 'Get up':
  1956. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1957. end
  1958. if rand (1,2) = 1:
  1959. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/con_drink/con_drinkv ('+rand(1,3)+').mp4"></video></center>'
  1960. else
  1961. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/con_drink/con_drink ('+rand(1,10)+').jpg"></center>'
  1962. end
  1963. end
  1964. else
  1965. act 'Get up':
  1966. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  1967. end
  1968. act 'Drink cum from condom':
  1969. *clr & cla
  1970. swallow += 1
  1971. minut += rand (5,15)
  1972. 'I lick all the cum from condom...'
  1973. if rand (1,10) >= 5:
  1974. if $clothingworntype ! 'nude':
  1975. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  1976. gs 'stat'
  1977. '...some drops fell on my cloth...'
  1978. end
  1979. end
  1980. spafinloc = 11
  1981. gs 'cum_manage'
  1982. spafinloc = 12
  1983. gs 'cum_manage'
  1984. spafinloc = 13
  1985. gs 'cum_manage'
  1986. if rand (1,10) >= 6:
  1987. spafinloc = 16
  1988. gs 'cum_manage'
  1989. '...some drops fell on my hair...'
  1990. end
  1991. if rand(1,3) >= 2:
  1992. '"Wow, girl, you are rock!"'
  1993. temp = rand(0,4)
  1994. money += temp * 25
  1995. if temp > 0: 'some extra money comes from the hole!'
  1996. gs 'stat'
  1997. end
  1998. act 'Get up':
  1999. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  2000. end
  2001. if rand (1,2) = 1:
  2002. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/con_drink/con_drinkv ('+rand(1,3)+').mp4"></video></center>'
  2003. else
  2004. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/con_drink/con_drink ('+rand(1,10)+').jpg"></center>'
  2005. end
  2006. end
  2007. end
  2008. end
  2009. end
  2010. end
  2011. end
  2012. if $ARGS[0] = 'pussy':
  2013. if gandon = 1:
  2014. protect = 1
  2015. sexcontra = 3
  2016. elseif prezik > 0:
  2017. dynamic $prezik
  2018. protect = 1
  2019. if preziktype = 2:
  2020. sexcontra = 7
  2021. gandon = 1
  2022. 'You take one of your sabotaged condoms and put it on the stranger.'
  2023. else
  2024. sexcontra = 3
  2025. gandon = 1
  2026. 'You take a condom and put it on the stranger''s dick.'
  2027. end
  2028. else
  2029. sexcontra = 0
  2030. gandon = 0
  2031. end
  2032. end
  2033. if $ARGS[0] = 'pussy2':
  2034. *clr & cla
  2035. if temp ! 3004:
  2036. ghnow += 1
  2037. end
  2038. if gandon =1:
  2039. protect = 1
  2040. elseif prezik > 0:
  2041. dynamic $prezik
  2042. protect = 1
  2043. end
  2044. gs 'stat'
  2045. if gandon = 1 and temp ! 3004:
  2046. act 'remove condom':
  2047. *clr & cla
  2048. if colir = 1:
  2049. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/start/condomoff1.mp4"></video></center>'
  2050. else
  2051. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/start/condomoff'+rand(1,2)+'.mp4"></video></center>'
  2052. end
  2053. gandon = 0
  2054. temp = rand(1,20)
  2055. if temp <= 10:
  2056. '"Ni-i-ice"... few more banknots slip throught the hole.'
  2057. money += rand(1,8) * 25
  2058. act 'continue': gt 'mod_public_WC_cabine', 'pussy2'
  2059. elseif temp = 20:
  2060. 'The guy said WTF bitch!!!'
  2061. if rand(1,2) = 1:
  2062. 'He quickly remove his cock and angrily go away.'
  2063. ghnow -= rand(0,2)
  2064. if ghnow < 0: ghnow = 0
  2065. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  2066. act 'Wait':
  2067. *clr & cla
  2068. 'You decide stay and wait for someone to come.'
  2069. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  2070. end
  2071. if gloryhole >= 50:
  2072. act 'Try to sell my pussy':
  2073. ztemp = 2
  2074. gt 'mod_public_WC_cabine', 'hole'
  2075. end
  2076. end
  2077. else
  2078. 'Hey cunt! I swear if you don''t dress a condom back you will have problems!!!'
  2079. if prezik > 0:
  2080. act 'use my condom':
  2081. *clr & cla
  2082. prezik -= 1
  2083. gandon = 1
  2084. minut += 5
  2085. gs 'stat'
  2086. 'Ok, girl. Now go on.'
  2087. act 'continue':
  2088. temp = 3004
  2089. gt 'mod_public_WC_cabine', 'pussy2'
  2090. end
  2091. end
  2092. end
  2093. act 'I have no condoms':
  2094. *clr & cla
  2095. 'Then give my money back and 300 over for destroyed condom'
  2096. if money >= $GROSHI + 300 :
  2097. act 'Give the money back':
  2098. money -= $GROSHI + 300
  2099. gs 'stat'
  2100. 'Buy bitch, we even'
  2101. 'The jerk go away'
  2102. ghnow -= rand(0,2)
  2103. if ghnow < 0: ghnow = 0
  2104. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  2105. act 'Wait':
  2106. *clr & cla
  2107. 'You decide stay and wait for someone to come.'
  2108. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  2109. end
  2110. if gloryhole >= 50:
  2111. act 'Try to sell my pussy':
  2112. ztemp = 2
  2113. gt 'mod_public_WC_cabine', 'hole'
  2114. end
  2115. end
  2116. end
  2117. end
  2118. act 'I have no money yet':
  2119. *clr & cla
  2120. stat['pcs_persuas'] += rand(0,2)
  2121. gs 'stat'
  2122. if pcs_persuas >= rand(0, 70):
  2123. 'Shit girl, you have pissed me off!'
  2124. 'Fuck you! Bitch!!!'
  2125. 'The jerk go away'
  2126. ghnow -= rand(0,2)
  2127. if ghnow < 0: ghnow = 0
  2128. act 'Leave': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  2129. act 'Wait':
  2130. *clr & cla
  2131. 'You decide stay and wait for someone to come.'
  2132. act 'Open your mouth wider': gt 'mod_public_WC_cabine', 'hole'
  2133. end
  2134. if gloryhole >= 50:
  2135. act 'Try to sell my pussy':
  2136. ztemp = 2
  2137. gt 'mod_public_WC_cabine', 'hole'
  2138. end
  2139. end
  2140. else
  2141. 'Bitch, I don''t believe you!'
  2142. 'The door to the cabin is knocked out!'
  2143. gandon = 1
  2144. if ghnow >= 5:
  2145. act 'Yell':gt 'mod_public_WC_cabine', 'rape2'
  2146. else
  2147. gs 'npcgeneratec', 0, 'Purse Snatcher', rand(18,45)
  2148. gs 'boyStat', $npclastgenerated
  2149. gs 'fight','initFight'
  2150. gs 'fight_npcdata', 'snatcher'
  2151. act 'Fight': gt 'fight', 'start'
  2152. end
  2153. end
  2154. end
  2155. end
  2156. end
  2157. else
  2158. act 'continue':
  2159. temp = 3004
  2160. gt 'mod_public_WC_cabine', 'pussy2'
  2161. end
  2162. end
  2163. end
  2164. end
  2165. if gandon = 0:
  2166. if colir = 1:
  2167. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/vag/vag ('+rand(1,4)+').mp4"></video></center>'
  2168. else
  2169. if rand(1,4) <= 2:
  2170. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/vag/vag ('+rand(1,5)+').jpg"></center>'
  2171. else
  2172. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/vag/vagv ('+rand(1,3)+').mp4"></video></center>'
  2173. end
  2174. end
  2175. else
  2176. if colir = 1:
  2177. if rand(1,4) <= 2:
  2178. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/b/vag ('+rand(1,9)+').jpg"></center>'
  2179. else
  2180. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/b/vagv ('+rand(1,5)+').mp4"></video></center>'
  2181. end
  2182. else
  2183. if rand(1,7) <= 1:
  2184. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/ch/vag.jpg"></center>'
  2185. else
  2186. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/ch/vagv ('+rand(1,4)+').mp4"></video></center>'
  2187. end
  2188. end
  2189. end
  2190. gs 'mod_public_WC_cabine', 'pussy'
  2191. if ghnow >= 4 and gandon = 0:
  2192. '<center><video autoplay loop src="mod/public_WC/wc/gh/d2/show/2D_anal.mp4"></video></center>'
  2193. 'You see a new dick comes from the another hole, which you didn''t notice before.'
  2194. temp = 200
  2195. ztemp = 5
  2196. act 'Grab 2nd Dick': gt 'mod_public_WC_cabine', '2D_vag'
  2197. end
  2198. 'You turn around and back up to the hole, you use one hand to guide his dick into your pussy. The <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock slides easily into your wet pussy, causing you to moan in pleasure as you move your hips back and forth. You start humping his dick with fast movements, taking the full length of him balls deep into you, which causes him to moan loudly.'
  2199. gs 'arousal', 'vaginal', 10, 'unknown', 'sub'
  2200. gs 'stat'
  2201. if protect ! 1:
  2202. act 'Allow him to cum inside':
  2203. *clr & cla
  2204. gs 'cum_call', 'vaginal', 'an unknown guy from the gloryhole'
  2205. if gandon = 0:
  2206. if colir = 1:
  2207. if rand(1,7) <= 5:
  2208. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/krem/kremv ('+rand(1,5)+').mp4"></video></center>'
  2209. else
  2210. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/cum/krem/krem ('+rand(1,2)+').jpg"></center>'
  2211. end
  2212. else
  2213. if rand(1,6) <= 1:
  2214. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/cum/krem/krem.jpg"></center>'
  2215. else
  2216. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/cum/krem/kremv ('+rand(1,5)+').mp4"></video></center>'
  2217. end
  2218. end
  2219. end
  2220. 'Instead of pulling away, you moan "Inside me, please," and push yourself hard against the opening in the wall. You feel his hot sperm fill your pussy in spurt after spurt. When you finally pull yourself off him, you can feel the sperm leaking out of your pussy.'
  2221. gs 'cuminsidereact', 'an unknown guy from the gloryhole'
  2222. gs 'arousal', 'vaginal', 10, 'unknown', 'sub'
  2223. minut -= 9
  2224. gs 'arousal', 'end'
  2225. gs 'stat'
  2226. act 'Get dressed': gt'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  2227. end
  2228. act 'Quickly turn around and get on your knees':
  2229. *clr & cla
  2230. gs 'stat'
  2231. act 'Let him cum in your mouth':
  2232. *clr & cla
  2233. swallow += 1
  2234. gs 'cum_call', 'mouth', 'an unknown guy from the gloryhole'
  2235. temp = rand(1,11)
  2236. if colir = 1:
  2237. temp = rand(1,2)
  2238. if temp = 1:
  2239. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/bj/bjcv ('+rand(1,29)+').mp4"></video></center>'
  2240. else
  2241. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/cum/bj/bjc ('+rand(1,95)+').jpg"></center>'
  2242. end
  2243. else
  2244. temp = rand(1,3)
  2245. if temp = 1:
  2246. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/cum/bj/bjcv ('+rand(1,3)+').mp4"></video></center>'
  2247. else
  2248. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/cum/bj/bjc ('+rand(1,14)+').jpg"></center>'
  2249. end
  2250. end
  2251. 'Once down on your knees you take his dick into your mouth and start sucking him. You are looking forward to him filling your mouth up with his tasty sperm. Moments later hot spurts of cum fill your mouth, you savor the taste of it in your mouth, before you swallow it all down.'
  2252. gs 'arousal', 'bj', 10, 'unknown', 'sub'
  2253. minut -= 9
  2254. gs 'arousal', 'end'
  2255. gs 'stat'
  2256. act 'Get dressed': gt'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  2257. end
  2258. end
  2259. act 'Let him cum on your face':
  2260. *clr & cla
  2261. gs 'willpower', 'swallow', 'resist'
  2262. gs 'willpower', 'pay', 'resist'
  2263. facial += 1
  2264. gs 'cum_call', 'face', 'an unknown guy from the gloryhole'
  2265. gs 'arousal', 'hj', 10, 'unknown', 'sub'
  2266. minut -= 9
  2267. gs 'arousal', 'end'
  2268. gs 'stat'
  2269. temp = rand(1,2)
  2270. if colir = 1:
  2271. temp = rand(1,5)
  2272. if temp = 1:
  2273. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/cum/nalyce/lycecv ('+rand(1,2)+').mp4"></video></center>'
  2274. else
  2275. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/cum/nalyce/lycec ('+rand(1,12)+').jpg"></center>'
  2276. end
  2277. else
  2278. temp = rand(1,5)
  2279. if temp = 1:
  2280. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/cum/nalyce/lycecv ('+rand(1,2)+').mp4"></video></center>'
  2281. else
  2282. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/cum/nalyce/lycec ('+rand(1,14)+').jpg"></center>'
  2283. end
  2284. end
  2285. 'You put your face near his dick and start jerking him off, shortly later, hot spurts of cum start flying and covering your face.'
  2286. act 'Get dressed': gt'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  2287. end
  2288. else
  2289. act 'Let him cum':
  2290. if sexcontra = 4:
  2291. 'You pull off of <<$boydesc>> and look at his dick and think, "Oh shit! The condom burst."'
  2292. gandon = 0
  2293. elseif sexcontra = 5:
  2294. 'You pull off of <<$boydesc>> and look at his dick and think, "Oh shit! The condom is missing!"'
  2295. gandon = 0
  2296. else
  2297. '<<$boydesc>> groaned and you realized that he came in the condom.'
  2298. gandon = 1
  2299. end
  2300. sexcontra = 0
  2301. protect = 0
  2302. if gandon = 0:
  2303. if colir = 1:
  2304. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/vag/vag ('+rand(1,4)+').mp4"></video></center>'
  2305. else
  2306. if rand(1,4) <= 2:
  2307. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/vag/vag (5'+rand(1,5)+').jpg"></center>'
  2308. else
  2309. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/vag/vagv ('+rand(1,3)+').mp4"></video></center>'
  2310. end
  2311. end
  2312. else
  2313. if colir = 1:
  2314. if rand(1,4) <= 2:
  2315. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/b/vag ('+rand(1,9)+').jpg"></center>'
  2316. else
  2317. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/b/vagv ('+rand(1,5)+').mp4"></video></center>'
  2318. end
  2319. else
  2320. if rand(1,7) <= 1:
  2321. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/ch/vag.jpg"></center>'
  2322. else
  2323. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/ch/vagv ('+rand(1,4)+').mp4"></video></center>'
  2324. end
  2325. end
  2326. end
  2327. if trt_cumeater = 1:
  2328. cla
  2329. act 'I didn''t want to waste it':
  2330. *clr & cla
  2331. swallow += 1
  2332. minut += rand (5,15)
  2333. 'I lick all the cum from condom...'
  2334. if rand (1,10) >= 9:
  2335. if $clothingworntype ! 'nude':
  2336. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  2337. gs 'stat'
  2338. '...some drops fell on my cloth...'
  2339. end
  2340. end
  2341. spafinloc = 11
  2342. gs 'cum_manage'
  2343. spafinloc = 12
  2344. gs 'cum_manage'
  2345. spafinloc = 13
  2346. gs 'cum_manage'
  2347. if rand (1,10) >= 10:
  2348. spafinloc = 16
  2349. gs 'cum_manage'
  2350. '...some drops fell on my hair...'
  2351. end
  2352. if rand(1,3) >= 2:
  2353. '"Wow, girl, you are rock!"'
  2354. temp = rand(0,4)
  2355. money += temp * 25
  2356. if temp > 0: 'some extra money comes from the hole!'
  2357. gs 'stat'
  2358. end
  2359. act 'Get up':
  2360. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  2361. end
  2362. if rand (1,2) = 1:
  2363. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/con_drink/con_drinkv ('+rand(1,3)+').mp4"></video></center>'
  2364. else
  2365. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/con_drink/con_drink ('+rand(1,10)+').jpg"></center>'
  2366. end
  2367. end
  2368. else
  2369. act 'Get up':
  2370. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  2371. end
  2372. act 'Drink cum from condom':
  2373. *clr & cla
  2374. swallow += 1
  2375. minut += rand (5,15)
  2376. 'I lick all the cum from condom...'
  2377. if rand (1,10) >= 5:
  2378. if $clothingworntype ! 'nude':
  2379. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole'
  2380. gs 'stat'
  2381. '...some drops fell on my cloth...'
  2382. end
  2383. end
  2384. spafinloc = 11
  2385. gs 'cum_manage'
  2386. spafinloc = 12
  2387. gs 'cum_manage'
  2388. spafinloc = 13
  2389. gs 'cum_manage'
  2390. if rand (1,10) >= 6:
  2391. spafinloc = 16
  2392. gs 'cum_manage'
  2393. '...some drops fell on my hair...'
  2394. end
  2395. if rand(1,3) >= 2:
  2396. '"Wow, girl, you are rock!"'
  2397. temp = rand(0,4)
  2398. money += temp * 25
  2399. if temp > 0: 'some extra money comes from the hole!'
  2400. gs 'stat'
  2401. end
  2402. act 'Get up':
  2403. gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  2404. end
  2405. if rand (1,2) = 1:
  2406. '<center><video autoplay loop src="mod/public_WC/wc/gh/gandon/con_drink/con_drinkv ('+rand(1,3)+').mp4"></video></center>'
  2407. else
  2408. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/gandon/con_drink/con_drink ('+rand(1,10)+').jpg"></center>'
  2409. end
  2410. end
  2411. end
  2412. end
  2413. end
  2414. end
  2415. if $ARGS[0] = 'rape':
  2416. *clr & cla
  2417. menu_off = 0
  2418. gs 'stat'
  2419. dick = rand(9, 25)
  2420. npc_dick[$npclastgenerated] = dick
  2421. temp = rand(0,3)
  2422. if temp = 0: temp = 1
  2423. if pcs_ftbll >= (1 + (rand(0,100) / temp)) or pcs_run >= (1 + (rand(0,100) / temp)) or pcs_agil >= (10 + rand(0,100)):
  2424. *clr & cla
  2425. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/gorodok.jpg"></center>'
  2426. 'You run from the cabine and don''t stop until you are back in the residential area'
  2427. act 'Catch your breath':
  2428. minut += 5
  2429. gt 'pav_residential'
  2430. end
  2431. else
  2432. gs 'npcgeneratec', 0, 'rapist', rand(19,45)
  2433. gs 'boyStat', $npclastgenerated
  2434. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/mens/sex/mensrape3.mp4"></video></center>'
  2435. 'Just as you are leaving the cabine a naked man storms out of the next cabine and grabs you by the hair and rips off your top and forces you down on your knees, shoving his dick in your mouth, forcing you to suck his dick.'
  2436. act 'Continue':
  2437. *clr & cla
  2438. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/mens/sex/mensrape4.mp4"></video></center>'
  2439. 'You bite down his dick, which makes him pull his dick out of your mouth. "Fine you little fucking cunt, we''ll do this the hard way." He lifts you up and forces you between two urinals with your face up against the wall. He roughly shoves his cock in your ass, the only lubrication is the bit of your saliva still on his dick. It feels like he is ripping your ass open, you cry and scream. He just jackhammers your ass balls deep, while holding you by the throat.'
  2440. gs 'arousal', 'anal', 10, 'unknown', 'sub', 'rough'
  2441. minut -= 5
  2442. gs 'stat'
  2443. act 'Continue':
  2444. *clr & cla
  2445. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/mens/sex/mensrape1.mp4"></video></center>'
  2446. 'As you scream he reaches up and clamps a hand over your mouth to muffle your screams, he continues you pound your ass balls deep with his dick. Not relenting no matter how much you struggle or cry. "You think it''s funny bitch to steal a man''s hard earned money, well you won''t think it is so funny after I am done with you. I''m going to fuck your ass till it bleeds like your cunt."'
  2447. 'He keeps ripping your ass up with his dick, the pain is unbearable, but there is nothing you can do about it. You really wish you hadn''t taken his money and kept it.'
  2448. gs 'arousal', 'anal', 10, 'unknown', 'sub', 'rough'
  2449. minut -= 5
  2450. gs 'stat'
  2451. act 'Continue':
  2452. *clr & cla
  2453. rape += 1
  2454. gs 'cum_call', 'mouth', 'an unknown guy from the gloryhole'
  2455. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/mens/sex/cumspit.mp4"></video></center>'
  2456. 'Finally he pulls the dick out of your ass and forces you back to your knees, he shoves his dick back in your mouth and you can taste your own ass on his dick. He says to you. "You fucking bite me again bitch and I will call everyone I know and we will train fuck your ass for days." Afraid he is serious you suck his dick until he finally shoots his load in your mouth.'
  2457. gs 'arousal', 'bj', 10, 'unknown', 'sub', 'rough'
  2458. minut -= 5
  2459. gs 'arousal', 'end'
  2460. gs 'stat'
  2461. 'With that he lets go of you and walks off in disgust.'
  2462. 'Grabbing your clothes you get up and run out of the bathroom and run all the way home, only once you are several blocks away do you stop to put your clothes back on.'
  2463. act 'Leave':gt 'korrPar'
  2464. end
  2465. end
  2466. end
  2467. end
  2468. end
  2469. if $ARGS[0] = '2D':
  2470. *clr & cla
  2471. guy += 1
  2472. ghnow += rand(0,1)
  2473. gloryhole += 1
  2474. colir2 = rand(1,2)
  2475. if $clothingworntype = 'nude':
  2476. act 'undress':
  2477. *clr & cla
  2478. '<center><video autoplay loop src="images/locations/pavlovsk/community/bathroom/womens/sex/ghundress.mp4"></video></center>'
  2479. 'I quickly undress, I badly want to fuck.'
  2480. if rand (1,2) <= 1:
  2481. 'While I am undressing hands from holes start to rub me.'
  2482. '<center><video autoplay loop src="mod/public_WC/wc/gh/hands from holes.mp4"></video></center>'
  2483. gs 'arousal', 'foreplay', 5, 'unknown', 'sub'
  2484. gs 'stat'
  2485. end
  2486. act 'Continue': gt 'mod_public_WC_cabine', '2D'
  2487. end
  2488. end
  2489. if ztemp = 3:
  2490. 'Continuing to suck <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock I think what to do with the newly arrived member'
  2491. if colir = 1:
  2492. temp = rand(1,5)
  2493. if temp = 1:
  2494. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/bj/bjv.mp4"></video></center>'
  2495. else
  2496. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/b/bj/bj ('+rand(1,20)+').jpg"></center>'
  2497. end
  2498. elseif colir = 2:
  2499. temp = rand(1,5)
  2500. if temp = 1:
  2501. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/bj/bjv ('+rand(1,2)+').mp4"></video></center>'
  2502. else
  2503. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/bj/bj ('+rand(1,18)+').jpg"></center>'
  2504. end
  2505. end
  2506. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/d2/show/2D_bj.jpg"></center>'
  2507. gs 'arousal', 'bj', 5, 'unknown', 'sub'
  2508. elseif ztemp = 2:
  2509. 'Continuing to jerk <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock I think what to do with the newly arrived member'
  2510. if colir = 1:
  2511. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/hj/hjv ('+rand(1,4)+').mp4"></video></center>'
  2512. else
  2513. if rand(1,2) = 1:
  2514. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/hj/hj.jpg"></center>'
  2515. else
  2516. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/hj/hjv'+rand(1,2)+'.mp4"></video></center>'
  2517. end
  2518. end
  2519. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/d2/show/2D.jpg"></center>'
  2520. gs 'arousal', 'hj', 5, 'unknown', 'sub'
  2521. elseif ztemp = 1:
  2522. 'Continuing to masturbate <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock I think what to do with the newly arrived member'
  2523. if colir = 1:
  2524. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/lj/ljv1.mp4"></video></center>'
  2525. else
  2526. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/lj/ljv1.mp4"></video></center>'
  2527. end
  2528. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/d2/show/2D.jpg"></center>'
  2529. gs 'arousal', 'footjob', 5, 'unknown', 'sub'
  2530. end
  2531. gs 'stat'
  2532. act 'Suck two dicks':
  2533. *clr & cla
  2534. $dodatkovo = rand(1,5) * 50
  2535. $GROSH = 250 + $dodatkovo
  2536. money += $GROSH
  2537. minut += 10 + (3 * $dodatkovo / 50)
  2538. gs 'stat'
  2539. $cum1 = rand(5,9) * 10
  2540. $cum2 = rand(8,12) * 10
  2541. gs 'stat'
  2542. gt 'mod_public_WC_cabine_d2', 'suck'
  2543. end
  2544. if ztemp ! 3:
  2545. act 'Jerk two dicks':
  2546. *clr & cla
  2547. $dodatkovo = rand(1,5) * 50
  2548. $GROSH = 250 + $dodatkovo
  2549. money += $GROSH
  2550. minut += 10 + (3 * $dodatkovo / 50)
  2551. gs 'stat'
  2552. $cum1 = rand(5,9) * 10
  2553. $cum2 = rand(8,12) * 10
  2554. gs 'stat'
  2555. gt 'mod_public_WC_cabine_d2', 'jerk'
  2556. end
  2557. end
  2558. act 'spit roasted':
  2559. *clr & cla
  2560. $dodatkovo = rand(1,5) * 50
  2561. $GROSH = 250 + $dodatkovo
  2562. money += $GROSH
  2563. minut += 10 + (3 * $dodatkovo / 50)
  2564. gs 'stat'
  2565. $cum1 = rand(5,9) * 10
  2566. $cum2 = rand(8,12) * 10
  2567. gs 'stat'
  2568. gt 'mod_public_WC_cabine_d2', 'spitroasted'
  2569. end
  2570. end
  2571. if $ARGS[0] = '2D_vag':
  2572. *clr & cla
  2573. guy += 1
  2574. ghnow += rand(0,1)
  2575. gloryhole += 1
  2576. colir2 = rand(1,2)
  2577. if ztemp = 5:
  2578. 'Continuing to fuck <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock I think what to do with the newly arrived member'
  2579. if colir = 1:
  2580. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/vag/vag ('+rand(1,4)+').mp4"></video></center>'
  2581. else
  2582. if rand(1,4) <= 2:
  2583. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/vag/vag ('+rand(1,5)+').jpg"></center>'
  2584. else
  2585. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/vag/vagv ('+rand(1,3)+').mp4"></video></center>'
  2586. end
  2587. end
  2588. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/d2/show/2D.jpg"></center>'
  2589. gs 'arousal', 'vaginal', 10, 'unknown', 'sub'
  2590. end
  2591. if ztemp = 4:
  2592. 'While <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock drills my ass I think what to do with the newly arrived member'
  2593. if colir = 1:
  2594. '<center><video autoplay loop src="mod/public_WC/wc/gh/b/anal/analv.mp4"></video></center>'
  2595. else
  2596. if rand(1,3) <= 1:
  2597. '<center><img <<$set_imgh>> src="mod/public_WC/wc/gh/ch/anal/anal'+rand(1,2)+'.jpg"></center>'
  2598. else
  2599. '<center><video autoplay loop src="mod/public_WC/wc/gh/ch/anal/analv ('+rand(1,6)+').mp4"></video></center>'
  2600. end
  2601. end
  2602. '<center><video autoplay loop src="mod/public_WC/wc/gh/d2/show/2D_anal.mp4"></video></center>'
  2603. gs 'arousal', 'anal', 10, 'unknown', 'sub'
  2604. end
  2605. gs 'stat'
  2606. act 'Suck two dicks':
  2607. *clr & cla
  2608. $dodatkovo = rand(1,4) * 40
  2609. $GROSH = 250 + $dodatkovo
  2610. money += $GROSH
  2611. minut += 10 + (3 * $dodatkovo / 50)
  2612. gs 'stat'
  2613. $cum1 = rand(5,9) * 10
  2614. $cum2 = rand(8,12) * 10
  2615. gs 'stat'
  2616. gt 'mod_public_WC_cabine_d2', 'suck'
  2617. end
  2618. if ztemp ! 3:
  2619. act 'Jerk two dicks':
  2620. *clr & cla
  2621. $dodatkovo = rand(1,4) * 30
  2622. $GROSH = 250 + $dodatkovo
  2623. money += $GROSH
  2624. minut += 10 + (3 * $dodatkovo / 50)
  2625. gs 'stat'
  2626. $cum1 = rand(5,9) * 10
  2627. $cum2 = rand(8,12) * 10
  2628. gs 'stat'
  2629. gt 'mod_public_WC_cabine_d2', 'jerk'
  2630. end
  2631. end
  2632. act 'spit roasted':
  2633. *clr & cla
  2634. $dodatkovo = rand(1,5) * 50
  2635. $GROSH = 250 + $dodatkovo
  2636. money += $GROSH
  2637. minut += 10 + (3 * $dodatkovo / 50)
  2638. gs 'stat'
  2639. $cum1 = rand(5,9) * 10
  2640. $cum2 = rand(8,12) * 10
  2641. gs 'stat'
  2642. gt 'mod_public_WC_cabine_d2', 'spitroasted'
  2643. end
  2644. end
  2645. if $ARGS[0] = 'rape2':
  2646. *clr & cla
  2647. gs 'fame', 'pav', 'prostitute', 3
  2648. menu_off = 0
  2649. gs 'stat'
  2650. gs 'npcgeneratec', 0, 'their leader', rand(21,55)
  2651. gs 'boyStat', $npclastgenerated
  2652. dick = rand(9, 25)
  2653. npc_dick[$npclastgenerated] = dick
  2654. if ghnow <= 6:
  2655. if rand(1,2) = 1:
  2656. rape += 1
  2657. gang += 1
  2658. 'Under the cheerful cries of the crowd, two guys break into the booth and break me. One of them (apparently the leader) says: "You are very slow! You do not serve everyone even until your death! The cabin embar you and we will help you!" After the speech I hear the happy cries of the crowd. "And do not think to bite!" - he whispers a little bit later.'
  2659. 'You are locked and the Leader demolished my clothing and began to fuck me with <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock.'
  2660. temp = rand(1,2)
  2661. '<center><video autoplay loop src="mod/public_WC/wc/events/56/cabinefuck/lider_<<temp>>.mp4"></video></center>'
  2662. gs 'arousal', 'vaginal', 7, 'rough', 'sub', 'group', 'unknown'
  2663. gs 'stat'
  2664. act 'Continue':
  2665. *clr & cla
  2666. '<center><video autoplay loop src="mod/public_WC/wc/events/56/cumface/lider_on.mp4"></video></center>'
  2667. 'After the leader ended up on my face, his assistant immediately leaned me and began to fuck me. From behind the door I hear the leader: "Gentlemen, in 5 minutes, the star will go on stage"'
  2668. gs 'cum_call', 'face', 'Leader', 0, 1, -1, 80
  2669. gs 'arousal', 'vaginal', 5, 'rough', 'sub', 'group', 'unknown'
  2670. gs 'stat'
  2671. temp = rand(1,5)
  2672. '<center><video autoplay loop src="mod/public_WC/wc/events/56/cabinefuck/col_<<temp>>.mp4"></video></center>'
  2673. act 'Continue':
  2674. *clr & cla
  2675. 'The assistant put me on my knees and put his dick in my mouth. Hot sperm immediately exchanged my mouth. He rubbed then turned my head to the door solemnly said "See your destiny!"'
  2676. '<center><video autoplay loop src="mod/public_WC/wc/events/56/cumface/seeyourdesteny.mp4"></video></center>'
  2677. gs 'cum_call', 'face', 'an unknown guy from the toilet', 0, 1, -1, 40
  2678. act 'Continue':
  2679. *clr & cla
  2680. 'I was pulled out of the cabin and started to fuck: one holds, another fucks.'
  2681. '<center><video autoplay loop src="mod/public_WC/wc/events/56/fk/para'+rand(1,3)+'.mp4"></video></center>'
  2682. gs 'arousal', 'vaginal', 25, 'rough', 'sub', 'group', 'unknown', 'gangbang'
  2683. gs 'pain', rand(1,3), 'head', 'hit'
  2684. gs 'pain', rand(2,3), 'vaginal', 'stretch'
  2685. gs 'stat'
  2686. act 'Continue':
  2687. *clr & cla
  2688. 'In the end rapists without parsing cums on my face or in my mouth or whatever'
  2689. temp = rand(1,4)
  2690. '<center><video autoplay loop src="mod/public_WC/wc/events/56/cumface/in_<<temp>>.mp4"></video></center>'
  2691. gs 'cum_call', 'face', 'an unknown guy from the toilet', 0, 1, -1, rand(40,120)
  2692. gs 'cum_call', 'face', 'an unknown guy from the toilet', 0, 1, -1, rand(40,120)
  2693. gs 'cum_call', 'mouth', 'an unknown guy from the toilet', 0, 1, -1, rand(40,120)
  2694. gs 'cum_call', 'mouth', 'an unknown guy from the toilet', 0, 1, -1, rand(40,120)
  2695. gs 'cum_call', 'hair', 'an unknown guy from the toilet', 0, 1, -1, rand(20,60)
  2696. gs 'cum_call', 'clothes', 'an unknown guy from the toilet', 0, 1, -1, rand(60,100)
  2697. gs 'stat'
  2698. act 'Continue':
  2699. *clr & cla
  2700. 'I lost the time. They just put my head on the toilet and cums all over'
  2701. '<center><video autoplay loop src="mod/public_WC/wc/events/56/cumface/last_on.mp4"></video></center>'
  2702. wait 400
  2703. '...when it was silent, I realized that it was possible to open my eyes and try to recover from the horror that was experienced.'
  2704. slutty += ghnow
  2705. pav_prostitute += rand(0,2)
  2706. ghnow -= 3
  2707. gs 'stat'
  2708. act 'Come to mind': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  2709. end
  2710. end
  2711. end
  2712. end
  2713. end
  2714. else
  2715. gt 'mod_public_WC_cabine_shibari', 'start'
  2716. end
  2717. end
  2718. if ghnow >= 7 and ghnow <= 8:
  2719. if rand(1,2) = 1:
  2720. 'The men have planted you among themselves, and they can not come to an agreement who will be the first. You are scared to look at these quarrels. In 5 minutes it seems that the guys have come to an agreement. They decided to wank at you. The first six that cums will not fuck you.'
  2721. minut += 5
  2722. act 'Continue':
  2723. *clr & cla
  2724. $chas = rand(5,10)
  2725. minut += $chas
  2726. 'It was <<$chas>> minutes and the first six cumed, each ran and filled the placed glasses on the windowsill. Men started to joke and mutter each other. Among the six was the one who pulled you out of the booth. He rubbed and reminded everyone of some sort of deal, and then turned to you: "Whore, if you drink it, then none of the guys will not penetrate you, agree?"'
  2727. '<center><video autoplay loop src="mod/public_WC/wc/events/78/6glasses.mp4"></video></center>'
  2728. gs 'arousal', 'voyeur', -1, 'group', 'unknown', 'gloryhole', 'sub'
  2729. gs 'stat'
  2730. act 'Refuse': gt 'mod_public_WC_cabine', 'slave'
  2731. if trt_cumeater = 1:
  2732. gs 'willpower', 'swallow', 'self', 'hard'
  2733. if will_cost <= pcs_willpwr:
  2734. act 'Drink everything to avoid penetration (<<will_cost>> Willpower)':
  2735. *clr & cla
  2736. swallow += 5
  2737. gs 'willpower', 'pay', 'self'
  2738. gs 'stat'
  2739. 'With a great disgust, I am emptying the glasses.'
  2740. '<center><video autoplay loop src="mod/public_WC/wc/events/78/drink.mp4"></video></center>'
  2741. act 'Fue': gt 'mod_public_WC_cabine', 'bukake'
  2742. end
  2743. else
  2744. act 'Drink everything to avoid penetration (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  2745. end
  2746. end
  2747. end
  2748. else
  2749. gt 'mod_public_WC_cabine_street', 'start'
  2750. end
  2751. end
  2752. if ghnow >= 9:
  2753. 'I immediately fell to the floor, I did not even have time to see who took me...'
  2754. act 'Continue': gt 'mod_public_WC_cabine', 'slave'
  2755. end
  2756. end
  2757. if $ARGS[0] = 'slave':
  2758. *clr & cla
  2759. menu_off = 1
  2760. gang += 1
  2761. $rope = 100
  2762. $Nomer = 0
  2763. Gvaltivnyky = rand(5, 15)
  2764. ztemp = 0
  2765. gs 'stat'
  2766. 'I was hacked and put on a bandage on my eyes. Everything happened too fast, I was tied up and chained to the toilet.'
  2767. '<center><video autoplay loop src="mod/public_WC/wc/events/90/firstbind.mp4"></video></center>'
  2768. wait 700
  2769. 'I was stripped of my blindfold and I saw a large number of men waiting nervously.'
  2770. '<center><video autoplay loop src="mod/public_WC/wc/events/90/line.mp4"></video></center>'
  2771. act 'Continue': gt 'mod_public_WC_cabine', 'cherga'
  2772. end
  2773. if $ARGS[0] = 'cherga':
  2774. *clr & cla
  2775. rape += rand(0,1)
  2776. menu_off = 1
  2777. slutty += rand(0,1)
  2778. $Nomer += 1
  2779. gs 'fame', 'pav', 'sex', rand(0,2)
  2780. gs 'stat'
  2781. '<<$Nomer>> man in line came up to me...'
  2782. Gvaltivnyky -= 1
  2783. Atemp = rand(1,2)
  2784. if ztemp >= 5:
  2785. ztemp = 0
  2786. 'Wow! i don''t like this cumfall... Well lets clean you, bitch!'
  2787. Atemp = 1
  2788. '<center><video autoplay loop src="mod/public_WC/wc/events/90/yourshyk/puss v ('+rand(1,2)+').mp4"></video></center>'
  2789. gs 'cum_cleanup', 'cleanloc', 0
  2790. gs 'cum_cleanup', 'cleanloc', 1
  2791. gs 'stat'
  2792. gs 'pain', 9, 'vaginal', 'pierce'
  2793. gs 'stat'
  2794. gs 'pain', 9, 'vaginal', 'ache'
  2795. gs 'stat'
  2796. end
  2797. if Atemp = 1:
  2798. '<<$Nomer>> man in line bent me, and without ceremony, inserted his penis into my vagina'
  2799. guy += 1
  2800. '<center><video autoplay loop src="mod/public_WC/wc/events/90/start_vag'+rand(1,2)+'.mp4"></video></center>'
  2801. act 'Continue':
  2802. minut += rand(3,10)
  2803. gs 'arousal', 'vaginal', -1, 'rough', 'sub', 'group', 'unknown', 'gangbang'
  2804. gs 'stat'
  2805. cla
  2806. gs 'willpower', 'misc', 'self', 'easy'
  2807. if will_cost <= pcs_willpwr:
  2808. act 'Please don''t cum in me (<<will_cost>> Willpower)':
  2809. *clr & cla
  2810. gs 'willpower', 'pay', 'self'
  2811. gs 'stat'
  2812. temp = rand(1,10)
  2813. if temp <= 7:
  2814. '"Shut up bitch" he sad, but with groan took out his dick and cum outside. He slaps my ass few times and go away.'
  2815. temp = rand(1,2)
  2816. if temp = 1:
  2817. gs 'cum_call', 'back', 'an unknown guy from the toilet'
  2818. else
  2819. gs 'cum_call', 'legs', 'an unknown guy from the toilet'
  2820. end
  2821. gs 'stat'
  2822. act 'Next?' : gt 'mod_public_WC_cabine', 'next'
  2823. else
  2824. '"Shut up bitch" he sad, and punch you'
  2825. '<center><video autoplay loop src="mod/public_WC/wc/events/90/fin_vag_'+rand(1,1)+'.mp4"></video></center>'
  2826. 'OMG, he cumed inside!'
  2827. gs 'pain', 1, 'asscheeks', 'slap'
  2828. gs 'cum_call', 'vaginal', 'an unknown guy from the toilet'
  2829. gs 'cum_manage'
  2830. gs 'cuminsidereact', 'a stranger you met in the men''s room'
  2831. gs 'stat'
  2832. ztemp += 1
  2833. act 'Next?' : gt 'mod_public_WC_cabine', 'next'
  2834. end
  2835. end
  2836. else
  2837. act 'Please don''t cum in me (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  2838. end
  2839. act 'be silent':
  2840. *clr & cla
  2841. temp = rand(1,3)
  2842. if temp = 1:
  2843. 'He groan and, thanks God, took out his dick to cum outside. He slaps my ass few times and go away.'
  2844. temp = rand(1,2)
  2845. if temp = 1:
  2846. gs 'cum_call', 'back', 'an unknown guy from the toilet'
  2847. else
  2848. gs 'cum_call', 'legs', 'an unknown guy from the toilet'
  2849. end
  2850. gs 'stat'
  2851. act 'Next?': gt 'mod_public_WC_cabine', 'next'
  2852. else
  2853. '<center><video autoplay loop src="mod/public_WC/wc/events/90/fin_vag_1.mp4"></video></center>'
  2854. 'OMG, he cumed inside!'
  2855. gs 'cum_call', 'vaginal', 'an unknown guy from the toilet'
  2856. gs 'cum_manage'
  2857. gs 'cuminsidereact', 'a stranger you met in the men''s room'
  2858. gs 'stat'
  2859. ztemp += 1
  2860. act 'Next?' : gt 'mod_public_WC_cabine', 'next'
  2861. end
  2862. end
  2863. end
  2864. end
  2865. if Atemp = 2:
  2866. *clr & cla
  2867. '<<$Nomer>> man from the line order me to open my mouth, I have no other choice - obediently opened. He thrust his dick on and his balls hit my chin.'
  2868. if rand(1,5) = 1:
  2869. '<center><img <<$set_imgh>> src="mod/public_WC/wc/events/90/start_mouth_p1.jpg"></center>'
  2870. else
  2871. temp = rand(1,4)
  2872. '<center><video autoplay loop src="mod/public_WC/wc/events/90/start_mouth_<<temp>>.mp4"></video></center>'
  2873. end
  2874. act 'Continue':
  2875. if rand(1,2) = 1:
  2876. *clr & cla
  2877. minut += rand(3,8)
  2878. gs 'arousal', 'bj', -1, 'unknown', 'sub'
  2879. 'His penis was getting hotter and I realized that he would not pull out. He poured semen on my throat and smiled and walked away.'
  2880. swallow += 1
  2881. temp = rand(1,2)
  2882. '<center><video autoplay loop src="mod/public_WC/wc/events/90/fin_mouth_<<temp>>.mp4"></video></center>'
  2883. gs 'cum_call', 'mouth', 'an unknown guy from the toilet', 0, 1, -1, rand(40,120)
  2884. gs 'stat'
  2885. act 'Next?' : gt 'mod_public_WC_cabine', 'next'
  2886. else
  2887. *clr & cla
  2888. minut += rand(3,8)
  2889. gs 'arousal', 'bj', -1, 'unknown', 'sub'
  2890. 'His penis was getting hotter and he pulls out. He poured semen on my face, smiled and walked away.'
  2891. facial += 1
  2892. gs 'cum_call', 'face', 'an unknown guy from the toilet', 0, 1, -1, rand(40,120)
  2893. gs 'stat'
  2894. temp = rand(1,4)
  2895. if temp = 1:
  2896. '<center><video autoplay loop src="mod/public_WC/wc/events/90/fin_lyce_v1.mp4"></video></center>'
  2897. else
  2898. '<center><img <<$set_imgh>> src="mod/public_WC/wc/events/90/fin_lyce_'+rand(1,3)+'.jpg"></center>'
  2899. end
  2900. act 'Next?' : gt 'mod_public_WC_cabine', 'next'
  2901. end
  2902. end
  2903. end
  2904. end
  2905. if $ARGS[0] = 'next':
  2906. *clr & cla
  2907. menu_off = 1
  2908. 'While the last "client" is sharing impressions and distracting others from the queue, I try to come up with thoughts in my head and come up with a way out of this situation.'
  2909. if rand(1,4) = 1:
  2910. '<center><video autoplay loop src="mod/public_WC/wc/events/90/fin_wait.mp4"></video></center>'
  2911. else
  2912. '<center><img <<$set_imgh>> src="mod/public_WC/wc/events/90/wait ('+rand(1,7)+').jpg"></center>'
  2913. end
  2914. $dumatu = 10 + pcs_vital - 10 * $Nomer
  2915. if Gvaltivnyky = 0:
  2916. *clr & cla
  2917. 'Before leaving, the last rapists hung me on the toilet door and tied me more firmly. Speaking, they came out of the toilet'
  2918. '<center><img <<$set_imgh>> src="mod/public_WC/wc/events/90/finish_round.jpg"></center>'
  2919. if hour <= 6 or hour >= 23:
  2920. act 'Disorderly hang': gt 'mod_public_WC_cabine', 'slavenight'
  2921. else
  2922. act 'Disorderly hang': gt 'mod_public_WC_cabine', 'slaveday'
  2923. end
  2924. else
  2925. if $dumatu > 10:
  2926. act 'Try to break the ropes':
  2927. if pcs_stren >= 90:
  2928. *clr & cla
  2929. 'Under my power, all the ropes broke through with a loud sound, as the guys look at me puzzled, I take advantage of the situation and quickly run out'
  2930. $rope = 0
  2931. gs 'mod_public_WC_cabine', 'motuzka'
  2932. wait 500
  2933. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/gorodok.jpg"></center>'
  2934. 'I run from the cabine and don''t stop until I am back in the residential area'
  2935. act 'Catch your breath': minut += 5 & gt 'pav_residential'
  2936. elseif pcs_stren >= 50:
  2937. *clr & cla
  2938. 'I hear the rope crackle, but the rope does not lend itself.'
  2939. $rope -= pcs_stren * 3 / 10 + 2
  2940. gs 'mod_public_WC_cabine', 'motuzka'
  2941. if $rope > 0:
  2942. act 'I stop trying because the queue is moving.': gt 'mod_public_WC_cabine', 'cherga'
  2943. else
  2944. *clr & cla
  2945. 'With the loud sound of the rope, it finally bursts as the guys look at me puzzled, I take advantage of the situation and quickly run out.'
  2946. wait 500
  2947. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/gorodok.jpg"></center>'
  2948. 'I run and don''t stop until I am back in the residential area'
  2949. act 'Catch your breath':
  2950. minut += 5
  2951. gt 'pav_residential'
  2952. end
  2953. end
  2954. else
  2955. *clr & cla
  2956. 'I can hear the rope barely cracking, I''m not sure if I have enough strength.'
  2957. $rope -= 15
  2958. gs 'mod_public_WC_cabine', 'motuzka'
  2959. if $rope > 0:
  2960. act 'I stop trying because the queue is moving.': gt 'mod_public_WC_cabine', 'cherga'
  2961. else
  2962. *clr & cla
  2963. 'With the loud sound of the rope, it finally bursts as the guys look at me puzzled, I take advantage of the situation and quickly run out.'
  2964. wait 500
  2965. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/gorodok.jpg"></center>'
  2966. 'I run and don''t stop until I am back in the residential area'
  2967. act 'Catch your breath':
  2968. minut += 5
  2969. gt 'pav_residential'
  2970. end
  2971. end
  2972. end
  2973. end
  2974. act 'Try to get out of the ropes':
  2975. if pcs_agil >= 80:
  2976. *clr & cla
  2977. $rope = 0
  2978. gs 'mod_public_WC_cabine', 'motuzka'
  2979. 'Turning my hands from behind my back to the front, I find how to turn my hand and slip through the knots. I''m rushing out of the toilet.'
  2980. wait 500
  2981. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/gorodok.jpg"></center>'
  2982. 'I run and don''t stop until I am back in the residential area'
  2983. act 'Catch your breath':
  2984. minut += 5
  2985. gt 'pav_residential'
  2986. end
  2987. elseif pcs_agil >= 50 and pcs_agil < 80:
  2988. *clr & cla
  2989. 'I move my hands, looking for a way to slip out of the shackles.'
  2990. $rope -= pcs_agil * 3 / 10 + 5
  2991. gs 'mod_public_WC_cabine', 'motuzka'
  2992. if $rope > 0:
  2993. act 'I stop trying because the queue is moving.': gt 'mod_public_WC_cabine', 'cherga'
  2994. else
  2995. *clr & cla
  2996. 'Finally I find how to wrap my hand and slip through the knots. I''m rushing out of the toilet.'
  2997. wait 500
  2998. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/gorodok.jpg"></center>'
  2999. 'I run from the cabine and don''t stop until I am back in the residential area'
  3000. act 'Catch your breath':
  3001. minut += 5
  3002. gt 'pav_residential'
  3003. end
  3004. end
  3005. else
  3006. *clr & cla
  3007. 'I move my hands awkwardly, looking for a way to slip out of the shackles, I''m not sure what I''m doing right.'
  3008. $rope -= 15
  3009. gs 'mod_public_WC_cabine', 'motuzka'
  3010. if $rope > 0:
  3011. act 'I stop trying because the queue is moving': gt 'mod_public_WC_cabine', 'cherga'
  3012. else
  3013. *clr & cla
  3014. 'Finally I find how to wrap my hand and slip through the knots. I''m rushing out of the toilet.'
  3015. wait 500
  3016. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/gorodok.jpg"></center>'
  3017. 'I run from the cabine and don''t stop until I am back in the residential area'
  3018. act 'Catch your breath':
  3019. minut += 5
  3020. gt 'pav_residential'
  3021. end
  3022. end
  3023. end
  3024. end
  3025. act 'Expand the knots to slip out of the ropes':
  3026. if pcs_agil + pcs_stren >= 10 - 10 * $Nomer:
  3027. *clr & cla
  3028. $rope = 0
  3029. gs 'mod_public_WC_cabine', 'motuzka'
  3030. 'Finally, the ropes don''t hold you, you run like a bullet pushing the rapists.'
  3031. wait 500
  3032. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/gorodok.jpg"></center>'
  3033. 'I run from the cabine and don''t stop until I am back in the residential area'
  3034. act 'Catch your breath':
  3035. minut += 5
  3036. gt 'pav_residential'
  3037. end
  3038. else
  3039. *clr & cla
  3040. gs 'mod_public_WC_cabine', 'motuzka'
  3041. 'The nodes became lighter, but not enough.'
  3042. act 'I stop trying because the queue is moving': gt 'mod_public_WC_cabine', 'cherga'
  3043. end
  3044. end
  3045. end
  3046. end
  3047. if Gvaltivnyky <= 6 and Gvaltivnyky > 0:
  3048. *nl
  3049. 'It is noticeable that there are <<Gvaltivnyky>> rapists in the queue'
  3050. end
  3051. if Gvaltivnyky = 0:
  3052. 'Finally, I served the entire queue.'
  3053. end
  3054. if bimbolevel >= 2:
  3055. act 'Talk to the guys and ask for more': gt 'mod_public_WC_cabine', 'bimbo'
  3056. end
  3057. if $dumatu <= 0 and Gvaltivnyky > 0:
  3058. act 'I can''t think of anything, only one phrase is stuck in my head: "When will this end?"': gt 'mod_public_WC_cabine', 'cherga'
  3059. end
  3060. if $dumatu > 0 and Gvaltivnyky > 0:
  3061. act 'Little time, I need more. I can escape!': gt 'mod_public_WC_cabine', 'cherga'
  3062. end
  3063. end
  3064. if $ARGS[0] = 'bimbo':
  3065. *clr & cla
  3066. menu_off = 1
  3067. $submax = Gvaltivnyky - $Nomer
  3068. willpowermax -= rand(3,$submax)
  3069. gang += 1
  3070. gs 'stat'
  3071. 'The guys looked at you in astonishment. "And the girl can be untied, I think there will be no problems with her"'
  3072. act 'I say playfully "Make me nice"':
  3073. *clr & cla
  3074. 'I was quickly untied and the next in line started fucking.'
  3075. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/line_new.mp4"></video></center>'
  3076. guy += 1
  3077. gs 'arousal', 'vaginal', 3, 'rough', 'sub', 'unknown'
  3078. wait 400
  3079. gs 'cum_call', 'vaginal', 'an unknown guy from the toilet'
  3080. gs 'cum_manage'
  3081. gs 'cuminsidereact', 'a stranger you met in the men''s room'
  3082. temp = rand(1,3)
  3083. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/fin_vag_<<temp>>.mp4"></video></center>'
  3084. 'In a few minutes he finished and passed the queue on.'
  3085. gs 'stat'
  3086. act 'Continue':
  3087. *clr & cla
  3088. Tsex = rand(1,3)
  3089. if Tsex = 1:
  3090. 'The new guy took out his penis and I began to process it'
  3091. temp = rand(1,3)
  3092. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/start_mouth_<<temp>>.mp4"></video></center>'
  3093. facial += 1
  3094. 'He did not last long and in 5 minutes thickly cum on all of me'
  3095. gs 'arousal', 'bj', 5, 'unknown', 'sub'
  3096. gs 'cum_call', 'face', 'an unknown guy from toilet', 0, 1, -1, 15
  3097. gs 'cum_call', 'clothes', 'an unknown guy from toilet', 0, 1, -1, 15
  3098. gs 'cum_call', 'arms', 'an unknown guy from toilet', 0, 1, -1, 15
  3099. gs 'cum_call', 'hands', 'an unknown guy from toilet', 0, 1, -1, 15
  3100. gs 'cum_call', 'stomach', 'an unknown guy from toilet', 0, 1, -1, 15
  3101. gs 'cum_call', 'breasts', 'an unknown guy from toilet', 0, 1, -1, 15
  3102. gs 'stat'
  3103. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/fin_face.mp4"></video></center>'
  3104. end
  3105. if Tsex = 2:
  3106. 'A new guy planted his cock in my vagina'
  3107. guy += 1
  3108. temp = rand(1,3)
  3109. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/start_pussy_<<temp>>.mp4"></video></center>'
  3110. gs 'arousal', 'vaginal', 5, 'rough', 'sub', 'unknown'
  3111. gs 'cum_call', 'back', 'an unknown guy from toilet', 0, 1, -1, 40
  3112. gs 'stat'
  3113. 'He did not last long and in 5 minutes he ended up on my back'
  3114. end
  3115. if Tsex = 3:
  3116. 'A new guy planted his cock in my ass'
  3117. guy += 1
  3118. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/start_ass_1.mp4"></video></center>'
  3119. gs 'arousal', 'anal', 5, 'rough', 'sub', 'unknown'
  3120. gs 'cum_call', 'anus', 'an unknown guy from toilet', 0, 1, -1, 40
  3121. gs 'stat'
  3122. 'He did not last long and in 5 minutes poured my cum into my gut'
  3123. end
  3124. act 'Continue':
  3125. *clr & cla
  3126. 'I barely had time to end up with one guy, as I was surrounded by two blacks and began to shove members in my mouth, I gladly began to suck them'
  3127. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/two_1.mp4"></video></center>'
  3128. gs 'arousal', 'bj', 4, 'unknown', 'sub', 'rough', 'group', 'gangbang'
  3129. gs 'stat'
  3130. wait 1000
  3131. 'As soon as their members were solid enough, they lifted me up and started fucking in two ways'
  3132. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/two_2.mp4"></video></center>'
  3133. gs 'arousal', 'bj', 4, 'unknown', 'sub', 'rough', 'group', 'gangbang'
  3134. gs 'arousal', 'vaginal', 4, 'unknown', 'sub', 'rough', 'group', 'gangbang'
  3135. gs 'stat'
  3136. wait 1000
  3137. 'The black one that had my vagina blew into it, the second one freed my mouth and immediately filled the hole of the first one.'
  3138. gs 'arousal', 'vaginal', 10, 'unknown', 'sub', 'rough', 'group', 'gangbang'
  3139. gs 'cum_call', 'vaginal', 'black'
  3140. gs 'cum_manage'
  3141. gs 'cuminsidereact', 'black'
  3142. gs 'stat'
  3143. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/black_cum_pussy_1.mp4"></video></center>'
  3144. wait 1000
  3145. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/black_sit.mp4"></video></center>'
  3146. 'He planted me on him, he pulled me around and gradually the guys gathered'
  3147. wait 600
  3148. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/before_more_then_2.mp4"></video></center>'
  3149. wait 600
  3150. 'The second black flooded my vagina and lifted me up for all to see.'
  3151. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/black_cum_pussy_21.mp4"></video></center>'
  3152. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/black_cum_pussy_22.mp4"></video></center>'
  3153. guy += 2
  3154. gang += 1
  3155. pcs_vag += 3
  3156. pcs_throat += 2
  3157. gs 'cum_call', 'vaginal', 'black'
  3158. gs 'cum_manage'
  3159. gs 'cuminsidereact', 'black'
  3160. gs 'stat'
  3161. act 'Entertain the company':
  3162. *clr & cla
  3163. gs 'arousal', 'bj', rand(1,6), 'rough', 'sub', 'group', 'unknown', 'gangbang'
  3164. gs 'arousal', 'vaginal', rand(1,6), 'rough', 'sub', 'group', 'unknown', 'gangbang'
  3165. gs 'arousal', 'anal', rand(1,6), 'rough', 'sub', 'group', 'unknown', 'gangbang'
  3166. gs 'arousal', 'hj', rand(1,6), 'rough', 'sub', 'group', 'unknown', 'gangbang'
  3167. gs 'arousal', 'titjob', rand(1,6), 'rough', 'sub', 'group', 'unknown', 'gangbang'
  3168. gs 'stat'
  3169. 'Men cheerfully teased all my holes and filled me with semen'
  3170. pcs_throat += rand(1,3)
  3171. pcs_ass += rand(1,3)
  3172. swallow += rand(1,3)
  3173. facial += rand(1,3)
  3174. sex += rand(1,3)
  3175. guy += rand(1,3)
  3176. gang += rand(1,3)
  3177. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/final_group.mp4"></video></center>'
  3178. minut += rand(40,60)
  3179. maxvagfull = $submax - 8
  3180. vagfull = rand(0,maxvagfull)
  3181. if vagfull > 0:
  3182. if vagfull > 5:
  3183. vagfull = 5
  3184. end
  3185. pcs_vag += vagfull
  3186. gs 'cum_call', 'vaginal', 'an unknown guy from the toilet'
  3187. gs 'cum_manage'
  3188. gs 'cuminsidereact', 'a stranger you met in the men''s room'
  3189. gs 'stat'
  3190. vagfull -= 1
  3191. end
  3192. if vagfull > 0:
  3193. gs 'cum_call', 'vaginal', 'an unknown guy from the toilet'
  3194. gs 'cum_manage'
  3195. gs 'cuminsidereact', 'a stranger you met in the men''s room'
  3196. gs 'stat'
  3197. vagfull -= 1
  3198. end
  3199. if vagfull > 0:
  3200. gs 'cum_call', 'vaginal', 'an unknown guy from the toilet'
  3201. gs 'cum_manage'
  3202. gs 'cuminsidereact', 'a stranger you met in the men''s room'
  3203. gs 'stat'
  3204. vagfull -= 1
  3205. end
  3206. if vagfull > 0:
  3207. gs 'cum_call', 'vaginal', 'an unknown guy from the toilet'
  3208. gs 'cum_manage'
  3209. gs 'cuminsidereact', 'a stranger you met in the men''s room'
  3210. gs 'stat'
  3211. vagfull -= 1
  3212. end
  3213. if vagfull > 0:
  3214. gs 'cum_call', 'vaginal', 'an unknown guy from the toilet'
  3215. gs 'cum_manage'
  3216. gs 'cuminsidereact', 'a stranger you met in the men''s room'
  3217. gs 'stat'
  3218. vagfull -= 1
  3219. end
  3220. gs 'cum_call', 'anus', 'an unknown guy from the toilet', 0, 1, -1, 250
  3221. gs 'cum_call', 'face', 'an unknown guy from the toilet', 0, 1, -1, 120
  3222. gs 'cum_call', 'face', 'an unknown guy from the toilet', 0, 1, -1, 130
  3223. gs 'cum_call', 'clothes', 'an unknown guy from the toilet', 0, 1, -1, 300
  3224. gs 'cum_call', 'back', 'an unknown guy from the toilet', 0, 1, -1, 150
  3225. gs 'cum_call', 'arms', 'an unknown guy from the toilet', 0, 1, -1, 100
  3226. gs 'cum_call', 'hands', 'an unknown guy from the toilet', 0, 1, -1, 40
  3227. gs 'cum_call', 'stomach', 'an unknown guy from the toilet', 0, 1, -1, 200
  3228. gs 'cum_call', 'breasts', 'an unknown guy from the toilet', 0, 1, -1, 200
  3229. gs 'cum_call', 'hair', 'an unknown guy from the toilet', 0, 1, -1, 200
  3230. gs 'cum_call', 'labia', 'an unknown guy from the toilet', 0, 1, -1, 80
  3231. gs 'cum_call', 'butt', 'an unknown guy from the toilet', 0, 1, -1, 80
  3232. gs 'stat'
  3233. 'As the sperm shooting ended I showed a small performance'
  3234. temp = rand(1,4)
  3235. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/fin_cum_play_<<temp>>.mp4"></video></center>'
  3236. pcs_mood += 60
  3237. 'The boys applauded and threw various vulgar compliments. Finally, they made some inscriptions on you and started to walk away from the toilet'
  3238. body_write = 1
  3239. act 'Wait':
  3240. *clr & cla
  3241. minut += 7
  3242. 'I sat and waited until I was alone.'
  3243. '<center><img <<$set_imgh>> src="mod/public_WC/wc/events/90/bimbo/Finish_all.jpg"></center>'
  3244. wait 1200
  3245. ghnow = 0
  3246. act 'Get up': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  3247. end
  3248. end
  3249. end
  3250. end
  3251. end
  3252. end
  3253. if $ARGS[0] = 'slaveday':
  3254. gt 'mod_public_WC_cabine_dennich', 'slaveday'
  3255. end
  3256. if $ARGS[0] = 'slavenight':
  3257. gt 'mod_public_WC_cabine_dennich', 'slavenight'
  3258. end
  3259. if $ARGS[0] = '1gopevent':
  3260. *clr & cla
  3261. menu_off = 1
  3262. gs 'stat'
  3263. if pcs_sleep <= 20:
  3264. 'I''m tired and fall asleep hanging on the door.'
  3265. wait 500
  3266. temp = rand(5,90)
  3267. minut += temp
  3268. if temp > 60:
  3269. pcs_sleep += 15
  3270. else
  3271. pcs_sleep += 8
  3272. end
  3273. 'I woke up to the sound of laughter'
  3274. end
  3275. temp = rand(1,7)
  3276. if temp >= 2:
  3277. *clr & cla
  3278. 'Some men laugh at my situation, they seem familiar to me, I saw them somewhere.'
  3279. 'Calm down, they came up and united me from the door, "fuh" - I thought. But it was only a moment. One of them shoved something into my mouth, the second cuffed with tape, and the third put a blindfold on my eyes. I was grabbed by the hands of two and dragged somewhere. My muscles were completely numb and I couldn''t resist.'
  3280. '<center><video autoplay loop src="mod/public_WC/wc/events/90/1gopevent/1gopevent_0.mp4"></video></center>'
  3281. minut += rand(3,5)
  3282. gs 'pain', 3, 'legL', 'burn'
  3283. gs 'pain', 3, 'legR', 'burn'
  3284. gs 'stat'
  3285. act 'Continue':
  3286. *clr & cla
  3287. 'They took off all my clothes and filled me with vodka.'
  3288. '<center><video autoplay loop src="mod/public_WC/wc/events/90/1gopevent/1gopevent_1.mp4"></video></center>'
  3289. gs 'arousal', 'BDSM', 15, 'sub', 'bound', 'humiliation', 'unknown'
  3290. gs 'bras', 'remove'
  3291. gs 'clothing', 'strip'
  3292. gs 'panties', 'remove'
  3293. gs 'drugs', 'alcohol', 'vodka', 3
  3294. gs 'pain', 2, 'tummy', 'hit'
  3295. gs 'pain', 2, 'breasts', 'slap'
  3296. gs 'stat'
  3297. act 'Continue':
  3298. rape += 1
  3299. gang += 1
  3300. pcs_mood -= 60
  3301. *clr & cla
  3302. 'When I stopped getting tired of even the slightest resistance, they got tired of the bullying and they started raping me all together, making small breaks for a smoke break and drinking'
  3303. temp=rand(1,2)
  3304. '<center><video autoplay loop src="mod/public_WC/wc/events/90/1gopevent/gopota_<<temp>>.mp4"></video></center>'
  3305. gs 'arousal', 'vaginal', rand(15,40), 'sub', 'bound', 'humiliation', 'unknown', 'rough', 'gangbang', 'rape'
  3306. gs 'arousal', 'bj', rand(15,40), 'sub', 'bound', 'humiliation', 'unknown', 'rough', 'gangbang', 'rape'
  3307. gs 'arousal', 'anal', rand(15,40), 'sub', 'bound', 'humiliation', 'unknown', 'rough', 'gangbang', 'rape'
  3308. gs 'cum_call', 'face', 'rapist', 0, 1, -1, 40
  3309. gs 'cum_call', 'face', 'rapist', 0, 1, -1, 40
  3310. gs 'cum_call', 'breasts', 'rapist', 0, 1, -1, 40
  3311. gs 'cum_call', 'labia', 'rapist', 0, 1, -1, 40
  3312. gs 'cum_call', 'butt', 'rapist', 0, 1, -1, 40
  3313. gs 'cum_call', 'anus', 'rapist', 0, 1, -1, 40
  3314. pcs_vag += rand(1,3)
  3315. pcs_throat += rand(1,3)
  3316. pcs_ass += rand(1,3)
  3317. swallow += rand(1,3)
  3318. facial += rand(1,3)
  3319. sex += rand(1,3)
  3320. guy += rand(1,3)
  3321. gs 'stat'
  3322. temp = rand(1,3)
  3323. if temp = 3:
  3324. gs 'cum_call', 'vaginal', 'rapist'
  3325. gs 'cum_manage'
  3326. gs 'cuminsidereact', 'rapist'
  3327. gs 'stat'
  3328. temp = rand(1,3)
  3329. if temp = 2:
  3330. gs 'cum_call', 'vaginal', 'rapist'
  3331. gs 'cum_manage'
  3332. gs 'cuminsidereact', 'rapist'
  3333. gs 'stat'
  3334. if temp = 2:
  3335. gs 'cum_call', 'vaginal', 'rapist'
  3336. gs 'cum_manage'
  3337. gs 'cuminsidereact', 'rapist'
  3338. gs 'stat'
  3339. end
  3340. end
  3341. end
  3342. 'Finally the last of them finished. I lie on the cold floor and fall into nowhere. I fell asleep.'
  3343. if pcs_willpwr >= 15 and pcs_willpwr < 30:
  3344. pcs_willpwr -= 15
  3345. end
  3346. if pcs_willpwr >= 30 and pcs_willpwr < 60:
  3347. pcs_willpwr -= 30
  3348. end
  3349. if pcs_willpwr >= 60:
  3350. pcs_willpwr -= 50
  3351. end
  3352. act 'Wake up':
  3353. *clr & cla
  3354. if hour <= 6 or hour >= 21:
  3355. 'They carry me somewhere, I feel wrapped in something, eyes bandaged, a gag in my mouth. Only managed to flush "Mm mm m". "Shut up and don''t scratch if you don''t want yesterday''s repetition" I don''t lean, I can''t, I don''t have the strength ... When I felt I was put on the ground, I gasped for relief. Finally it''s over.'
  3356. minut += 5
  3357. 'Lying down a little, I gathered myself to sit down and remove the bandage. I''m alive and I know where I am. The horror is finally over.'
  3358. act 'Stand up': gt 'mod_public_WC_cabine', 'end1gop1event'
  3359. end
  3360. if hour > 13 or hour < 21:
  3361. minut += rand(420,480)
  3362. 'They carry me somewhere, I feel wrapped in something, eyes bandaged, a gag in my mouth. Only managed to flush "Mm mm m". "Shut up and don''t scratch if you don''t want yesterday''s repeat"'
  3363. pcs_sleep += rand (26,60)
  3364. act 'keep silent':
  3365. *clr & cla
  3366. 'When I felt I was laid on the ground, I breathed a sigh of relief. Finally it''s over.'
  3367. 'Lying down a little, I gathered myself to sit down and remove the bandage. I''m alive and I know where I am. The horror is finally over.'
  3368. act 'Stand up': gt 'mod_public_WC_cabine', 'end1gop1event'
  3369. end
  3370. act 'Try to escape':
  3371. *clr & cla
  3372. temp = rand(40,60)
  3373. if pcs_stren >= temp or pcs_agil >= temp - 20 or pcs_react >= temp - 30:
  3374. 'Turning out of his grip, I jumped sharply, pushing the rapist, tore off the bandage and began to run and ...'
  3375. act 'to Flee': gt 'mod_public_WC_cabine', 'end1gop1event'
  3376. else
  3377. 'I tried to jump out of his grip, but he dropped me into the ground and hit several times and left.'
  3378. gs 'pain', 6, 'head', 'hit'
  3379. gs 'pain', 6, 'chest', 'hit'
  3380. gs 'stat'
  3381. minut += 5
  3382. 'Lying down a little, I gathered myself to sit down and remove the bandage. I''m alive and I know where I am. The horror is finally over.'
  3383. act 'Stand up': gt 'mod_public_WC_cabine', 'end1gop1event'
  3384. end
  3385. end
  3386. end
  3387. if hour > 6 or hour <= 13:
  3388. *clr & cla
  3389. minut += rand(360,420)
  3390. pcs_sleep += rand (23,50)
  3391. 'I wake up and feel unable to go back or squeeze my hands. No, I''m tied to a mattress! ..'
  3392. minut += 5
  3393. 'Very soon 5 naked men came into the room and it all started again ...'
  3394. '<center><video autoplay loop src="mod/public_WC/wc/events/90/1gopevent/2ndday.mp4"></video></center>'
  3395. rape += 1
  3396. gs 'arousal', 'vaginal', rand(25,40), 'sub', 'bound', 'humiliation', 'unknown', 'rough', 'gangbang', 'rape'
  3397. gs 'arousal', 'bj', rand(25,40), 'sub', 'bound', 'humiliation', 'unknown', 'rough', 'gangbang', 'rape'
  3398. gs 'arousal', 'anal', rand(25,40), 'sub', 'bound', 'humiliation', 'unknown', 'rough', 'gangbang', 'rape'
  3399. gs 'cum_call', 'face', 'rapist', 0, 1, -1, 40
  3400. gs 'cum_call', 'face', 'rapist', 0, 1, -1, 40
  3401. gs 'cum_call', 'breasts', 'rapist', 0, 1, -1, 40
  3402. gs 'cum_call', 'labia', 'rapist', 0, 1, -1, 40
  3403. gs 'cum_call', 'butt', 'rapist', 0, 1, -1, 40
  3404. gs 'cum_call', 'anus', 'rapist', 0, 1, -1, 40
  3405. rape += 1
  3406. gang += 1
  3407. pcs_vag += rand(1,3)
  3408. pcs_throat += rand(1,3)
  3409. pcs_ass += rand(1,3)
  3410. swallow += rand(1,3)
  3411. facial += rand(1,3)
  3412. sex += rand(1,3)
  3413. guy += rand(1,3)
  3414. gs 'stat'
  3415. act 'Continue':
  3416. *clr & cla
  3417. gs 'npcgeneratec', 0, 'black', rand(18,30)
  3418. if npc_dick[$npclastgenerated] < 22: npc_dick[$npclastgenerated] = 22
  3419. gs 'boyStat', $npclastgenerated
  3420. rape += 1
  3421. guy += 1
  3422. pcs_vag += 6
  3423. 'After the boys ended up raping me, they invited a black man with a healthy <<npc_dick[$npclastgenerated]>>cm long dick. He started fucking me.'
  3424. '<center><video autoplay loop src="mod/public_WC/wc/events/90/1gopevent/friend.mp4"></video></center>'
  3425. gs 'arousal', 'vaginal', rand(35,40), 'sub', 'bound', 'unknown', 'rough', 'rape'
  3426. gs 'cum_call', 'vaginal', 'black'
  3427. gs 'cum_manage'
  3428. gs 'cuminsidereact', 'black'
  3429. gs 'stat'
  3430. 'After filling my womb with semen, the black then went away. The other guys were shooting it on camera. Again, I was put on a bandage, gagged and carried somewhere.'
  3431. act 'Within minutes, I was brought somewhere':
  3432. *clr & cla
  3433. minut += 3
  3434. '"Bitch, that was cool, now we''re getting you back to where you got, almost unchanged".'
  3435. 'Men rustled and stripped me. No! They tied me to a urinal in the toilet."'
  3436. '<center><img <<$set_imgh>> src="mod/public_WC/wc/events/90/1gopevent/backtotoilet'+rand(1,3)+'.jpg"></center>'
  3437. if hour <= 6 or hour >= 23:
  3438. $SEN += 35
  3439. act 'To sit helplessly': gt 'mod_public_WC_cabine', 'slavenight'
  3440. else
  3441. $SEN += 30
  3442. act 'To sit helplessly': gt 'mod_public_WC_cabine', 'slaveday'
  3443. end
  3444. end
  3445. end
  3446. end
  3447. end
  3448. end
  3449. end
  3450. elseif temp = 1:
  3451. *clr & cla
  3452. menu_off = 1
  3453. 'I woke up because I was being carried somewhere. Hurray! I was released, but why are my eyes tied?'
  3454. 'A stranger put me in the trunk of his car and I felt as we drove away'
  3455. '<center><video autoplay loop src="mod/public_WC/wc/events/90/vezemo.mp4"></video></center>'
  3456. act 'Lying in the trunk':
  3457. minut += rand(10,45)
  3458. if vtecha = 0 and Vania ! 2 and Artem ! 2 and Tolik ! 2:
  3459. gt 'mod_public_WC_rab', 'lis_start'
  3460. else
  3461. vtecha = 2
  3462. gt 'mod_public_WC_rab_DVIR', 'dvir'
  3463. end
  3464. end
  3465. end
  3466. end
  3467. if $ARGS[0] = 'end1gop1event':
  3468. *clr & cla
  3469. menu_off = 1
  3470. gs 'stat'
  3471. temp = rand(1,4)
  3472. if temp = 1:
  3473. $tut = 'Lake'
  3474. act 'Look around': gt 'glake'
  3475. end
  3476. if temp = 2:
  3477. $tut = 'Pavlovsk Industrial District'
  3478. act 'Look around': gt 'pavIndustrial'
  3479. end
  3480. if temp = 3:
  3481. $tut = 'The Construction site'
  3482. act 'Look around': gt 'obekt'
  3483. end
  3484. if temp = 4:
  3485. $tut = 'City highway'
  3486. act 'Look around': gt 'road'
  3487. end
  3488. 'I ended up in <<$tut>>'
  3489. end
  3490. if $ARGS[0] = '2fotoevent':
  3491. *clr & cla
  3492. menu_off = 1
  3493. gs 'stat'
  3494. if pcs_sleep <= 20:
  3495. 'I''m tired and fall asleep hanging on the door.'
  3496. wait 500
  3497. temp = rand(5,90)
  3498. minut += temp
  3499. if temp > 60:
  3500. pcs_sleep += 15
  3501. else
  3502. pcs_sleep += 8
  3503. end
  3504. 'I woke up to the noise of laughter.'
  3505. end
  3506. 'Noisy guys go to the toilet, I can''t remember where I saw them. They look at me in shock for a moment, then slowly approach. One of them pulls out a cellphone and takes some pictures when the others run up and try to take me off.'
  3507. '<center><video autoplay loop src="mod/public_WC/wc/events/90/2fotoevent/foto'+rand(1,2)+'.mp4"></video></center>'
  3508. gs 'fame', 'pav', 'prostitute', 10
  3509. gs 'fame', 'pav', 'sex', 20
  3510. gs 'stat'
  3511. 'Sitting a little on the floor, you mustered up.'
  3512. minut += rand(4,12)
  3513. ghnow = 0
  3514. act 'Get up': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  3515. end
  3516. if $ARGS[0] = '3pavlinevent':
  3517. *clr & cla
  3518. menu_off = 1
  3519. gs 'stat'
  3520. if pcs_sleep <= 20:
  3521. 'I''m tired and fall asleep hanging on the door.'
  3522. wait 500
  3523. temp = rand(5,90)
  3524. minut += temp
  3525. if temp > 60:
  3526. pcs_sleep += 15
  3527. else
  3528. pcs_sleep += 8
  3529. end
  3530. 'I woke up to the sound of water'
  3531. end
  3532. if proshotelopen = 0:
  3533. 'A stranger came up and without any emotion wrote something with a marker on my body. "I think you''re interested in making that kind of money. Do you want to be knocked out of the door or so?"'
  3534. '<center><video autoplay loop src="mod/public_WC/wc/events/90/3pavlinevent/write.mp4"></video></center>'
  3535. body_write = 1
  3536. proshotelopen = 1
  3537. ghnow = 0
  3538. act 'Yes, please': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  3539. act 'No, pervert':
  3540. *clr & cla
  3541. 'The guy was surprised to raise one eyebrow, he grunted and went silently away.'
  3542. '<center><img <<$set_imgh>> src="mod/public_WC/wc/events/90/finish_round.jpg"></center>'
  3543. npc_rel['A217'] += 5
  3544. if hour <= 6 or hour >= 23:
  3545. act 'Continue to hang': gt 'mod_public_WC_cabine', 'slavenight'
  3546. else
  3547. act 'Continue to hang': gt 'mod_public_WC_cabine', 'slaveday'
  3548. end
  3549. end
  3550. else
  3551. '<<$npc_nickname[''A217'']>> went to the toilet and without any emotion asked: "Do you want to be knocked out of the door or so?"'
  3552. ghnow = 0
  3553. act 'Yes, please': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  3554. act 'No, pervert':
  3555. *clr & cla
  3556. '<<$npc_nickname[''A217'']>> laughed: "Oh, and you''re crazy."'
  3557. '<center><img <<$set_imgh>> src="mod/public_WC/wc/events/90/finish_round.jpg"></center>'
  3558. npc_rel['A217'] += 3
  3559. $SEN -= 30
  3560. if hour <= 6 or hour >= 23:
  3561. act 'Continue to hang': gt 'mod_public_WC_cabine', 'slavenight'
  3562. else
  3563. act 'Continue to hang': gt 'mod_public_WC_cabine', 'slaveday'
  3564. end
  3565. end
  3566. end
  3567. end
  3568. if $ARGS[0] = '4rapeevent':
  3569. *clr & cla
  3570. menu_off = 1
  3571. '<center><video autoplay loop src="mod/public_WC/wc/events/90/4rapeevent/vkrav.mp4"></video></center>'
  3572. 'A stranger put me in the trunk of his car and I felt as we drove away'
  3573. if pcs_sleep <= 20:
  3574. 'I''m tired and fall asleep hanging on the door.'
  3575. wait 500
  3576. temp = rand(5,90)
  3577. minut += temp
  3578. if temp > 60:
  3579. pcs_sleep += 15
  3580. else
  3581. pcs_sleep += 8
  3582. end
  3583. 'I woke up because I was being carried somewhere. Hurray! I was released, but why are my eyes tied?'
  3584. pcs_mood += 5
  3585. end
  3586. if pcs_sleep > 20:
  3587. 'A stranger with hungry eyes approached me and smiled wickedly. I''m afraid. He put a blindfold on my eyes, forcefully opened my mouth and inserted a gag.'
  3588. 'He jerked me off the door helplessly and carried me outside, my muscles so numb that I could not even resist.'
  3589. end
  3590. temp = rand(1,20)
  3591. if temp = 20:
  3592. act 'Lying in the trunk':
  3593. minut += rand(10,45)
  3594. gt 'abduction', 'abdCarTrunk'
  3595. end
  3596. end
  3597. if temp <= 19:
  3598. act 'Lying in the trunk':
  3599. minut += rand(10,20)
  3600. gt 'mod_public_WC_cabine', 'cargo'
  3601. end
  3602. end
  3603. end
  3604. if $ARGS[0] = 'cargo':
  3605. *clr & cla
  3606. menu_off = 1
  3607. 'The car stopped, I hear a man come up to me, a rude man''s voice said, "I''ll work with you right now"'
  3608. gs 'npcgeneratec', 0, 'rapist', rand(21,55)
  3609. gs 'boyStat', $npclastgenerated
  3610. *nl
  3611. 'The man removed the bandage - it was my briefs and put them in my mouth. The man started raping me with his <<npc_dick[$npclastgenerated]>>cm long <<$npc_thdick[$npclastgenerated]>> cock'
  3612. '<center><video autoplay loop src="mod/public_WC/wc/events/90/5carsoldevent/kradiy_peredstart.mp4"></video></center>'
  3613. gs 'bras', 'remove'
  3614. gs 'clothing', 'strip'
  3615. gs 'panties', 'remove'
  3616. gs 'arousal', 'vaginal', 15, 'unknown', 'sub', 'rough', 'rape'
  3617. gs 'stat'
  3618. rape += 1
  3619. guy += 1
  3620. act 'Continue':
  3621. *clr & cla
  3622. gs 'cum_call', 'vaginal', 'thief'
  3623. gs 'cum_manage'
  3624. gs 'cuminsidereact', 'thief'
  3625. gs 'stat'
  3626. temp = rand(1,3)
  3627. '<center><video autoplay loop src="mod/public_WC/wc/events/90/bimbo/fin_vag_<<temp>>.mp4"></video></center>'
  3628. 'After he had finished, he threw me at the cold bottom of the car, saying, "Think why you are here."'
  3629. act ' Continue':
  3630. *clr & cla
  3631. 'You don''t have to be a genius to understand: he will rape me further, and maybe others will. I can''t do anything right now, or can I? ..'
  3632. *nl
  3633. '......Ai! My thoughts were interrupted by the feeling of a stab in the arm'
  3634. mood -= 30
  3635. '<center><img <<$set_imgh>> src="mod/public_WC/wc/events/90/5carsoldevent/wait.jpg"></center>'
  3636. gs 'drugs', 'aphrodisiac'
  3637. gs 'drugs', 'heroin'
  3638. amphetamine += 1
  3639. aphrodisiac_have += 1
  3640. gs 'stat'
  3641. act 'Continue':
  3642. *clr & cla
  3643. 'Listen to me, Whore, now you have a little work to do, nothing new for you. If you obey everything will end well.'
  3644. act 'Nod to Yes':
  3645. willpowermax -= rand(1,2)
  3646. gt 'mod_public_WC_cabine', 'carwork'
  3647. end
  3648. if addictive_trait_lvl >= 1:
  3649. 'From the injection, obviously I feel a surge of drugs'
  3650. end
  3651. act 'Try to push him away with all his might':
  3652. if pcs_stren * addictive_trait_lvl > 80:
  3653. *clr & cla
  3654. 'I pushed him hard. He hit his head hard on the car. Under the influence of something, I quickly found the knife in his pocket and cut my ropes. I jumped out of the car without thinking I ran into the woods'
  3655. act 'I''m running away': gt 'gadforest', 'forest_center'
  3656. else
  3657. *clr & cla
  3658. 'I feel like everything is floating, I can''t muster myself. I hear "That''s good."'
  3659. act 'Continue': gt 'mod_public_WC_cabine', 'carwork'
  3660. end
  3661. end
  3662. end
  3663. end
  3664. end
  3665. end
  3666. if $ARGS[0] = 'carwork':
  3667. gt 'mod_public_WC_cabine_carwork', 'start'
  3668. end
  3669. if $ARGS[0] = 'bukake':
  3670. *clr & cla
  3671. gs 'stat'
  3672. 'Men cried and applauded enthusiastically. "Ok, now sit and do not move," said the leader. "But you promised!" - I spoke. "We promised that nobody will enter you, it will be".'
  3673. act 'Sit calmly':
  3674. *clr & cla
  3675. temp = rand(1,11)
  3676. '<center><video autoplay loop src="mod/public_WC/wc/events/78/bukake_<<temp>>.mp4"></video></center>'
  3677. 'The guys started to cums on me.'
  3678. gs 'cum_call', 'face', '$boy', 0, 1, -1, 250
  3679. gs 'cum_call', 'face', 'an unknown guy from the gloryhole', 0, 1, -1, 120
  3680. gs 'cum_call', 'face', 'an unknown guy from the gloryhole', 0, 1, -1, 130
  3681. gs 'cum_call', 'clothes', 'an unknown guy from the gloryhole', 0, 1, -1, 300
  3682. gs 'cum_call', 'back', 'an unknown guy from the gloryhole', 0, 1, -1, 150
  3683. gs 'cum_call', 'arms', 'an unknown guy from the gloryhole', 0, 1, -1, 100
  3684. gs 'cum_call', 'hands', 'short-dick', 0, 1, -1, 40
  3685. gs 'cum_call', 'stomach', 'fatty', 0, 1, -1, 200
  3686. gs 'cum_call', 'breasts', 'an unknown guy from the gloryhole', 0, 1, -1, 200
  3687. minut += rand(15,45)
  3688. gs 'stat'
  3689. gs 'arousal', 'voyeur', -1, 'group', 'unknown', 'gloryhole', 'sub'
  3690. gs 'arousal', 'titjob', -1, 'group', 'unknown', 'gloryhole', 'sub'
  3691. gs 'arousal', 'foreplay_give', -1, 'group', 'unknown', 'gloryhole', 'sub'
  3692. gs 'stat'
  3693. act 'Wait':
  3694. cla
  3695. 'The last guy wiped his dick about my hair, hid the dick and went out.'
  3696. gs 'cum_call', 'hair', 'last guy', 0, 1, -1, 60
  3697. gs 'arousal', 'voyeur', -1, 'group', 'unknown', 'gloryhole', 'sub'
  3698. swallow += ghnow
  3699. facial += ghnow
  3700. slutty += ghnow
  3701. pav_prostitute += ghnow - 4
  3702. ghnow = 2
  3703. gs 'stat'
  3704. act 'Get up and look around': gt 'mod_public_WC_cabine', 'mod_public_WC_cabine_WORK'
  3705. end
  3706. end
  3707. act 'Try escape!':
  3708. clr & cla
  3709. gs 'willpower', 'misc', 'self', 'hard'
  3710. if will_cost <= pcs_willpwr:
  3711. act 'Pushing off the rapist and escaping (<<will_cost>> Willpower)':
  3712. clr & cla
  3713. gs 'willpower', 'pay', 'self'
  3714. gs 'stat'
  3715. 'I sharply climb I am breaking off the rapists and break through to the exit'
  3716. '<center><img <<$set_imgh>> src="!!!.jpg"></center>'
  3717. act 'Continue':
  3718. *clr & cla
  3719. if pcs_ftbll >= 5 or pcs_run >= 20 or pcs_agil >= 80:
  3720. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/gorodok.jpg"></center>'
  3721. 'Already before the exit, I avoid the footboard. And run from the cabine and don''t stop until I am back in the residential area'
  3722. act 'Catch your breath':
  3723. minut += 5
  3724. gt 'pav_residential'
  3725. end
  3726. else
  3727. gs 'pain', 1, 'handR', 'hit'
  3728. gs 'pain', 4, 'chest', 'kick'
  3729. gs 'stat'
  3730. 'Already before the exit, I fall through the footboard. Hit the chest Blows all the air out of my lungs, then they pulled me into the center of the circle of men.'
  3731. wait 900
  3732. gt 'mod_public_WC_cabine', 'slave'
  3733. end
  3734. end
  3735. end
  3736. else
  3737. act 'Try escape! (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  3738. end
  3739. end
  3740. end
  3741. if $ARGS[0] = 'motuzka':
  3742. if $rope >= 100: $sylamotuzky = '<font color = green > █████ </font> '
  3743. if $rope >= 80 and $rope < 100: $sylamotuzky = '<font color = blue > ████_ </font> '
  3744. if $rope >= 60 and $rope < 80: $sylamotuzky = '<font color = blue > ███__ </font> '
  3745. if $rope >= 40 and $rope < 60: $sylamotuzky = '<font color = red > ██___ </font> '
  3746. if $rope >= 20 and $rope < 40: $sylamotuzky = '<font color = red > █____ </font> '
  3747. if $rope < 20: $sylamotuzky = '<font color = red > I am free! </font> '
  3748. '<center>The rope shackles me by: <<$sylamotuzky>></center>'
  3749. end
  3750. if $ARGS[0] = 'strip':
  3751. !$strip_loc = location when stripping outdoors
  3752. $strip_loc = $ARGS[1]
  3753. gs 'clothing', 'wear_last_worn'
  3754. gs 'underwear', 'wear'
  3755. gs 'stat'
  3756. cumspclnt = 6
  3757. gs 'cum_cleanup'
  3758. if cloth_vid = 1:
  3759. last_vid = 1
  3760. else
  3761. last_vid = 0
  3762. end
  3763. if PCloStyle2 = 4:
  3764. $schbrand = $clothingworntype
  3765. schtype = clothingwornnumber
  3766. end
  3767. if $strip_loc ! '' :
  3768. DYNAMIC '$CloLos<<$clothingworntype>>[<<clothingwornnumber>>]=<<$strip_loc>>'
  3769. $CloLosLoc[] = $strip_loc
  3770. $CloLosTyp[$strip_loc] = $clothingworntype
  3771. CloLosNum[$strip_loc] = clothingwornnumber
  3772. CloLosDay[$strip_loc] = daystart
  3773. KILLVAR '$lastwornclothingtype'
  3774. KILLVAR 'lastwornclothingnumber'
  3775. else
  3776. $lastwornclothingtype = $clothingworntype
  3777. lastwornclothingnumber = clothingwornnumber
  3778. end
  3779. killvar '$strip_loc'
  3780. $clothingworntype = 'nude'
  3781. clothingwornnumber = 0
  3782. CloQuality = 0
  3783. CloThinness = 0
  3784. CloTopCut = 0
  3785. CloBra = 0
  3786. CloPantsShortness = 0
  3787. CloSkirtShortness = 0
  3788. CloPanties = 0
  3789. CloStyle = 0
  3790. CloStyle2 = 0
  3791. CloBimbo = 0
  3792. CloOnePiece = 0
  3793. PShoQuaility = 0
  3794. PShoCut = 0
  3795. PShoHeels = 0
  3796. PShoStyle = 0
  3797. PCloPanties = 0
  3798. PCloQuality = 0
  3799. PCloThinness = 0
  3800. PCloTopCut = 0
  3801. PCloPants = 0
  3802. PCloSkirt = 0
  3803. PCloStyle = 0
  3804. PCloStyle2 = 0
  3805. PCloBimbo = 0
  3806. PCloInhibit = 0
  3807. PCloOnePiece = 0
  3808. PCloswimwear = 0
  3809. PXCloThinness = 0
  3810. PXCloTopCut = 0
  3811. PXCloBottomShortness = 0
  3812. glamur = 0
  3813. sport = 0
  3814. ski = 0
  3815. ofclo = 0
  3816. sexual = 0
  3817. odevnesh = 0
  3818. ! WD: Bimbo look
  3819. cloth_vid = 0
  3820. exhibiHideNewCloth = 0
  3821. end
  3822. killvar '$dodatkovi'
  3823. killvar '$GROSHI'
  3824. killvar 'Atemp'
  3825. killvar '$submax'
  3826. killvar 'Tsex'
  3827. killvar 'maxvagfull'
  3828. killvar 'vagfull'
  3829. killvar '$tut'
  3830. --- mod_public_WC_cabine ---------------------------------