gopsex.tw 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111
  1. :: gopsex
  2. <<set $here = 'gopsex'>>
  3. <<set $ARGS = $location_var[$here]>>
  4. <!-- !!what is this file it seems overly complicated, some of it still uses horny instead of arousal. Some of the stuff i don't even know how it works like a lot of the family text near the bottom.-->
  5. <<set $menu_off = 1>>
  6. * P ''
  7. <!-- !------------------------------------!-->
  8. <!-- ! Different variations of sex -------------!-->
  9. <!-- !====================================!-->
  10. <<if $location_var[$here][0] == 'settings'>>
  11. <!-- !count-at times can be sex in the night (by default 2, then the value partner says he's tired)-->
  12. <!-- !Vasily:-->
  13. <<if $shgopsex_vasya_day != $time.daystart>>
  14. <<set $shgopsex_vasya_count = 2>> <<set $shgopsex_vasya_day = $time.daystart>>
  15. <</if>>
  16. <!-- !Dan:-->
  17. <<if $shgopsex_den_day != $time.daystart>>
  18. <<set $shgopsex_den_count = 2>> <<set $shgopsex_den_day = $time.daystart>>
  19. <</if>>
  20. <!-- !Vitek:-->
  21. <<if $shgopsex_vitya_day != $time.daystart>>
  22. <<set $shgopsex_vitya_count = 2>> <<set $shgopsex_vitya_day = $time.daystart>>
  23. <</if>>
  24. <!-- !gangbang Number-during times daily:-->
  25. <<if $shgopsex_gr_day != $time.daystart>>
  26. <<set $shgopsex_gr_count = 1>> <<set $shgopsex_gr_day = $time.daystart>>
  27. <</if>>
  28. <!-- !---------------------------------------------------------!-->
  29. <!-- !count-in order to select a partner want to end:-->
  30. <!-- !1on1 (this option obnovlyaetsya after sex, in $shgopsex_end)-->
  31. <<set $shgopsex_count = rand(4,7)>>
  32. <!-- !gangbang-->
  33. <<set $shgopsex_group_count = rand(3,5)>>
  34. <</if>>
  35. <!-- !===================!============================================-->
  36. <!-- !deduce if gg first time-->
  37. <<if $location_var[$here][0] == 'gg_devst_deflor'>>
  38. <<if $pc.thinksIsVirgin>>
  39. <<if $pc.pcs_vag == 0>>
  40. <<set $pc.horny = 0>>
  41. <<set $pc.mood = $pc.mood - 15>>
  42. You tell them it's your first time and ask them to be gentle.
  43. <font color = red><b>You bite your lip in pain and tears well up in your eyes when his member enters your pussy, breaking your hymen. You are crying and moaning as the sturdy cock fucks your bloody pussy.</b></font>
  44. <<else>>
  45. You tell them it's your first time and ask them to be gentle.
  46. His member enters you with some resistance, but it doesn''t hurt. If anything, it feels good. You expected your first time to be painful and with some blood, yet there is none.
  47. <</if>>
  48. <</if>>
  49. <</if>>
  50. <!-- !Text orgasm years:-->
  51. <!-- !orgasm years:-->
  52. <<if $location_var[$here][0] == 'gg_sex_orgasm'>>
  53. <<if getvar("$mesec") > 0>>
  54. <!-- !periods, orgasm is not possible-->
  55. <<set $pc.horny = 0>>
  56. <<set $pc.mood = $pc.mood - 10>>
  57. <font color = red><b>You have a period. As his cock rams your cunt, period blood is leaking out of your box.</b></font>
  58. <<elseif $pc.horny >= 50>>
  59. <<set $horny_orgasm_text = RAND(0,11)>>
  60. <<if getvar("$horny_orgasm_text") == 0>>
  61. <p>You are trying to come, and you beg him to '+setup.func('gopsex','hide','gop_sextext1')+' you harder.</p>
  62. <<elseif getvar("$horny_orgasm_text") == 1>>
  63. You try to reach your peak, so you start bouncing faster.
  64. <<elseif getvar("$horny_orgasm_text") == 2>>
  65. You are about to cum, and you ask him to push his dick deeper.
  66. <<elseif getvar("$horny_orgasm_text") == 3>>
  67. <p>You are trying to come and ask him to '+setup.func('gopsex','hide','gop_sextext1')+' you faster.</p>
  68. <<elseif getvar("$horny_orgasm_text") == 4>>
  69. You want to come badly, so you try to catch his pace and bounce his hard dick.
  70. <<elseif getvar("$horny_orgasm_text") == 5>>
  71. You want to reach your peak, so you begin actively humping his dick.
  72. <<elseif getvar("$horny_orgasm_text") == 6>>
  73. You are trying to come, and you ask him to hurry.
  74. <<elseif getvar("$horny_orgasm_text") == 7>>
  75. <p>You crave for them to '+setup.func('gopsex','hide','gop_sextext1')+' you harder...</p>
  76. <<elseif getvar("$horny_orgasm_text") == 8>>
  77. You want to finish and plead with him to treat you rough.
  78. <<elseif getvar("$horny_orgasm_text") == 9>>
  79. <p>You beg your partner to '+setup.func('gopsex','hide','gop_sextext1')+' you harder.</p>
  80. <<elseif getvar("$horny_orgasm_text") == 10>>
  81. You yell smut naming yourself a dirty whore to provoke your partner and reach your peak.
  82. <<elseif getvar("$horny_orgasm_text") == 11>>
  83. <p>You are overexcited, and you want to climax. So you beg your partner to '+setup.func('gopsex','hide','gop_sextext1')+' you heavily.</p>
  84. <</if>>
  85. <<if $pc.horny >= 70>>
  86. <<set $orgasm += 1>>
  87. <<set $pc.horny = 0>>
  88. <<set $pc.mood += 25>>
  89. <<set $pc.pcs_hairbsh = 0>>
  90. <<set $orgasm_text = RAND(0,11)>>
  91. <<if getvar("$orgasm_text") == 0>>
  92. The excitement exceeds your limits, and you scream loudly as you undergo an intense climax.
  93. <<elseif getvar("$orgasm_text") == 1>>
  94. Your body begins shaking, and you cum violently.
  95. <<elseif getvar("$orgasm_text") == 2>>
  96. A loud groan comes from your mouth, and an intense orgasm engulfs your body.
  97. <<elseif getvar("$orgasm_text") == 3>>
  98. You shiver in convulsions and begin to finish.
  99. <<elseif getvar("$orgasm_text") == 4>>
  100. You are breathing heavily, being excited, and you'll reach your climax soon.
  101. <<elseif getvar("$orgasm_text") == 5>>
  102. Thanks to the skillfulness of your partner, you experience an intense orgasm.
  103. <<elseif getvar("$orgasm_text") == 6>>
  104. Amazing feeling overfilled your senses, and you finish loudly.
  105. <<elseif getvar("$orgasm_text") == 7>>
  106. You've never experienced such an intense orgasm before. You shiver still for a couple of minutes until your climax fades.
  107. <<elseif getvar("$orgasm_text") == 8>>
  108. Experiencing incredible feelings, you reach a pinnacle.
  109. <<elseif getvar("$orgasm_text") == 9>>
  110. You moan loudly, and thanks to the skilful actions of your partner, you climax.
  111. <<elseif getvar("$orgasm_text") == 10>>
  112. The room fills with your screams. Finally, you finish loudly, no matter who can hear you.
  113. <<elseif getvar("$orgasm_text") == 11>>
  114. You are overcome by surging emotions and finish with a loud groan.
  115. <</if>>
  116. <</if>>
  117. <</if>>
  118. <</if>>
  119. <!-- !masturbation years(when spying):-->
  120. <<if $location_var[$here][0] == 'masturb_gg'>>
  121. <<if getvar("$mesec") > 0>>
  122. <!-- !periods, orgasm is not possible-->
  123. <<set $pc.horny = 0>>
  124. <<set $pc.mood = $pc.mood - 10>>
  125. <<set $time.minutes += 3>>
  126. <font color = red><b>What you see makes you a little excited, but since it's your time of the month, you don't feel like masturbating and getting your fingers bloody...</b></font>
  127. <<elseif getvar("$mesec") <= 0>>
  128. <!-- !no monthly, orgasm is possible-->
  129. <<if $pc.horny >= 50>>
  130. <<set $dummywhere = 'into your panties'>>
  131. <<if !$wardrobe.isWearingPanties>>
  132. <<set $dummywhere = 'to your pussy'>>
  133. <</if>>
  134. <<if $wardrobe.PCloSkirt > 0>>
  135. <<set $dummywhat = 'lift up your skirt'>>
  136. <</if>>
  137. <<if getvar("$CloPantsShortness") > 0>>
  138. <<set $dummywhat = 'unbutton and unzip your pants'>>
  139. <</if>>
  140. <<if getvar("$CloPantsShortness") > 2>>
  141. <<set $dummywhat = 'unbutton and unzip your shorts'>>
  142. <</if>>
  143. <<set $rnd_masturb_text = rand(1,3)>>
  144. <<if getvar("$rnd_masturb_text") == 1>>
  145. <p>The view is quite exciting. You slip your hand $dummywhere and start rubbing your clit.</p>
  146. <<elseif getvar("$rnd_masturb_text") == 2>>
  147. <p>You are very excited about this view. Of course, you can't help, but your hand slips $dummywhere, and you start rubbing your itching pussy.</p>
  148. <<elseif getvar("$rnd_masturb_text") == 3>>
  149. <p>Watching the scene, you become enormously excited. You $dummywhat, slip your hand $dummywhere, and start masturbating.</p>
  150. <</if>>
  151. <<set $dummywhere to null>>
  152. <<set $dummywhat to null>>
  153. <</if>>
  154. <<if $pc.horny >= 60>>
  155. Your excitement grows, and you start even faster to rub your pussy, poking your fingers deeper into your love hole and teasing your clit.
  156. <</if>>
  157. <<if $pc.horny >= 70>>
  158. <<set $orgasm_txt = 'You are overcome by surging emotions and finish with a loud groan.'>>
  159. <<set $orgasm_or = 'yes'>>
  160. <</if>>
  161. <<arouse 'clit_finger' 3 `['masturbate']`>>
  162. <</if>>
  163. <</if>>
  164. <!-- !text of the appeal to the years, kid, etc..d.-->
  165. <!-- !===========================================================!-->
  166. <!-- !----------------------!-->
  167. <!-- ! SEX SG /u0026 CO !-->
  168. <!-- !======================!-->
  169. <!-- !choice with whom to fuck:-->
  170. <<if $location_var[$here][0] == 'gopsex_select'>>
  171. <<set $gop_sex_lubri = 0>>
  172. <<set $gop_groupsex_lubri = 0>>
  173. <<gs 'gopsex' 'settings'>>
  174. <!-- FAILED TO CONVERT
  175. if pcs_horny <50 and PCloStyle ! 4: '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/body/b'+rand(1,17)+'.jpg"></center> <br> You want sex.'
  176. -----
  177. <<if $pc.horny < 50 and $wardrobe.PCloStyle != 4>>
  178. <!-- FAILED TO CONVERT
  179. '<<image 'locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/body/b#.jpg' 1 17>> <br> You want sex.'
  180. -----
  181. <<set ERROR: FAILED TO CONVERT LITERAL: """'<center><img $set_imgh src""" = "images / $locations / $pavlovsk / $resident / $apartment / $shulginhome / $bigroom / $gopsex / $pc.body / b' + rand(1,17) + ERROR: FAILED TO CONVERT LITERAL: """'.jpg"><""" / ERROR: FAILED TO CONVERT LITERAL: """center> <br> You want sex.'""">>
  182. -->
  183. <<warn "CONVERSION ERROR 39de6bd89336b9789fbee45617e382c2">>
  184. <</if>>
  185. -->
  186. <<warn "CONVERSION ERROR bfb26d4f19f9840111c5672acf407a92">>
  187. <!-- FAILED TO CONVERT
  188. if pcs_horny >=50 and PCloStyle ! 4: '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/body/g'+rand(1,20)+'.jpg"></center> <br> You are overexcited, and you strongly want to fuck.'
  189. -----
  190. <<if $pc.horny >= 50 and $wardrobe.PCloStyle != 4>>
  191. <!-- FAILED TO CONVERT
  192. '<<image 'locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/body/g#.jpg' 1 20>> <br> You are overexcited, and you strongly want to fuck.'
  193. -----
  194. <<set ERROR: FAILED TO CONVERT LITERAL: """'<center><img $set_imgh src""" = "images / $locations / $pavlovsk / $resident / $apartment / $shulginhome / $bigroom / $gopsex / $pc.body / g' + rand(1,20) + ERROR: FAILED TO CONVERT LITERAL: """'.jpg"><""" / ERROR: FAILED TO CONVERT LITERAL: """center> <br> You are overexcited""" , and you strongly want to fuck.'>>
  195. -->
  196. <<warn "CONVERSION ERROR d0b921c8565e0e777f8c78fec49562a3">>
  197. <</if>>
  198. -->
  199. <<warn "CONVERSION ERROR 96151428a47a3f2d3233391902fb2897">>
  200. <<if $wardrobe.PCloStyle == 4>>
  201. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/body/h#.jpg" 1 17>>
  202. <</if>>
  203. <<actCLA 'Have sex with '+setup.func('gopsex','hide','Shulga_var_name')>>
  204. <<if getvar("$shgopsex_vasya_count") <= 0>>
  205. <p>Vasily said, "$pc.name_nick, you fucked with me already. It's enough fun for today, don't bother."</p>
  206. <<act 'Leave'>>
  207. <<gt 'vasilyhome' 'livingroom'>>
  208. <</act>>
  209. <<else>>
  210. <<set $gopsex_n_npc = 1>>
  211. <<set $shgopsex_vasya_day = $time.daystart>>
  212. <<set $shgopsex_vasya_count -= 1>>
  213. <<set $npc('A11').sex += 1>>
  214. <!-- Boy A11 -->
  215. <<gs 'gopsex' 'shgopsex'>>
  216. <</if>>
  217. <</actCLA>>
  218. <<if $time.weekday < 5 and $time.hour >= 20>>
  219. <<actCLA 'Have sex with Dan'>>
  220. <<if getvar("$shgopsex_den_count") <= 0>>
  221. <p>Dan says, "'+setup.func('gopsex','hide','gop_gg_name')+', you've fucked me enough today. Get out!"</p>
  222. <<act 'Leave'>>
  223. <<gt 'vasilyhome' 'livingroom'>>
  224. <</act>>
  225. <<else>>
  226. <<set $gopsex_n_npc = 0>>
  227. <<set $shgopsex_den_day = $time.daystart>>
  228. <<set $shgopsex_den_count -= 1>>
  229. <<set $npc('A10').sex += 1>>
  230. <!-- Boy A10 -->
  231. <<gs 'gopsex' 'shgopsex'>>
  232. <</if>>
  233. <</actCLA>>
  234. <<actCLA 'Sex with Vitek'>>
  235. <<if getvar("$shgopsex_vitya_count") <= 0>>
  236. <p>Vitek says, "Sorry, $pc.name_nick, I can't fuck you more today."</p>
  237. <<act 'Leave'>>
  238. <<gt 'vasilyhome' 'livingroom'>>
  239. <</act>>
  240. <<else>>
  241. <<set $gopsex_n_npc = 2>>
  242. <<set $shgopsex_vitya_day = $time.daystart>>
  243. <<set $shgopsex_vitya_count -= 1>>
  244. <<set $npc('A9').sex += 1>>
  245. <!-- Boy A9 -->
  246. <<gs 'gopsex' 'shgopsex'>>
  247. <</if>>
  248. <</actCLA>>
  249. <<if $pc.fame('pav_slut') >= 150 and ($pc.alko >= 3 and getvar("$shgopsex_gr_count") > 0) or ($pc.horny >= 50 and getvar("$shgopsex_gr_count") > 0)>>
  250. <<actCLA 'Participate in group sex'>>
  251. <<gs 'gopsex' 'shgopsex_group'>>
  252. <</actCLA>>
  253. <</if>>
  254. <</if>>
  255. <<actCLA 'Leave' undefined `{willpower:['sex','resist']}`>>
  256. <<gt 'vasilyhome' 'livingroom'>>
  257. <</actCLA>>
  258. <</if>>
  259. <!-- !===========================================================!-->
  260. <!-- !Sex 1 on 1!-->
  261. <!-- !===========!-->
  262. <!-- !sex selection!-->
  263. <<if $location_var[$here][0] == 'shgopsex'>>
  264. <<if $location_var[$here][1] != 'cont'>>
  265. <p>"So $boydesc, do you want to have fun with me?" You lick your lips sensually and ask him: "What can I do for you?"</p>
  266. <<if getvar("$mesec") > 0>>
  267. <font color = red><b>You warn him that you're on your period, so your pussy is off-limits!</b></font>
  268. <<elseif getvar("$mesec") <= 0 and $pc.thinksIsVirgin>>
  269. <font color = red><b>You tell him that you want to save your virginity so your pussy is available only for eating.</b></font>
  270. <</if>>
  271. <</if>>
  272. <<act 'Hand job'>>
  273. <<gt 'gopsex' 'shgopsex_hj'>>
  274. <</act>>
  275. <<act 'Blow job'>>
  276. <<gt 'gopsex' 'shgopsex_bj'>>
  277. <</act>>
  278. <<if $pc.pcs_throat >= 20>>
  279. <<act 'Deep Throat'>>
  280. <<gt 'gopsex' 'shgopsex_throat'>>
  281. <</act>>
  282. <</if>>
  283. <<if getvar("$mesec") <= 0 and !$pc.thinksIsVirgin>>
  284. <<act 'Sex'>>
  285. <<gt 'gopsex' 'shgopsex_vag'>>
  286. <</act>>
  287. <</if>>
  288. <<act 'Anal sex'>>
  289. <<gt 'gopsex' 'shgopsex_anal'>>
  290. <</act>>
  291. <<act 'Grope boobs'>>
  292. <<gt 'gopsex' 'shgopsex_tits'>>
  293. <</act>>
  294. <<if getvar("$mesec") <= 0>>
  295. <<act 'Sixty nine'>>
  296. <<gt 'gopsex' 'shgopsex_69'>>
  297. <</act>>
  298. <<act 'Cunnilingus'>>
  299. <<gt 'gopsex' 'shgopsex_lick'>>
  300. <</act>>
  301. <</if>>
  302. <<gs 'willpower' 'sex' 'resist' 'medium'>>
  303. <<if $will_cost <= $pc.willpower>>
  304. <<actCLA 'Leave(will_cost Willpower)'>>
  305. <<gs 'willpower' 'pay' 'resist'>>
  306. <<gt 'vasilyhome' 'livingroom'>>
  307. <</actCLA>>
  308. <</if>>
  309. <!-- !ending sex-->
  310. <<if $location_var[$here][0] == 'shgopsex_end'>>
  311. <<if getvar("$sh_bjandhj_cum") >= 1>>
  312. <<act 'In your mouth'>>
  313. <<gt 'gopsex' 'hide' 'shgopsex_swallow'>>
  314. <</act>>
  315. <<act 'On your face'>>
  316. <<gt 'gopsex' 'hide' 'shgopsex_cumface'>>
  317. <</act>>
  318. <<act 'On your body'>>
  319. <<gt 'gopsex' 'hide' 'shgopsex_cumbelly'>>
  320. <</act>>
  321. <!-- !we finish anywhere-->
  322. <<elseif getvar("$sh_bjandhj_cum") <= 0>>
  323. <<act 'In your mouth'>>
  324. <<gt 'gopsex' 'hide' 'shgopsex_swallow'>>
  325. <</act>>
  326. <<act 'On your face'>>
  327. <<gt 'gopsex' 'hide' 'shgopsex_cumface'>>
  328. <</act>>
  329. <<act 'On your body'>>
  330. <<gt 'gopsex' 'hide' 'shgopsex_cumbelly'>>
  331. <</act>>
  332. <<if !$pc.thinksIsVirgin>>
  333. <<act 'In your pussy'>>
  334. <<gt 'gopsex' 'hide' 'shgopsex_cumvag'>>
  335. <</act>>
  336. <</if>>
  337. <<act 'In your butt'>>
  338. <<gt 'gopsex' 'hide' 'shgopsex_cumanal'>>
  339. <</act>>
  340. <</if>>
  341. <<set $sh_bjandhj_cum to null>>
  342. <<set $shgopsex_count to null>>
  343. <</if>>
  344. <!-- !===============================================================!-->
  345. <!-- !lick years-->
  346. <<if $location_var[$here][0] == 'shgopsex_lick'>>
  347. <<set $time.minutes += 1>>
  348. <!-- !Vasily (NPC 1)-->
  349. <<if getvar("$gopsex_n_npc") == 1>>
  350. <<if $pc.fame('pav_slut') >= 200>>
  351. <p>$pc.name_nick, you are a $gnikname. It's unpleasant for me to lick the cunt of such a girl. God knows how many cocks you have got there today. So go ahead, expose your whorish holes! I'm going to fuck you.</p>
  352. <<elseif $pc.fame('pav_slut') < 200>>
  353. <<set $pc.horny += 10>>
  354. <<set $time.minutes += '+rand(3,7)+'>>
  355. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  356. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/lick/lick#.jpg" 1 11>>
  357. <<gs 'gopsex' 'hide' 'text_sex_cun'>>
  358. <</if>>
  359. <</if>>
  360. <!-- !Vitek (NPC 2)-->
  361. <<if getvar("$gopsex_n_npc") == 2>>
  362. <<if $pc.fame('pav_slut') >= 200>>
  363. <p>$pc.name_nick, you are a $gnikname. It's unpleasant for me to lick the cunt of such a girl. God knows how many cocks you have got there today. So go ahead, show me better your whorish holes!</p>
  364. <<elseif $pc.fame('pav_slut') < 200>>
  365. <<set $pc.horny += 10>>
  366. <<set $time.minutes += '+rand(3,7)+'>>
  367. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  368. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/lick/lick#.jpg" 1 11>>
  369. <<gs 'gopsex' 'hide' 'text_sex_cun'>>
  370. <<gs 'gopsex' 'gg_sex_orgasm'>>
  371. <</if>>
  372. <</if>>
  373. <!-- !Dan (NPC 0)-->
  374. <<if getvar("$gopsex_n_npc") == 0>>
  375. "Dan, lick my pussy, please." You ask sweetly.
  376. <p>"$pc.name_nick, aren't you screwy to ask me to do such stuff?"</p>
  377. <p>"And what's wrong with that? Are you ashamed to do me nicely?"</p>
  378. <p>"Yes, it's unpleasant for me to lick cunt of a slut. God knows how many cocks you have got there today... So come on! Don't fuck with me... Expose your whorish holes! I'm going to fuck you."</p>
  379. <</if>>
  380. <<actCLA 'Sex selection'>>
  381. <<gs 'gopsex' 'shgopsex' 'cont'>>
  382. <</actCLA>>
  383. <</if>>
  384. <!-- !mutual affection, posture 69-->
  385. <<if $location_var[$here][0] == 'shgopsex_69'>>
  386. <<set $time.minutes += 1>>
  387. <<if getvar("$gopsex_n_npc") >= 1>>
  388. <<if $pc.fame('pav_slut') >= 200>>
  389. <p>$pc.name_nick, you are a $gnikname. It's unpleasant for me to lick the cunt of such a girl. God knows how many cocks you have got there today. So go ahead, show me better your whorish holes!</p>
  390. <<actCLA 'Sex selection'>>
  391. <<gs 'gopsex' 'shgopsex' 'cont'>>
  392. <</actCLA>>
  393. <<elseif $pc.fame('pav_slut') < 200>>
  394. <<arouse 'bj' 5 >>
  395. <<arouse 'cuni' 5 >>
  396. <<set $time.minutes -= 5>>
  397. <<set $shgopsex_count -= 1>>
  398. <<set $sh_bjandhj_cum = 1>>
  399. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  400. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/lick/69_#.jpg" 1 3>>
  401. <<gs 'gopsex' 'hide' 'text_sex_69'>>
  402. <<gs 'gopsex' 'gg_sex_orgasm'>>
  403. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  404. <<if getvar("$shgopsex_count") > 0>>
  405. <<actCLA 'Sex selection'>>
  406. <<gs 'gopsex' 'shgopsex' 'cont'>>
  407. <</actCLA>>
  408. <<else>>
  409. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  410. <</if>>
  411. <</if>>
  412. <<elseif getvar("$gopsex_n_npc") == 0>>
  413. <p>- "No, $pc.name_nick, I won't lick your pussy!"</p>
  414. <<actCLA 'Sex selection'>>
  415. <<gs 'gopsex' 'shgopsex' 'cont'>>
  416. <</actCLA>>
  417. <</if>>
  418. <</if>>
  419. <!-- !===============================================================!-->
  420. <!-- !play with breasts-->
  421. <<if $location_var[$here][0] == 'shgopsex_tits'>>
  422. <<set $pc.horny += 5>>
  423. <<set $time.minutes += '+rand(1,4)+'>>
  424. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  425. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/tits/tits#.jpg" 1 6>>
  426. <p>"Well, $boydesc, do you like my boobies' '+setup.func('gopsex','hide','gop_text3')+'?"</p>
  427. <p>"Yes, $pc.name_nick, you've got awesome tits!"</p>
  428. <<act 'Suck boobs'>>
  429. <<gt 'gopsex' 'hide' 'shgopsex_eattits'>>
  430. <</act>>
  431. <<act 'Titty fuck'>>
  432. <<gt 'gopsex' 'hide' 'shgopsex_fucktits'>>
  433. <</act>>
  434. <<actCLA 'Sex selection'>>
  435. <<gs 'gopsex' 'shgopsex' 'cont'>>
  436. <</actCLA>>
  437. <</if>>
  438. <!-- !===============================================================!-->
  439. <!-- !work with your hands-->
  440. <<if $location_var[$here][0] == 'shgopsex_hj'>>
  441. <<set $shgopsex_count -= 1>>
  442. <<set $sh_bjandhj_cum = 1>>
  443. <<arouse 'hj' `rand(3,7)` >>
  444. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  445. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/hj#.jpg" 1 12>>
  446. <<gs 'gopsex' 'hide' 'text_sex_hj'>>
  447. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  448. <<if getvar("$shgopsex_count") > 0>>
  449. <<gs 'gopsex' 'shgopsex' 'cont'>>
  450. <<else>>
  451. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  452. <</if>>
  453. <</if>>
  454. <!-- !===============================================================!-->
  455. <!-- !suck-->
  456. <<if $location_var[$here][0] == 'shgopsex_bj'>>
  457. <<set $shgopsex_count -= 1>>
  458. <<set $sh_bjandhj_cum = 1>>
  459. <<arouse 'bj' `rand(3,7)` >>
  460. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  461. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/oral/bj#.jpg" 1 25>>
  462. <<gs 'gopsex' 'hide' 'text_sex_bj'>>
  463. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  464. <<if getvar("$shgopsex_count") > 0>>
  465. <<gs 'gopsex' 'shgopsex' 'cont'>>
  466. <<else>>
  467. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  468. <</if>>
  469. <</if>>
  470. <!-- !deep in her mouth-->
  471. <<if $location_var[$here][0] == 'shgopsex_throat'>>
  472. <<set $shgopsex_count -= 1>>
  473. <<set $sh_bjandhj_cum = 1>>
  474. <<arouse 'bj' `rand(3,7)` `['deepthroat']`>>
  475. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  476. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/oral/throat#.jpg" 1 15>>
  477. <<gs 'gopsex' 'hide' 'text_sex_bjt'>>
  478. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  479. <<if getvar("$shgopsex_count") > 0>>
  480. <<gs 'gopsex' 'shgopsex' 'cont'>>
  481. <<else>>
  482. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  483. <</if>>
  484. <</if>>
  485. <!-- !vagina!-->
  486. <!-- !===============================================================!-->
  487. <!-- !vagina!-->
  488. <<if $location_var[$here][0] == 'shgopsex_vag'>>
  489. <<set $shgopsex_count -= 1>>
  490. <<set $sh_bjandhj_cum = 0>>
  491. <<arouse 'vaginal' `rand(3,7)` >>
  492. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  493. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/pussy/dog#.jpg" 1 20>>
  494. <<gs 'gopsex' 'gg_devst_deflor'>>
  495. <<gs 'gopsex' 'hide' 'text_sex_doggy'>>
  496. <<gs 'gopsex' 'gg_sex_orgasm'>>
  497. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  498. <<if getvar("$shgopsex_count") > 0>>
  499. <<act 'Change position: missionary'>>
  500. <<gt 'gopsex' 'hide' 'shgopsex_vag1'>>
  501. <</act>>
  502. <<act 'Change position: cowgirl'>>
  503. <<gt 'gopsex' 'hide' 'shgopsex_vag2'>>
  504. <</act>>
  505. <<act 'Change position: screw sex'>>
  506. <<gt 'gopsex' 'hide' 'shgopsex_vag3'>>
  507. <</act>>
  508. <<actCLA 'Sex selection'>>
  509. <<gs 'gopsex' 'shgopsex' 'cont'>>
  510. <</actCLA>>
  511. <<else>>
  512. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  513. <</if>>
  514. <</if>>
  515. <!-- !anal!-->
  516. <!-- !===============================================================!-->
  517. <!-- !anal!-->
  518. <<if $location_var[$here][0] == 'shgopsex_anal'>>
  519. <<set $shgopsex_count -= 1>>
  520. <<set $sh_bjandhj_cum = 0>>
  521. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  522. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/anal/dog#.jpg" 1 20>>
  523. <<gs 'gopsex' 'hide' 'gop_sex_analplugin'>>
  524. <<gs 'gopsex' 'hide' 'gop_sex_lubri'>>
  525. <<arouse 'anal' `rand(3,7)` >>
  526. <<gs 'gopsex' 'hide' 'text_sex_doggy_anal'>>
  527. <<gs 'gopsex' 'gg_sex_orgasm'>>
  528. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  529. <<if getvar("$shgopsex_count") > 0>>
  530. <<act 'Change position: missionary'>>
  531. <<gt 'gopsex' 'hide' 'shgopsex_anal1'>>
  532. <</act>>
  533. <<act 'Change position: cowgirl'>>
  534. <<gt 'gopsex' 'hide' 'shgopsex_anal2'>>
  535. <</act>>
  536. <<act 'Change position: screw sex'>>
  537. <<gt 'gopsex' 'hide' 'shgopsex_anal3'>>
  538. <</act>>
  539. <<actCLA 'Sex selection'>>
  540. <<gs 'gopsex' 'shgopsex' 'cont'>>
  541. <</actCLA>>
  542. <<else>>
  543. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  544. <</if>>
  545. <</if>>
  546. <!-- !END============END==============END==============END=================END!-->
  547. <!-- !==============!-->
  548. <!-- ! group sex !-->
  549. <!-- !===============================================================!-->
  550. <!-- !sex selection:-->
  551. <<if $location_var[$here][0] == 'shgopsex_group'>>
  552. <<gs 'boyStat' 'A9' '3'>>
  553. <<gs 'boyStat' 'A10' '1'>>
  554. <<gs 'boyStat' 'A11' '2'>>
  555. <<if $location_var[$here][1] != 'cont'>>
  556. <<gs 'gopsex' 'hide' 'group_sex_text'>>
  557. <<if getvar("$mesec") > 0 and !$pc.thinksIsVirgin>>
  558. <font color = red><b>You warn them that you're on your period, so your pussy is off-limits!</b></font>
  559. <<elseif getvar("$mesec") <= 0 and $pc.thinksIsVirgin>>
  560. <font color = red><b>You remind them that you want to preserve your virginity, so your pussy is not available for play!</b></font>
  561. <</if>>
  562. <</if>>
  563. <<actCLA 'Suck one by one'>>
  564. <<gs 'gopsex' 'hide' 'group_sex_start'>> <<gt 'gopsex' 'hide' 'shgopsex_group_bj'>>
  565. <</actCLA>>
  566. <<if $pc.sexStat('bj') >= 50>>
  567. <<actCLA 'Suck all at once'>>
  568. <<gs 'gopsex' 'hide' 'group_sex_start'>> <<gt 'gopsex' 'hide' 'shgopsex_group_bja'>>
  569. <</actCLA>>
  570. <</if>>
  571. <<if !$pc.thinksIsVirgin and getvar("$mesec") <= 0>>
  572. <<actCLA 'The pussy'>>
  573. <<gs 'gopsex' 'hide' 'group_sex_start'>> <<gt 'gopsex' 'hide' 'shgopsex_group_vag'>>
  574. <</actCLA>>
  575. <</if>>
  576. <<actCLA 'In the ass'>>
  577. <<gs 'gopsex' 'hide' 'group_sex_start'>> <<gt 'gopsex' 'hide' 'shgopsex_group_anal'>>
  578. <</actCLA>>
  579. <<if !$pc.thinksIsVirgin and getvar("$mesec") <= 0>>
  580. <<actCLA 'In the pussy and ass'>>
  581. <<gs 'gopsex' 'hide' 'group_sex_start'>> <<gt 'gopsex' 'hide' 'shgopsex_group_dp'>>
  582. <</actCLA>>
  583. <</if>>
  584. <<if $pc.pcs_ass >= 20>>
  585. <<actCLA 'Two cocks in the ass'>>
  586. <<gs 'gopsex' 'hide' 'group_sex_start'>> <<gt 'gopsex' 'hide' 'shgopsex_group_twoanal'>>
  587. <</actCLA>>
  588. <</if>>
  589. <<if $pc.pcs_ass >= 30>>
  590. <<actCLA 'Three cocks in the ass'>>
  591. <<gs 'gopsex' 'hide' 'group_sex_start'>> <<gt 'gopsex' 'hide' 'shgopsex_group_tripleanal'>>
  592. <</actCLA>>
  593. <</if>>
  594. <<gs 'willpower' 'sex' 'resist' 'medium'>>
  595. <<if $will_cost <= $pc.willpower>>
  596. <<actCLA 'Leave(will_cost Willpower)'>>
  597. <<gs 'willpower' 'pay' 'resist'>>
  598. <<gt 'vasilyhome' 'livingroom'>>
  599. <</actCLA>>
  600. <</if>>
  601. <!-- !hide small parts of code-->
  602. <<if $location_var[$here][0] == 'hide'>>
  603. <!-- !group display of stamina-->
  604. <<if $location_var[$here][1] == 'ind_stamina_groupnpc'>>
  605. <<set $sh_ind = $shgopsex_group_count>>
  606. <<if getvar("$sh_ind") == 5>>
  607. <<set $ind_npc = '<font color = green > █████ </font>'>>
  608. <</if>>
  609. <<if getvar("$sh_ind") == 4>>
  610. <<set $ind_npc = '<font color = green > ████_ </font>'>>
  611. <</if>>
  612. <<if getvar("$sh_ind") == 3>>
  613. <<set $ind_npc = '<font color = blue > ███__ </font>'>>
  614. <</if>>
  615. <<if getvar("$sh_ind") == 2>>
  616. <<set $ind_npc = '<font color = blue > ██___ </font>'>>
  617. <</if>>
  618. <<if getvar("$sh_ind") == 1>>
  619. <<set $ind_npc = '<font color = red > █____ </font>'>>
  620. <</if>>
  621. <<if getvar("$sh_ind") <= 0>>
  622. <<set $ind_npc = '<font color = red > Cumming! </font>'>>
  623. <</if>>
  624. <center>The '+setup.func('gopsex','hide','gop_text_npcr')+' are '+setup.func('gopsex','hide','gop_sextext3')+' you, their endurance: <<$ind_npc>></center>
  625. <</if>>
  626. <!-- !LED stamina NPC:-->
  627. <<if $location_var[$here][1] == 'ind_stamina_npc'>>
  628. <<set $sh_ind = $shgopsex_count>>
  629. <<if getvar("$sh_ind") == 7>>
  630. <<set $ind_npc = '<font color = green > ███████ </font> '>>
  631. <</if>>
  632. <<if getvar("$sh_ind") == 6>>
  633. <<set $ind_npc = '<font color = green > ██████_ </font> '>>
  634. <</if>>
  635. <<if getvar("$sh_ind") == 5>>
  636. <<set $ind_npc = '<font color = green > █████__ </font> '>>
  637. <</if>>
  638. <<if getvar("$sh_ind") == 4>>
  639. <<set $ind_npc = '<font color = blue > ████___ </font> '>>
  640. <</if>>
  641. <<if getvar("$sh_ind") == 3>>
  642. <<set $ind_npc = '<font color = blue > ███____ </font> '>>
  643. <</if>>
  644. <<if getvar("$sh_ind") == 2>>
  645. <<set $ind_npc = '<font color = red > ██_____ </font> '>>
  646. <</if>>
  647. <<if getvar("$sh_ind") == 1>>
  648. <<set $ind_npc = '<font color = red > █______ </font> '>>
  649. <</if>>
  650. <<if getvar("$sh_ind") <= 0>>
  651. <<set $ind_npc = '<font color = red > Cumming! </font> '>>
  652. <</if>>
  653. <center>You have sex with <<$boydesc>>, his stamina: <<$ind_npc>></center>
  654. <</if>>
  655. <!-- !orgasm text NPC:-->
  656. <<if $location_var[$here][1] == 'npc_orgasm'>>
  657. <<if getvar("$shgopsex_count") == 0>>
  658. <<set $npc_orgasm_txt = rand(1,5)>>
  659. <<if getvar("$npc_orgasm_txt") == 1>>
  660. <<set $npc_orgasm_txt = '"Oh shit, $pc.name_nick, I can't hold it any longer. I'll finish right now!" $boydesc warns you.'>>
  661. <</if>>
  662. <<if getvar("$npc_orgasm_txt") == 2>>
  663. <<set $npc_orgasm_txt = '$boydesc warns you, "$pc.name_nick, I'm going to cum right now, finish!"'>>
  664. <</if>>
  665. <<if getvar("$npc_orgasm_txt") == 3>>
  666. <<set $npc_orgasm_txt = '$boydesc, "So $pc.name_nick, where should I offload my cum? It doesn't matter? Well, I'll choose myself!"'>>
  667. <</if>>
  668. <<if getvar("$npc_orgasm_txt") == 4>>
  669. <<set $npc_orgasm_txt = '"I'm ready to finish! $pc.name_nick, where do you want my semen? You don't know? Well, I'll choose myself!"'>>
  670. <</if>>
  671. <<if getvar("$npc_orgasm_txt") == 5>>
  672. <<set $npc_orgasm_txt = '$boydesc tells you, "$pc.name_nick, I'm on the top. I'll cum soon!"'>>
  673. <</if>>
  674. <<$npc_orgasm_txt>>
  675. <<set $npc_orgasm_txt to null>>
  676. <</if>>
  677. <</if>>
  678. <<if $location_var[$here][1] == 'gop_sex_analplugin'>>
  679. <<if getvar("$analplugin") == 1>>
  680. <<set $analplugin = 0>>
  681. <p>"What?! Do you have a buttplug in your ass?" $boydesc asks in surprise.</p>
  682. "Aha, you are loosening your anus."
  683. "That's great, but it's in the way right now." He comments and pulls the plug out from your ass.<br>
  684. <</if>>
  685. <</if>>
  686. <<if $location_var[$here][1] == 'group_sex_start'>>
  687. <<if $shgopsex_gr_day != $time.daystart>>
  688. <<setn $gang += 1>>
  689. <</if>>
  690. <<set $shgopsex_gr_day = $time.daystart>>
  691. <<set $shgopsex_gr_count -= 1>>
  692. <<set $npc('A10').sex += 1>>
  693. <<set $npc('A11').sex += 1>>
  694. <<set $npc('A9').sex += 1>>
  695. <</if>>
  696. <!-- !anal tube and lubrication (1on1)-->
  697. <<if $location_var[$here][1] == 'gop_sex_lubri'>>
  698. <<if getvar("$gop_sex_lubri") == 0>>
  699. <<if getvar("$lubri") > 0>>
  700. <<set $lubri -= 1>>
  701. <<if $pc.agape > 1>>
  702. <<set $pc.agape = 1>>
  703. <</if>>
  704. <<set $pc.horny += 20>>
  705. <<set $gop_sex_lubri = 1>>
  706. <<set $pod_whore_lubri_text = '"$boydesc, wait! If you want to fuck me in the ass, you should lube up my hole!" You say and pull a tube out of your purse. You take the cap off, squeeze some lube onto your fingers, and smear your anus with lube.'>>
  707. <<elseif getvar("$lubri") == 0>>
  708. <<if $pc.agape > 2>>
  709. <<set $pc.agape = 2>>
  710. <</if>>
  711. <<set $pc.horny = 0>>
  712. <</if>>
  713. <</if>>
  714. <</if>>
  715. <!-- !anal tube and lubrication(gangbang):-->
  716. <<if $location_var[$here][1] == 'gop_groupsex_analplugin'>>
  717. <<if getvar("$analplugin") == 1>>
  718. <<set $analplugin = 0>>
  719. <p>"What?! Do you have a buttplug in your ass?" '+setup.func('gopsex','hide','gop_name_npc')+' asks in surprise.</p>
  720. "Aha, you are loosening your anus."
  721. "That's great, but it's in the way right now." He comments and pulls the plug out from your ass.<br>
  722. <</if>>
  723. <</if>>
  724. <<if $location_var[$here][1] == 'gop_groupsex_lubri'>>
  725. <<if getvar("$gop_groupsex_lubri") == 0>>
  726. <<if getvar("$lubri") > 0>>
  727. <<set $lubri -= 1>>
  728. <<if $pc.agape > 1>>
  729. <<set $pc.agape = 1>>
  730. <</if>>
  731. <<set $pc.horny += 20>>
  732. <<set $gop_groupsex_lubri = 1>>
  733. <<set $pod_whore_lubri_text = '"'+setup.func('gopsex','hide','gop_text_npcr')+', wait! If you want to fuck me in the ass, you should lube up my hole!" You say and pull a tube out of your purse. You take the cap off, squeeze some lube onto your fingers, and smear your anus with lube.'>>
  734. <<elseif getvar("$lubri") == 0>>
  735. <<if $pc.agape > 2>>
  736. <<set $pc.agape = 2>>
  737. <</if>>
  738. <<set $pc.horny = 0>>
  739. <</if>>
  740. <</if>>
  741. <</if>>
  742. <<if $location_var[$here][1] == 'shgopsex_vag1'>>
  743. <<set $shgopsex_count -= 1>>
  744. <<arouse 'vaginal' `rand(3,7)` >>
  745. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  746. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/pussy/miss#.jpg" 1 20>>
  747. <<gs 'gopsex' 'hide' 'text_sex_miss'>>
  748. <<gs 'gopsex' 'gg_sex_orgasm'>>
  749. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  750. <<if getvar("$shgopsex_count") > 0>>
  751. <<act 'Change position: doggie'>>
  752. <<gt 'gopsex' 'shgopsex_vag'>>
  753. <</act>>
  754. <<act 'Change position: cowgirl'>>
  755. <<gt 'gopsex' 'hide' 'shgopsex_vag2'>>
  756. <</act>>
  757. <<act 'Change position: screw sex'>>
  758. <<gt 'gopsex' 'hide' 'shgopsex_vag3'>>
  759. <</act>>
  760. <<actCLA 'Sex selection'>>
  761. <<gs 'gopsex' 'shgopsex' 'cont'>>
  762. <</actCLA>>
  763. <<else>>
  764. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  765. <</if>>
  766. <</if>>
  767. <<if $location_var[$here][1] == 'shgopsex_vag2'>>
  768. <<set $shgopsex_count -= 1>>
  769. <<arouse 'vaginal' `rand(3,7)` >>
  770. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  771. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/pussy/cow#.jpg" 1 20>>
  772. <<gs 'gopsex' 'hide' 'text_sex_cow'>>
  773. <<gs 'gopsex' 'gg_sex_orgasm'>>
  774. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  775. <<if getvar("$shgopsex_count") > 0>>
  776. <<act 'Change position: doggie'>>
  777. <<gt 'gopsex' 'shgopsex_vag'>>
  778. <</act>>
  779. <<act 'Change position: missionary'>>
  780. <<gt 'gopsex' 'hide' 'shgopsex_vag1'>>
  781. <</act>>
  782. <<act 'Change position: screw sex'>>
  783. <<gt 'gopsex' 'hide' 'shgopsex_vag3'>>
  784. <</act>>
  785. <<actCLA 'Sex selection'>>
  786. <<gs 'gopsex' 'shgopsex' 'cont'>>
  787. <</actCLA>>
  788. <<else>>
  789. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  790. <</if>>
  791. <</if>>
  792. <<if $location_var[$here][1] == 'shgopsex_vag3'>>
  793. <<set $shgopsex_count -= 1>>
  794. <<arouse 'vaginal' `rand(3,7)` >>
  795. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  796. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/pussy/bok#.jpg" 1 3>>
  797. screw sex
  798. <<gs 'gopsex' 'gg_sex_orgasm'>>
  799. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  800. <<if getvar("$shgopsex_count") > 0>>
  801. <<act 'Change position: doggie'>>
  802. <<gt 'gopsex' 'shgopsex_vag'>>
  803. <</act>>
  804. <<act 'Change position: missionary'>>
  805. <<gt 'gopsex' 'hide' 'shgopsex_vag1'>>
  806. <</act>>
  807. <<act 'Change position: cowgirl'>>
  808. <<gt 'gopsex' 'hide' 'shgopsex_vag2'>>
  809. <</act>>
  810. <<actCLA 'Sex selection'>>
  811. <<gs 'gopsex' 'shgopsex' 'cont'>>
  812. <</actCLA>>
  813. <<else>>
  814. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  815. <</if>>
  816. <</if>>
  817. <<if $location_var[$here][1] == 'shgopsex_anal1'>>
  818. <<set $shgopsex_count -= 1>>
  819. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  820. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/anal/miss#.jpg" 1 20>>
  821. <<gs 'gopsex' 'hide' 'gop_sex_analplugin'>>
  822. <<gs 'gopsex' 'hide' 'gop_sex_lubri'>>
  823. <<gs 'gopsex' 'hide' 'text_sex_miss_anal'>>
  824. <<arouse 'anal' `rand(3,7)` >>
  825. <<gs 'gopsex' 'gg_sex_orgasm'>>
  826. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  827. <<if getvar("$shgopsex_count") > 0>>
  828. <<act 'Change position: doggie'>>
  829. <<gt 'gopsex' 'shgopsex_anal'>>
  830. <</act>>
  831. <<act 'Change position: cowgirl'>>
  832. <<gt 'gopsex' 'hide' 'shgopsex_anal2'>>
  833. <</act>>
  834. <<act 'Change position: screw sex'>>
  835. <<gt 'gopsex' 'hide' 'shgopsex_anal3'>>
  836. <</act>>
  837. <<actCLA 'Sex selection'>>
  838. <<gs 'gopsex' 'shgopsex' 'cont'>>
  839. <</actCLA>>
  840. <<else>>
  841. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  842. <</if>>
  843. <</if>>
  844. <<if $location_var[$here][1] == 'shgopsex_anal2'>>
  845. <<set $shgopsex_count -= 1>>
  846. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  847. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/anal/cow#.jpg" 1 20>>
  848. <<gs 'gopsex' 'hide' 'gop_sex_analplugin'>>
  849. <<gs 'gopsex' 'hide' 'gop_sex_lubri'>>
  850. <<gs 'gopsex' 'hide' 'text_sex_cow_anal'>>
  851. <<arouse 'anal' `rand(3,7)` >>
  852. <<gs 'gopsex' 'gg_sex_orgasm'>>
  853. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  854. <<if getvar("$shgopsex_count") > 0>>
  855. <<act 'Change position: doggie'>>
  856. <<gt 'gopsex' 'shgopsex_anal'>>
  857. <</act>>
  858. <<act 'Change position: missionary'>>
  859. <<gt 'gopsex' 'hide' 'shgopsex_anal1'>>
  860. <</act>>
  861. <<act 'Change position: screw sex'>>
  862. <<gt 'gopsex' 'hide' 'shgopsex_anal3'>>
  863. <</act>>
  864. <<actCLA 'Sex selection'>>
  865. <<gs 'gopsex' 'shgopsex' 'cont'>>
  866. <</actCLA>>
  867. <<else>>
  868. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  869. <</if>>
  870. <</if>>
  871. <<if $location_var[$here][1] == 'shgopsex_anal3'>>
  872. <<set $shgopsex_count -= 1>>
  873. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  874. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/anal/bok#.jpg" 1 9>>
  875. <<gs 'gopsex' 'hide' 'gop_sex_analplugin'>>
  876. <<gs 'gopsex' 'hide' 'gop_sex_lubri'>>
  877. <<arouse 'anal' `rand(3,7)` >>
  878. On the side
  879. <<gs 'gopsex' 'gg_sex_orgasm'>>
  880. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  881. <<if getvar("$shgopsex_count") > 0>>
  882. <<act 'Change position: doggie'>>
  883. <<gt 'gopsex' 'shgopsex_anal'>>
  884. <</act>>
  885. <<act 'Change position: missionary'>>
  886. <<gt 'gopsex' 'hide' 'shgopsex_anal1'>>
  887. <</act>>
  888. <<act 'Change position: cowgirl'>>
  889. <<gt 'gopsex' 'hide' 'shgopsex_anal2'>>
  890. <</act>>
  891. <<actCLA 'Sex selection'>>
  892. <<gs 'gopsex' 'shgopsex' 'cont'>>
  893. <</actCLA>>
  894. <<else>>
  895. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  896. <</if>>
  897. <</if>>
  898. <!-- !sucking boobs-->
  899. <<if $location_var[$here][1] == 'shgopsex_eattits'>>
  900. <<set $pc.horny += 5>>
  901. <<set $time.minutes += '+rand(1,3)+'>>
  902. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  903. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/tits/eat#.jpg" 1 2>>
  904. <p>$boydesc is nibbling on your nipples.</p>
  905. <<act 'Do a tit job or a titty fuck'>>
  906. <<gt 'gopsex' 'hide' 'shgopsex_fucktits'>>
  907. <</act>>
  908. <<actCLA 'Sex selection'>>
  909. <<gs 'gopsex' 'shgopsex' 'cont'>>
  910. <</actCLA>>
  911. <</if>>
  912. <!-- !drive between the breasts-->
  913. <<if $location_var[$here][1] == 'shgopsex_fucktits'>>
  914. <<set $shgopsex_count -= 1>>
  915. <<set $sh_bjandhj_cum = 1>>
  916. <<arouse 'breasts' `rand(3,7)` >>
  917. <<gs 'gopsex' 'hide' 'ind_stamina_npc'>>
  918. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/tits/tj#.jpg" 1 9>>
  919. <p>$boydesc wants to tittyfuck you, and you don't mind.</p>
  920. <<if getvar("$shgopsex_count") > 0>>
  921. <<gs 'gopsex' 'shgopsex' 'cont'>>
  922. <<else>>
  923. <<gs 'gopsex' 'shgopsex_end' &! 'gs preserves the main window - picture'>>
  924. <</if>>
  925. <</if>>
  926. <!-- !ending!-->
  927. <!-- !===============================================================!-->
  928. <!-- !Cum in mouth-->
  929. <<if $location_var[$here][1] == 'shgopsex_swallow'>>
  930. <<set $time.minutes += '+rand(1,3)+'>>
  931. <<cum 'mouth' $sex.npcId 1>>
  932. <<image "pc/body/cum/swallow/swallow#.jpg" 1 19>>
  933. <<gs 'gopsex' 'hide' 'text_sex_cumm'>>
  934. <<act 'Leave'>>
  935. <<gt 'vasilyhome' 'livingroom'>>
  936. <</act>>
  937. <</if>>
  938. <!-- !Cum on face-->
  939. <<if $location_var[$here][1] == 'shgopsex_cumface'>>
  940. <<set $time.minutes += '+rand(1,3)+'>>
  941. <<cum 'face' $sex.npcId 1>>
  942. <<if $pc.hairColor < 4>>
  943. <center><img <<$set_imgh>> src="images/pc/body/cum/cumface/<<$pc.hairColor>>/'+rand(1,19)+'.jpg"></center>
  944. <</if>>
  945. <<if $pc.hairColor > 3>>
  946. <<image "pc/body/cum/cumface/custom/#.jpg" 1 19>>
  947. <</if>>
  948. <<gs 'gopsex' 'hide' 'text_sex_cumface'>>
  949. <<act 'Leave'>>
  950. <<gt 'vasilyhome' 'livingroom'>>
  951. <</act>>
  952. <</if>>
  953. <!-- !Cum on body-->
  954. <<if $location_var[$here][1] == 'shgopsex_cumbelly'>>
  955. <<set $time.minutes += '+rand(1,3)+'>>
  956. <<cum 'stomach' $sex.npcId 1>>
  957. <<image "pc/body/cum/cumbelly/cumbelly#.jpg" 1 13>>
  958. <<gs 'gopsex' 'hide' 'text_sex_cumbody'>>
  959. <<act 'Leave'>>
  960. <<gt 'vasilyhome' 'livingroom'>>
  961. <</act>>
  962. <</if>>
  963. <!-- !Cum in pussy-->
  964. <<if $location_var[$here][1] == 'shgopsex_cumvag'>>
  965. <<set $time.minutes += '+rand(1,3)+'>>
  966. <<cum '' $sex.npcId 1>>
  967. <<image "pc/body/cum/creampie/cumpussy#.jpg" 1 17>>
  968. <<gs 'gopsex' 'hide' 'text_sex_cumvag'>>
  969. <<act 'Leave'>>
  970. <<gt 'vasilyhome' 'livingroom'>>
  971. <</act>>
  972. <</if>>
  973. <!-- !ending in the ass-->
  974. <<if $location_var[$here][1] == 'shgopsex_cumanal'>>
  975. <<set $time.minutes += '+rand(1,3)+'>>
  976. <<cum 'anus' $sex.npcId 1>>
  977. <<image "pc/body/cum/cumanal/cumanal#.jpg" 1 11>>
  978. <<gs 'gopsex' 'hide' 'text_sex_cumass'>>
  979. <<act 'Leave'>>
  980. <<gt 'vasilyhome' 'livingroom'>>
  981. <</act>>
  982. <</if>>
  983. <!-- !ending sex-->
  984. <<if $location_var[$here][1] == 'shgopsex_group_end'>>
  985. <!-- !'<<shgopsex_group_count>>'-->
  986. <!-- !if you suck, cum in mouth, face or body-->
  987. <<if getvar("$sh_bjandhj_cum") >= 1>>
  988. <<act 'In your mouth'>>
  989. <<gt 'gopsex' 'hide' 'shgopsex_group_swallow'>>
  990. <</act>>
  991. <<act 'On your face'>>
  992. <<gt 'gopsex' 'hide' 'shgopsex_group_cumface'>>
  993. <</act>>
  994. <<act 'On your body'>>
  995. <<gt 'gopsex' 'hide' 'shgopsex_group_cumbelly'>>
  996. <</act>>
  997. <!-- !If you fucked, we finish anywhere-->
  998. <<elseif getvar("$sh_bjandhj_cum") <= 0>>
  999. <<act 'In your mouth'>>
  1000. <<gt 'gopsex' 'hide' 'shgopsex_group_swallow'>>
  1001. <</act>>
  1002. <<act 'On your face'>>
  1003. <<gt 'gopsex' 'hide' 'shgopsex_group_cumface'>>
  1004. <</act>>
  1005. <<act 'On your body'>>
  1006. <<gt 'gopsex' 'hide' 'shgopsex_group_cumbelly'>>
  1007. <</act>>
  1008. <<act 'On your pussy'>>
  1009. <<gt 'gopsex' 'hide' 'shgopsex_group_cumvag'>>
  1010. <</act>>
  1011. <<act 'On your ass'>>
  1012. <<gt 'gopsex' 'hide' 'shgopsex_group_cumanal'>>
  1013. <</act>>
  1014. <</if>>
  1015. <<set $sh_bjandhj_cum to null>>
  1016. <<set $shgopsex_group_count to null>>
  1017. <</if>>
  1018. <!-- !suction at a time-->
  1019. <<if $location_var[$here][1] == 'shgopsex_group_bj'>>
  1020. <<set $shgopsex_group_count -= 1>>
  1021. <<set $sh_bjandhj_cum = 1>>
  1022. <<arouse 'bj' `rand(1,5)` `['dick[3]','group','gangbang']`>>
  1023. <<arouse 'bj' `rand(1,5)` `['dick[1]','group','gangbang']`>>
  1024. <<arouse 'bj' `rand(1,5)` `['dick[2]','group','gangbang']`>>
  1025. <<gs 'gopsex' 'hide' 'ind_stamina_groupnpc'>>
  1026. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/oral/bj#.jpg" 1 3>>
  1027. <<gs 'gopsex' 'hide' 'text_sex_group_bj'>>
  1028. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  1029. <<if getvar("$shgopsex_group_count") > 0>>
  1030. <<gs 'gopsex' 'shgopsex_group' 'cont' else gs 'gopsex' 'hide' 'shgopsex_group_end'>>
  1031. <</if>>
  1032. <</if>>
  1033. <!-- !sucking all at once-->
  1034. <<if $location_var[$here][1] == 'shgopsex_group_bja'>>
  1035. <<set $shgopsex_group_count -= 1>>
  1036. <<set $sh_bjandhj_cum = 1>>
  1037. <<arouse 'bj' `rand(1,4)` `['dick[3]','group','gangbang']`>>
  1038. <<arouse 'bj' `rand(1,4)` `['dick[1]','group','gangbang']`>>
  1039. <<arouse 'bj' `rand(1,4)` `['dick[2]','group','gangbang']`>>
  1040. <<gs 'gopsex' 'hide' 'ind_stamina_groupnpc'>>
  1041. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/oral/bja#.jpg" 1 25>>
  1042. <<gs 'gopsex' 'hide' 'text_sex_group_bjall'>>
  1043. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  1044. <<if getvar("$shgopsex_group_count") > 0>>
  1045. <<gs 'gopsex' 'shgopsex_group' 'cont' else gs 'gopsex' 'hide' 'shgopsex_group_end'>>
  1046. <</if>>
  1047. <</if>>
  1048. <!-- !give in pussy-->
  1049. <<if $location_var[$here][1] == 'shgopsex_group_vag'>>
  1050. <<set $shgopsex_group_count -= 1>>
  1051. <<set $sh_bjandhj_cum = 0>>
  1052. <<arouse 'vaginal' `rand(10,15)` `['dick[1]','group','gangbang']`>>
  1053. <<arouse 'hj' 5 `['dick[2]','group','gangbang']`>>
  1054. <<arouse 'bj' 5 `['dick[3]','group','gangbang']`>>
  1055. <<set $time.minutes -= 10>>
  1056. <<gs 'gopsex' 'hide' 'ind_stamina_groupnpc'>>
  1057. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/vag#.jpg" 1 26>>
  1058. <<gs 'gopsex' 'hide' 'text_sex_group_vag'>>
  1059. <<gs 'gopsex' 'gg_sex_orgasm'>>
  1060. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  1061. <<if getvar("$shgopsex_group_count") > 0>>
  1062. <<gs 'gopsex' 'shgopsex_group' 'cont' else gs 'gopsex' 'hide' 'shgopsex_group_end'>>
  1063. <</if>>
  1064. <</if>>
  1065. <!-- !to ass-->
  1066. <<if $location_var[$here][1] == 'shgopsex_group_anal'>>
  1067. <<set $shgopsex_group_count -= 1>>
  1068. <<set $sh_bjandhj_cum = 0>>
  1069. <<gs 'gopsex' 'hide' 'ind_stamina_groupnpc'>>
  1070. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/anal#.jpg" 1 18>>
  1071. <<gs 'gopsex' 'hide' 'gop_groupsex_analplugin'>>
  1072. <<gs 'gopsex' 'hide' 'gop_groupsex_lubri'>>
  1073. <<gs 'gopsex' 'hide' 'text_sex_group_anal'>>
  1074. <<arouse 'anal' `rand(10,15)` `['dick[2]','group','gangbang']`>>
  1075. <<arouse 'anal' 5 `['dick[3]','group','gangbang']`>>
  1076. <<arouse 'anal' 5 `['dick[1]','group','gangbang']`>>
  1077. <<set $time.minutes -= 10>>
  1078. <<gs 'gopsex' 'gg_sex_orgasm'>>
  1079. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  1080. <<if getvar("$shgopsex_group_count") > 0>>
  1081. <<gs 'gopsex' 'shgopsex_group' 'cont' else gs 'gopsex' 'hide' 'shgopsex_group_end'>>
  1082. <</if>>
  1083. <</if>>
  1084. <!-- !dp-->
  1085. <<if $location_var[$here][1] == 'shgopsex_group_dp'>>
  1086. <<set $shgopsex_group_count -= 1>>
  1087. <<set $sh_bjandhj_cum = 0>>
  1088. <<gs 'gopsex' 'hide' 'ind_stamina_groupnpc'>>
  1089. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/dp#.jpg" 1 30>>
  1090. <<gs 'gopsex' 'hide' 'gop_groupsex_analplugin'>>
  1091. <<gs 'gopsex' 'hide' 'gop_groupsex_lubri'>>
  1092. <<gs 'gopsex' 'hide' 'text_sex_group_dp'>>
  1093. <<arouse 'vaginal' `rand(7,15)` `['dick[3]','group','gangbang']`>>
  1094. <<arouse 'anal' `rand(7,15)` `['dick[2]','group','gangbang']`>>
  1095. <<arouse 'bj' 5 `['dick[1]','group','gangbang']`>>
  1096. <<set $time.minutes -= 14>>
  1097. <<gs 'gopsex' 'gg_sex_orgasm'>>
  1098. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  1099. <<if getvar("$shgopsex_group_count") > 0>>
  1100. <<gs 'gopsex' 'shgopsex_group' 'cont' else gs 'gopsex' 'hide' 'shgopsex_group_end'>>
  1101. <</if>>
  1102. <</if>>
  1103. <!-- !two dick in the ass-->
  1104. <<if $location_var[$here][1] == 'shgopsex_group_twoanal'>>
  1105. <<set $shgopsex_group_count -= 1>>
  1106. <<set $sh_bjandhj_cum = 0>>
  1107. <<gs 'gopsex' 'hide' 'ind_stamina_groupnpc'>>
  1108. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/dpa#.jpg" 1 10>>
  1109. <<gs 'gopsex' 'hide' 'gop_groupsex_analplugin'>>
  1110. <<gs 'gopsex' 'hide' 'gop_groupsex_lubri'>>
  1111. <<gs 'gopsex' 'hide' 'text_sex_group_dpa'>>
  1112. <<arouse 'anal' `rand(7,15)` `['dick[2]','group','gangbang']`>>
  1113. <<arouse 'anal' `rand(7,15)` `['dick[1]','group','gangbang']`>>
  1114. <<arouse 'hj' 6 `['dick[3]','group','gangbang']`>>
  1115. <<set $time.minutes -= 6>>
  1116. <<gs 'gopsex' 'gg_sex_orgasm'>>
  1117. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  1118. <<if getvar("$shgopsex_group_count") > 0>>
  1119. <<gs 'gopsex' 'shgopsex_group' 'cont' else gs 'gopsex' 'hide' 'shgopsex_group_end'>>
  1120. <</if>>
  1121. <</if>>
  1122. <!-- !Three dick in the ass-->
  1123. <<if $location_var[$here][1] == 'shgopsex_group_tripleanal'>>
  1124. <<set $shgopsex_group_count -= 1>>
  1125. <<set $sh_bjandhj_cum = 0>>
  1126. <<gs 'gopsex' 'hide' 'ind_stamina_groupnpc'>>
  1127. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/triple#.jpg" 1 4>>
  1128. <<gs 'gopsex' 'hide' 'gop_groupsex_analplugin'>>
  1129. <<gs 'gopsex' 'hide' 'gop_groupsex_lubri'>>
  1130. <<gs 'gopsex' 'hide' 'text_sex_group_triple'>>
  1131. <<arouse 'anal' `rand(4,6)` `['dick[1]','group','gangbang']`>>
  1132. <<arouse 'anal' `rand(4,6)` `['dick[3]','group','gangbang']`>>
  1133. <<arouse 'anal' `rand(4,6)` `['dick[2]','group','gangbang']`>>
  1134. <<gs 'gopsex' 'gg_sex_orgasm'>>
  1135. <<gs 'gopsex' 'hide' 'npc_orgasm'>>
  1136. <<if getvar("$shgopsex_group_count") > 0>>
  1137. <<gs 'gopsex' 'shgopsex_group' 'cont' else gs 'gopsex' 'hide' 'shgopsex_group_end'>>
  1138. <</if>>
  1139. <</if>>
  1140. <!-- !=========!-->
  1141. <!-- !ending!-->
  1142. <!-- !---------!-->
  1143. <!-- !Cum on face-->
  1144. <<if $location_var[$here][1] == 'shgopsex_group_cumface'>>
  1145. <<set $pc.pcs_hairbsh = 0>>
  1146. <<set $time.minutes += '+rand(2,5)+'>>
  1147. <<set $O = setup.func('gopsex','hide','rndorder3')>>
  1148. <<gs 'boyStat' 'AO mod 12'>>
  1149. <<cum 'face' $sex.npcId 1>>
  1150. <<gs 'boyStat' 'A(O/12) mod 12'>>
  1151. <<cum 'face' $sex.npcId 1>>
  1152. <<gs 'boyStat' 'AO/144'>>
  1153. <<cum 'hair' $sex.npcId 1>>
  1154. <<set $O to null>>
  1155. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/cumface#.jpg" 1 17>>
  1156. <p>The '+setup.func('gopsex','hide','gop_text_npcr')+' spray their cum all over your face</p>
  1157. <<act 'Leave'>>
  1158. <<gt 'vasilyhome' 'livingroom'>>
  1159. <</act>>
  1160. <</if>>
  1161. <!-- !Cum in mouth-->
  1162. <<if $location_var[$here][1] == 'shgopsex_group_swallow'>>
  1163. <<set $pc.pcs_hairbsh = 0>>
  1164. <<set $time.minutes += '+rand(2,5)+'>>
  1165. <<set $O = setup.func('gopsex','hide','rndorder3')>>
  1166. <<gs 'boyStat' 'AO mod 12'>>
  1167. <<cum 'mouth' $sex.npcId 1>>
  1168. <<gs 'boyStat' 'A(O/12) mod 12'>>
  1169. <<cum 'mouth' $sex.npcId 1>>
  1170. <<gs 'boyStat' 'AO/144'>>
  1171. <<cum 'face' $sex.npcId 1>>
  1172. <<set $O to null>>
  1173. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/swallow#.jpg" 1 12>>
  1174. <p>One by one the '+setup.func('gopsex','hide','gop_text_npcr')+' cum their semen into your mouth and you swallow it all.</p>
  1175. <<act 'Leave'>>
  1176. <<gt 'vasilyhome' 'livingroom'>>
  1177. <</act>>
  1178. <</if>>
  1179. <!-- !Cum on body-->
  1180. <<if $location_var[$here][1] == 'shgopsex_group_cumbelly'>>
  1181. <<set $pc.pcs_hairbsh = 0>>
  1182. <<set $time.minutes += '+rand(2,5)+'>>
  1183. <<set $O = setup.func('gopsex','hide','rndorder3')>>
  1184. <<gs 'boyStat' 'AO mod 12'>>
  1185. <<cum 'stomach' $sex.npcId 1>>
  1186. <<gs 'boyStat' 'A(O/12) mod 12'>>
  1187. <<cum 'stomach' $sex.npcId 1>>
  1188. <<gs 'boyStat' 'AO/144'>>
  1189. <<cum 'breasts' $sex.npcId 1>>
  1190. <<set $O to null>>
  1191. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/cumbody#.jpg" 1 15>>
  1192. <p>The '+setup.func('gopsex','hide','gop_text_npcr')+' come, squirting their hot sticky cum all over your body.</p>
  1193. <<act 'Leave'>>
  1194. <<gt 'vasilyhome' 'livingroom'>>
  1195. <</act>>
  1196. <</if>>
  1197. <!-- !Cum in pussy-->
  1198. <<if $location_var[$here][1] == 'shgopsex_group_cumvag'>>
  1199. <<set $pc.pcs_hairbsh = 0>>
  1200. <<set $time.minutes += '+rand(2,5)+'>>
  1201. <<set $O = setup.func('gopsex','hide','rndorder3')>>
  1202. <<gs 'boyStat' 'AO mod 12'>>
  1203. <<cum 'labia' $sex.npcId 1>>
  1204. <<gs 'boyStat' 'A(O/12) mod 12'>>
  1205. <<cum 'labia' $sex.npcId 1>>
  1206. <<gs 'boyStat' 'AO/144'>>
  1207. <<cum 'stomach' $sex.npcId 1>>
  1208. <<set $O to null>>
  1209. <<image "locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/cumvag#.jpg" 1 4>>
  1210. <p>One by one the '+setup.func('gopsex','hide','gop_text_npcr')+' take their turns and shot their hot cum onto your pussy.</p>
  1211. <<act 'Leave'>>
  1212. <<gt 'vasilyhome' 'livingroom'>>
  1213. <</act>>
  1214. <</if>>
  1215. <!-- !ending on the ass-->
  1216. <<if $location_var[$here][1] == 'shgopsex_group_cumanal'>>
  1217. <<set $pc.pcs_hairbsh = 0>>
  1218. <<set $time.minutes += '+rand(2,5)+'>>
  1219. <<set $O = setup.func('gopsex','hide','rndorder3')>>
  1220. <<gs 'boyStat' 'AO mod 12'>>
  1221. <<cum 'anus' $sex.npcId 1>>
  1222. <<gs 'boyStat' 'A(O/12) mod 12'>>
  1223. <<cum 'butt' $sex.npcId 1>>
  1224. <<gs 'boyStat' 'AO/144'>>
  1225. <<cum 'butt' $sex.npcId 1>>
  1226. <<set $O to null>>
  1227. <<image "pc/body/cum/cumass/cumass#.jpg" 1 19>>
  1228. <p>One by one the '+setup.func('gopsex','hide','gop_text_npcr')+' take their turns and cover your asshole with their sperm.</p>
  1229. <<act 'Leave'>>
  1230. <<gt 'vasilyhome' 'livingroom'>>
  1231. <</act>>
  1232. <</if>>
  1233. <!-- !------------------!-->
  1234. <!-- !Randomization text!-->
  1235. <!-- !------------------!-->
  1236. <!-- !!what is this stuff? I don't understand what it is suppose to be doing or where it shows up.-->
  1237. <<if $location_var[$here][1] == 'accview_ggsex'>>
  1238. <!-- !home affairs-->
  1239. <<set $rnd_domdela_text = rand(1,9)>>
  1240. <<if getvar("$rnd_domdela_text") == 1>>
  1241. <<set $rnd_domdela_text = 'cook some dinner'>>
  1242. <</if>>
  1243. <<if getvar("$rnd_domdela_text") == 2>>
  1244. <<set $rnd_domdela_text = 'do homework'>>
  1245. <</if>>
  1246. <<if getvar("$rnd_domdela_text") == 3>>
  1247. <<set $rnd_domdela_text = 'clean your room'>>
  1248. <</if>>
  1249. <<if getvar("$rnd_domdela_text") == 4>>
  1250. <<set $rnd_domdela_text = 'wash dishes'>>
  1251. <</if>>
  1252. <<if getvar("$rnd_domdela_text") == 5>>
  1253. <<set $rnd_domdela_text = 'go to bakery for a loaf of bread'>>
  1254. <</if>>
  1255. <<if getvar("$rnd_domdela_text") == 6>>
  1256. <<set $rnd_domdela_text = 'wash your fanny'>>
  1257. <</if>>
  1258. <<if getvar("$rnd_domdela_text") == 7>>
  1259. <<set $rnd_domdela_text = 'go to shop'>>
  1260. <</if>>
  1261. <<if getvar("$rnd_domdela_text") == 8>>
  1262. <<set $rnd_domdela_text = 'cook some supper'>>
  1263. <</if>>
  1264. <<if getvar("$rnd_domdela_text") == 9>>
  1265. <<set $rnd_domdela_text = 'do the laundry'>>
  1266. <</if>>
  1267. <!-- !turnip: davalka-->
  1268. <<set $rnd_telogg_text = rand(1,15)>>
  1269. <<if getvar("$rnd_telogg_text") == 1>>
  1270. <<set $rnd_telogg_text = '"That`s no pussy but a bucket fanny."'>>
  1271. <</if>>
  1272. <<if getvar("$rnd_telogg_text") == 2>>
  1273. <<set $rnd_telogg_text = '"The girl is thoroughly fucked."'>>
  1274. <</if>>
  1275. <<if getvar("$rnd_telogg_text") == 3>>
  1276. <<set $rnd_telogg_text = '"Our $pc.name_nick has got a bottomless hole!"'>>
  1277. <</if>>
  1278. <<if getvar("$rnd_telogg_text") == 4>>
  1279. <<set $rnd_telogg_text = '"Again, $pc.name_nick, you sleep around in a row..."'>>
  1280. <</if>>
  1281. <<if getvar("$rnd_telogg_text") == 5>>
  1282. <<set $rnd_telogg_text = '"They are gop_sextext3 you again, $pc.name_nick? Is it possible? Aren't you tired of lending your holes to everybody in a row..."'>>
  1283. <</if>>
  1284. <<if getvar("$rnd_telogg_text") == 6>>
  1285. <<set $rnd_telogg_text = '"Poor girl, gop_sextext2 at every corner."'>>
  1286. <</if>>
  1287. <<if getvar("$rnd_telogg_text") == 7>>
  1288. <<set $rnd_telogg_text = '"$pc.name_nick unfailing '+setup.func('gopsex','hide','gop_gg_name2')+'!"'>>
  1289. <</if>>
  1290. <<if getvar("$rnd_telogg_text") == 8>>
  1291. <<set $rnd_telogg_text = '"Poor $pc.name_nick, they probably fuck up all her holes."'>>
  1292. <</if>>
  1293. <<if getvar("$rnd_telogg_text") == 9>>
  1294. <<set $rnd_telogg_text = '"Blimey, $pc.name_nick, damn, you're a worn cunt!"'>>
  1295. <</if>>
  1296. <<if getvar("$rnd_telogg_text") == 10>>
  1297. <<set $rnd_telogg_text = '"What have we here, $pc.name_nick?! How come they stretch you here so?"'>>
  1298. <</if>>
  1299. <<if getvar("$rnd_telogg_text") == 11>>
  1300. <<set $rnd_telogg_text = '"She lost her fear completely, '+setup.func('gopsex','hide','gop_gg_name2')+'!"'>>
  1301. <</if>>
  1302. <<if getvar("$rnd_telogg_text") == 12>>
  1303. <<set $rnd_telogg_text = '"She lost her shyness completely, '+setup.func('gopsex','hide','gop_gg_name2')+'!"'>>
  1304. <</if>>
  1305. <<if getvar("$rnd_telogg_text") == 13>>
  1306. <<set $rnd_telogg_text = '"How can you shamelessly expose your holes right, left and centre, '+setup.func('gopsex','hide','gop_gg_name2')+'?"'>>
  1307. <</if>>
  1308. <<if getvar("$rnd_telogg_text") == 14>>
  1309. <<set $rnd_telogg_text = '"$pc.name_nick, you are so shameless, '+setup.func('gopsex','hide','gop_gg_name2')+'!"'>>
  1310. <</if>>
  1311. <<if getvar("$rnd_telogg_text") == 15>>
  1312. <<set $rnd_telogg_text = '"Oh, $pc.name_nick, aren't you sorry for yourself?"'>>
  1313. <</if>>
  1314. <!-- !turnip: whore-->
  1315. <<set $rnd_telogg2_text = rand(1,14)>>
  1316. <<if getvar("$rnd_telogg2_text") == 1>>
  1317. <<set $rnd_telogg2_text = '"$pc.name_nick, aren't you ashamed of working at such a filthy place?"'>>
  1318. <</if>>
  1319. <<if getvar("$rnd_telogg2_text") == 2>>
  1320. <<set $rnd_telogg2_text = '"$pc.name_nick, are you earning extra money even here?"'>>
  1321. <</if>>
  1322. <<if getvar("$rnd_telogg2_text") == 3>>
  1323. <<set $rnd_telogg2_text = '"$pc.name_nick, are you selling your body like a whore?"'>>
  1324. <</if>>
  1325. <<if getvar("$rnd_telogg2_text") == 4>>
  1326. <<set $rnd_telogg2_text = '"You found customers, and you're working wholeheartedly $pc.name_nick."'>>
  1327. <</if>>
  1328. <<if getvar("$rnd_telogg2_text") == 5>>
  1329. <<set $rnd_telogg2_text = '"You are quickly finding your customers, $pc.name_nick. I'm amazed!"'>>
  1330. <</if>>
  1331. <<if getvar("$rnd_telogg2_text") == 6>>
  1332. <<set $rnd_telogg2_text = '"Look $pc.name_nick, if they ruin all your holes, you'll be unable to do your business!"'>>
  1333. <</if>>
  1334. <<if getvar("$rnd_telogg2_text") == 7>>
  1335. <<set $rnd_telogg2_text = '"$pc.name_nick, if you'll serve anywhere and anybody, you'll wear out your slit, and you'll be out of work!"'>>
  1336. <</if>>
  1337. <<if getvar("$rnd_telogg2_text") == 8>>
  1338. <<set $rnd_telogg2_text = '"Who do I see, $pc.name_nick? You sell your body again! I'm surprised you are such a natural '+setup.func('gopsex','hide','gop_gg_name2')+'!"'>>
  1339. <</if>>
  1340. <<if getvar("$rnd_telogg2_text") == 9>>
  1341. <<set $rnd_telogg2_text = '"You sell your body, so you are a '+setup.func('gopsex','hide','gop_gg_name2')+'. $pc.name_nick. I can't understand after whom."'>>
  1342. <</if>>
  1343. <<if getvar("$rnd_telogg2_text") == 10>>
  1344. <<set $rnd_telogg2_text = '"You are giving yourself to anybody for a hundred bucks again. Doesn`t it bother you?"'>>
  1345. <</if>>
  1346. <<if getvar("$rnd_telogg2_text") == 11>>
  1347. <<set $rnd_telogg2_text = '"$pc.name_nick, even a '+setup.func('gopsex','hide','gop_gg_name2')+' takes a day off!"'>>
  1348. <</if>>
  1349. <<if getvar("$rnd_telogg2_text") == 12>>
  1350. <<set $rnd_telogg2_text = '"Well, you are a '+setup.func('gopsex','hide','gop_gg_name2')+' $pc.name_nick. If I don't pass by, you sell your pussy..."'>>
  1351. <</if>>
  1352. <<if getvar("$rnd_telogg2_text") == 13>>
  1353. <<set $rnd_telogg2_text = '"Complete '+setup.func('gopsex','hide','gop_gg_name2')+', she was lost to shame, she is giving to in underpass ..."'>>
  1354. <</if>>
  1355. <<if getvar("$rnd_telogg2_text") == 14>>
  1356. <<set $rnd_telogg2_text = '"Whore lost her shame completely, she`s ready for 50 bucks her box in the street expose ..."'>>
  1357. <</if>>
  1358. <!-- !different text-->
  1359. <<set $rnd_rodnya_text = rand(1,3)>>
  1360. <<if getvar("$rnd_rodnya_text") == 1>>
  1361. <<set $rnd_rodnya_text = 'Passing by you'>>
  1362. <</if>>
  1363. <<if getvar("$rnd_rodnya_text") == 2>>
  1364. <<set $rnd_rodnya_text = 'Walking past you'>>
  1365. <</if>>
  1366. <<if getvar("$rnd_rodnya_text") == 3>>
  1367. <<set $rnd_rodnya_text = 'Going past you'>>
  1368. <</if>>
  1369. <<set $rnd_viewgg_text = rand(1,7)>>
  1370. <<if getvar("$rnd_viewgg_text") == 1>>
  1371. <<set $rnd_viewgg_text = 'notices you'>>
  1372. <</if>>
  1373. <<if getvar("$rnd_viewgg_text") == 2>>
  1374. <<set $rnd_viewgg_text = 'spots you'>>
  1375. <</if>>
  1376. <<if getvar("$rnd_viewgg_text") == 3>>
  1377. <<set $rnd_viewgg_text = 'spies you'>>
  1378. <</if>>
  1379. <<if getvar("$rnd_viewgg_text") == 4>>
  1380. <<set $rnd_viewgg_text = 'catches a sight of you'>>
  1381. <</if>>
  1382. <<if getvar("$rnd_viewgg_text") == 5>>
  1383. <<set $rnd_viewgg_text = 'throws a look at you'>>
  1384. <</if>>
  1385. <<if getvar("$rnd_viewgg_text") == 6>>
  1386. <<set $rnd_viewgg_text = 'casts a look at you'>>
  1387. <</if>>
  1388. <<if getvar("$rnd_viewgg_text") == 7>>
  1389. <<set $rnd_viewgg_text = 'notices you being '+setup.func('gopsex','hide','gop_sextext2')+'>>
  1390. <</if>>
  1391. <<if getvar("$rnd_viewgg_text") == 8>>
  1392. <<set $rnd_viewgg_text = 'sees you being '+setup.func('gopsex','hide','gop_sextext2')+'>>
  1393. <</if>>
  1394. <<set $rnd_talkgg_text = rand(1,2)>>
  1395. <<if getvar("$rnd_talkgg_text") == 1>>
  1396. <<set $rnd_talkgg_text = 'tells you'>>
  1397. <</if>>
  1398. <<if getvar("$rnd_talkgg_text") == 2>>
  1399. <<set $rnd_talkgg_text = 'says'>>
  1400. <</if>>
  1401. <<set $rnd_talkgg2_text = rand(1,14)>>
  1402. <<if getvar("$rnd_talkgg2_text") == 1>>
  1403. <<set $rnd_talkgg2_text = 'gently'>>
  1404. <</if>>
  1405. <<if getvar("$rnd_talkgg2_text") == 2>>
  1406. <<set $rnd_talkgg2_text = 'sarky'>>
  1407. <</if>>
  1408. <<if getvar("$rnd_talkgg2_text") == 3>>
  1409. <<set $rnd_talkgg2_text = 'in a low voice'>>
  1410. <</if>>
  1411. <<if getvar("$rnd_talkgg2_text") == 4>>
  1412. <<set $rnd_talkgg2_text = 'softly'>>
  1413. <</if>>
  1414. <<if getvar("$rnd_talkgg2_text") == 5>>
  1415. <<set $rnd_talkgg2_text = 'arrogantly'>>
  1416. <</if>>
  1417. <<if getvar("$rnd_talkgg2_text") == 6>>
  1418. <<set $rnd_talkgg2_text = 'with a smirk'>>
  1419. <</if>>
  1420. <<if getvar("$rnd_talkgg2_text") == 7>>
  1421. <<set $rnd_talkgg2_text = 'loudly'>>
  1422. <</if>>
  1423. <<if getvar("$rnd_talkgg2_text") == 8>>
  1424. <<set $rnd_talkgg2_text = 'roughly'>>
  1425. <</if>>
  1426. <<if getvar("$rnd_talkgg2_text") == 9>>
  1427. <<set $rnd_talkgg2_text = 'sotto voce'>>
  1428. <</if>>
  1429. <<if getvar("$rnd_talkgg2_text") == 10>>
  1430. <<set $rnd_talkgg2_text = 'looking'>>
  1431. <</if>>
  1432. <<if getvar("$rnd_talkgg2_text") == 11>>
  1433. <<set $rnd_talkgg2_text = 'calmly'>>
  1434. <</if>>
  1435. <<if getvar("$rnd_talkgg2_text") == 12>>
  1436. <<set $rnd_talkgg2_text = 'with a laugh'>>
  1437. <</if>>
  1438. <<if getvar("$rnd_talkgg2_text") == 13>>
  1439. <<set $rnd_talkgg2_text = 'drowsily'>>
  1440. <</if>>
  1441. <<if getvar("$rnd_talkgg2_text") == 14>>
  1442. <<set $rnd_talkgg2_text = 'wickedly'>>
  1443. <</if>>
  1444. <<if rand(0,1) == 1>>
  1445. <<set $rnd_namesis_text = 'Sister'>>
  1446. <<else>>
  1447. <<set $rnd_namesis_text = 'Sis'>>
  1448. <</if>>
  1449. <!-- !SG randomization if caught having sex in the stairwell-->
  1450. <!-- !------>
  1451. <!-- !Mother:-->
  1452. <<set $rnd_mom_txt1 = rand(1,2)>>
  1453. <<if getvar("$rnd_mom_txt1") == 1>>
  1454. <<set $rnd_mom_txt1 = '" It's all, $npc('A29').nickname, I'll come right away."'>>
  1455. <</if>>
  1456. <<if getvar("$rnd_mom_txt1") == 2>>
  1457. <<set $rnd_mom_txt1 = '" $npc('A29').nickname, one more to be served and I'll come right away."'>>
  1458. <</if>>
  1459. <!-- !---->-->
  1460. <<set $rnd_caught_mom = rand(1,6)>>
  1461. <<if $pc.fame('pav_slut') >= 250>>
  1462. <<if rand(0,1) == 0>>
  1463. <<set $rnd_caught_mom = '$rnd_rodnya_text your $npc('A29').nickname, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: - $rnd_telogg2_text'>>
  1464. <<else>>
  1465. <<set $rnd_caught_mom = '$rnd_rodnya_text your $npc('A29').nickname, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "Well, $pc.name_nick, you found a place, where customers take."'>>
  1466. <</if>>
  1467. <<elseif getvar("$momslut") >= 1>>
  1468. <<set $rnd_caught_mom = '$rnd_rodnya_text your $npc('A29').nickname, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "When you've served the boys, don't forget to $rnd_domdela_text"'>>
  1469. <<elseif $pc.pcs_vag >= 30>>
  1470. <<set $rnd_caught_mom = '$rnd_rodnya_text your $npc('A29').nickname, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "Girl, you shoud have a rest and not to fuck for a while - your cunny is like a bucket, it isn't closing."'>>
  1471. <<else>>
  1472. <<if getvar("$rnd_caught_mom") == 1>>
  1473. <<set $rnd_caught_mom = '$rnd_rodnya_text your $npc('A29').nickname, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: - $rnd_telogg_text'>>
  1474. <<elseif getvar("$rnd_caught_mom") == 2>>
  1475. <<set $rnd_caught_mom = '$rnd_rodnya_text your $npc('A29').nickname, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "You are naughty again $pc.name_nick? I begged you not to fuck at every corner, you got fully out of hand, slut!"'>>
  1476. <<elseif getvar("$rnd_caught_mom") == 3>>
  1477. <!-- FAILED TO CONVERT
  1478. $rnd_caught_mom = '<<$rnd_rodnya_text>> your <<$npc_nickname[''A29'']>>, <<$rnd_viewgg_text>> and <<$rnd_talkgg_text>> <<$rnd_talkgg2_text>>: "Well, <<$pc.name_nick>>, I can see you''ve found a place to spread your legs for guys... horribly unsanitary."
  1479. -----
  1480. <<set $rnd_caught_mom = '$rnd_rodnya_text your $npc('A29').nickname , ERROR: FAILED TO CONVERT LITERAL: """$rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "Well""" , $pc.name_nick , I can see you've found a place to spread your legs for guys... horribly unsanitary.">>
  1481. -->
  1482. <<warn "CONVERSION ERROR 3086fe2cc317264404bd3c09482bb843">>
  1483. "It's not my fault , the idea , to go here , occurred to the boys. As soon as they finish , I'll come home and I'll take a bath." You replied being on your knees and cleaning your messy holes with wet wipes.'
  1484. <<elseif getvar("$rnd_caught_mom") == 4>>
  1485. <<set $rnd_caught_mom = '$rnd_rodnya_text your $npc('A29').nickname, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "$pc.name_nick, instead of fucking the whole town, you should do your homework." "Yes $npc('A29').nickname, I've done it!"'>>
  1486. <<elseif getvar("$rnd_caught_mom") == 5>>
  1487. <<set $rnd_caught_mom = '$rnd_rodnya_text your $npc('A29').nickname, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: - "Girl, you shoud have a break and not to fuck for a while."'>>
  1488. <<elseif getvar("$rnd_caught_mom") == 6>>
  1489. <<set $rnd_caught_mom = '$rnd_rodnya_text your $npc('A29').nickname, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: - "Girl, how come they bitched you so...? Will you be home soon?" $rnd_mom_txt1'>>
  1490. <</if>>
  1491. <</if>>
  1492. <!-- !-------->
  1493. <!-- !Sister:-->
  1494. <<set $rnd_caught_sister = rand(1,4)>>
  1495. <<if getvar("$rnd_caught_sister") == 1 and $pc.fame('pav_slut') < 250>>
  1496. <<set $rnd_caught_sister = '$rnd_rodnya_text your $rnd_namesis_text, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "$npc('A29').nickname asked me to tell you, not forget to $rnd_domdela_text, when you've finished."'>>
  1497. <</if>>
  1498. <<if getvar("$rnd_caught_sister") == 1 and $pc.fame('pav_slut') >= 250>>
  1499. <<set $rnd_caught_sister = '$rnd_rodnya_text your $rnd_namesis_text, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "You're such slut, $pc.name_nick"'>>
  1500. <</if>>
  1501. <<if getvar("$rnd_caught_sister") == 2 and $pc.fame('pav_slut') < 250>>
  1502. <<set $rnd_caught_sister = '$rnd_rodnya_text your $rnd_namesis_text, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: $rnd_telogg_text'>>
  1503. <</if>>
  1504. <<if getvar("$rnd_caught_sister") == 2 and $pc.fame('pav_slut') >= 250>>
  1505. <<set $rnd_caught_sister = '$rnd_rodnya_text your $rnd_namesis_text, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: $rnd_telogg2_text'>>
  1506. <</if>>
  1507. <<if getvar("$rnd_caught_sister") == 3>>
  1508. <<set $rnd_caught_sister = '$rnd_rodnya_text your $rnd_namesis_text, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "I'm running about and searching her high and low... and it emerges that she is being fucked here. Put a bell on your neck or something, so I could find you easier next time. Give me your keys, filthy slut, I forgot my keys at home. ... Okay! let it be, I'll do it myself. In your purse? Take out the dick out of your mouth, when an elder inquires you! In your pocket? Ok, I found them. ... If you go into bathroom, clean it all with powder. The last thing I need is being after you by Holy Ghost knocked up."'>>
  1509. <</if>>
  1510. <<if getvar("$rnd_caught_sister") == 4 and $pc.fame('pav_slut') < 250>>
  1511. <<set $rnd_caught_sister = '$rnd_rodnya_text your $rnd_namesis_text, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "$pc.name_nick, $npc('A29').nickname is looking for you, and you are being fucked right here! How long do you need?" "Oh sis, it's so enjoyable... another ten minutes they fuck me and then I'll come right."'>>
  1512. <</if>>
  1513. <<if getvar("$rnd_caught_sister") == 4 and $pc.fame('pav_slut') >= 250>>
  1514. <<set $rnd_caught_sister = '$rnd_rodnya_text your $rnd_namesis_text, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "$pc.name_nick, you are with clients? How long yet? You've to wake up early tomorrow." Your sister turns to the boys that were standing in line. "Have you fucked her already?" "Nope, the first just started."'>>
  1515. <</if>>
  1516. <!-- !------>
  1517. <!-- !Brother:-->
  1518. <<set $rnd_caught_brother = rand(1,3)>>
  1519. <<if getvar("$rnd_caught_brother") == 1 and getvar("$momslut") >= 1>>
  1520. <<set $rnd_caught_brother = '$rnd_rodnya_text, your brother $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: "$npc('A29').nickname asked me to tell you, not forget to $rnd_domdela_text, when you've finished."'>>
  1521. <</if>>
  1522. <<if getvar("$rnd_caught_brother") == 1 and getvar("$momslut") < 1>>
  1523. <<set $rnd_caught_brother = '$rnd_rodnya_text, your brother $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: "You're such slut, $pc.name_nick"'>>
  1524. <</if>>
  1525. <<if getvar("$rnd_caught_brother") == 2 and $pc.fame('pav_slut') < 250>>
  1526. <<set $rnd_caught_brother = '$rnd_rodnya_text, your brother $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: $rnd_telogg_text'>>
  1527. <</if>>
  1528. <<if getvar("$rnd_caught_brother") == 2 and $pc.fame('pav_slut') >= 250>>
  1529. <<set $rnd_caught_brother = '$rnd_rodnya_text, your brother $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: $rnd_telogg2_text'>>
  1530. <</if>>
  1531. <<if getvar("$rnd_caught_brother") == 3 and getvar("$evgenQW") >= 4 and $pc.fame('pav_slut') < 250>>
  1532. <<set $rnd_caught_brother = '$rnd_rodnya_text, your brother $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: "$pc.name_nick, you do only blowjob to my buddies so heaven knows to whom you allow to fuck your pussy?" "So, they didn't request to do it. If they ask, they may fuck either my pussy or my ass."'>>
  1533. <</if>>
  1534. <<if getvar("$rnd_caught_brother") == 3 and getvar("$evgenQW") >= 4 and $pc.fame('pav_slut') >= 250>>
  1535. <<set $rnd_caught_brother = '$rnd_rodnya_text, your brother $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: "$pc.name_nick, you do only blowjob to my buddies so heaven knows to whom you allow to fuck your pussy?" "Well, I'm still willing to give free of charge to your friends. Let they rejoice getting blowjobs for free."'>>
  1536. <</if>>
  1537. <!-- !------->
  1538. <!-- !Stepfather:-->
  1539. <<set $rnd_caught_stepfather = rand(1,2)>>
  1540. <<if getvar("$rnd_caught_stepfather") == 1 and getvar("$momslut") >= 1>>
  1541. <<set $rnd_caught_stepfather = '$rnd_rodnya_text, your stepfather $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: "$npc('A29').nickname asked me to tell you, not forget to $rnd_domdela_text, when you've finished."'>>
  1542. <</if>>
  1543. <<if getvar("$rnd_caught_stepfather") == 1 and getvar("$momslut") < 1>>
  1544. <<set $rnd_caught_stepfather = '$rnd_rodnya_text, your stepfather $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: "You're such slut, $pc.name_nick"'>>
  1545. <</if>>
  1546. <<if getvar("$rnd_caught_stepfather") == 2 and $pc.fame('pav_slut') < 250>>
  1547. <<set $rnd_caught_stepfather = '$rnd_rodnya_text, your stepfather $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: $rnd_telogg_text'>>
  1548. <</if>>
  1549. <<if getvar("$rnd_caught_stepfather") == 2 and $pc.fame('pav_slut') >= 250>>
  1550. <<set $rnd_caught_stepfather = '$rnd_rodnya_text, your stepfather $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: $rnd_telogg2_text'>>
  1551. <</if>>
  1552. <!-- !------------>
  1553. <!-- !Other NPCs:-->
  1554. <<set $rnd_caught_othernpc = rand(1,13)>>
  1555. <<if getvar("$rnd_caught_othernpc") == 1 and $pc.fame('pav_slut') < 250>>
  1556. <<set $rnd_caught_othernpc = '$rnd_rodnya_text, uncle Misha $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: $rnd_telogg_text'>>
  1557. <</if>>
  1558. <<if getvar("$rnd_caught_othernpc") == 1 and $pc.fame('pav_slut') >= 250>>
  1559. <<set $rnd_caught_othernpc = '$rnd_rodnya_text, uncle Misha $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: $rnd_telogg2_text'>>
  1560. <</if>>
  1561. <<if getvar("$rnd_caught_othernpc") == 2 and $pc.fame('pav_slut') < 250>>
  1562. <<set $rnd_caught_othernpc = 'Passing by, '+setup.func('gopsex','hide','Shulga_var_name')+' sees me being '+setup.func('gopsex','hide','gop_sextext2')+'. He shows a thumbs-up to the boys and says: $rnd_telogg_text and he went on about his business.'>>
  1563. <</if>>
  1564. <<if getvar("$rnd_caught_othernpc") == 2 and $pc.fame('pav_slut') >= 250>>
  1565. <<set $rnd_caught_othernpc = 'Passing by, '+setup.func('gopsex','hide','Shulga_var_name')+' sees me being '+setup.func('gopsex','hide','gop_sextext2')+'. He shows a thumbs-up to the boys and without hiding a smile he tells you: $rnd_telogg2_text and went on about his business'>>
  1566. <</if>>
  1567. <<if getvar("$rnd_caught_othernpc") == 3 and $pc.fame('pav_slut') < 250>>
  1568. <<set $rnd_caught_othernpc = '$rnd_rodnya_text aunt Luda, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: - $rnd_telogg_text'>>
  1569. <</if>>
  1570. <<if getvar("$rnd_caught_othernpc") == 3 and $pc.fame('pav_slut') >= 250>>
  1571. <<set $rnd_caught_othernpc = '$rnd_rodnya_text aunt Luda, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: -$rnd_telogg2_text'>>
  1572. <</if>>
  1573. <<if getvar("$rnd_caught_othernpc") == 4 and $pc.fame('pav_slut') < 250>>
  1574. <<set $rnd_caught_othernpc = '$rnd_rodnya_text Natasha Belova, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: - $rnd_telogg_text'>>
  1575. <</if>>
  1576. <<if getvar("$rnd_caught_othernpc") == 4 and $pc.fame('pav_slut') >= 250>>
  1577. <<set $rnd_caught_othernpc = '$rnd_rodnya_text Natasha Belova, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: - $rnd_telogg2_text'>>
  1578. <</if>>
  1579. <<if getvar("$rnd_caught_othernpc") == 5 and $pc.fame('pav_slut') < 250>>
  1580. <<set $rnd_caught_othernpc = '$rnd_rodnya_text Julia Milov, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: - $rnd_telogg_text'>>
  1581. <</if>>
  1582. <<if getvar("$rnd_caught_othernpc") == 5 and $pc.fame('pav_slut') >= 250>>
  1583. <<set $rnd_caught_othernpc = '$rnd_rodnya_text Julia Milov, $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: - $rnd_telogg2_text'>>
  1584. <</if>>
  1585. <<if getvar("$rnd_caught_othernpc") == 6>>
  1586. <<set $rnd_caught_othernpc = 'Young boys notice you. Nudging each other, they click on their phone to see what's happening. You overhear their talk vaguely: "Look...! Look...! Not here, over there...! There is... Oh shit...!" "Shoot! Shoot! Faster...!" "Holy shit!", I've never seen a woman being fucked in real." "What the fuck...?" "That's a cunt!" "Can it be done also in the ass?" "Idiot, they're able almost whole forearm insert there. Heifers want it so. I've seen pics at Kirian's." "Don't brag...!" "Let's no quarrel!"'>>
  1587. <</if>>
  1588. <<if getvar("$rnd_caught_othernpc") == 7 and getvar("$evgenQW") < 4>>
  1589. <<set $rnd_caught_othernpc = '$rnd_rodnya_text, uncle Misha $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: "Oh dear! What kind of people! Like mother, like daughter! Exactly the same! Boobs exposed, legs apart. And the eyes are so cunning... Come to me then, we need to talk."'>>
  1590. <</if>>
  1591. <<if getvar("$rnd_caught_othernpc") == 7 and getvar("$evgenQW") >= 4>>
  1592. <<set $rnd_caught_othernpc = 'Your brother's football buddies notice you, when they are walking past you. They stop and start talking about you intensively: "Oh, my fuck, we treat her like a princess: only in her mouth... thank you... please... see you! It turns out that she is quite a prostitute. Oh shit, if we had known it then, we would have '+setup.func('gopsex','hide','gop_sextext2')+' that ripper in one gate all three of us, as we had wanted always. Well... Svetochka... It isn't hard for you to help us, is it...? After all, you are Kolya's sister... moreover older. Cavaliers, fuck... Now we get all. After all, they don't ask whores, they bang them right with their cocks, do they? Am I right, $pc.name_nick?" ... "Hurrah, she nodded! Oooh, you're such our sweetie! Fuck yeah! We're lucky: We have got our cum dumpster now. See you soon, fuckhole! Prepare your butt hole! Let's delight Kolya. He has been always jacking off dreaming about her. ... I call dibs on her ass!" "Can she hold three at once in her mouth? We should try it long ago. Fuck, we were too shy to suggest it, frigging gentlemen!"'>>
  1593. <</if>>
  1594. <<if getvar("$rnd_caught_othernpc") == 8>>
  1595. <<set $rnd_caught_othernpc = 'You are approached by a charwoman in the stairwell: "Well boys, step back and let your toy have a rest for a while. Don't throw away bottle, just put them on window sill when you're done. I'll take them away. Don't make a mess with scumbags everywhere! I gather up after you on half a bucket each day! Better, don't use them at all: it will be much pleasurable for you and your smasher without them or stack them neatly into her purse: she can take her trophies home with her, when she is done. Oi! Oi!!! Fuckbunny! Swallow, don't spit on the floor! Did you understand? Washing the floor after every whore, I would ruin my health. Don't drain your pussy onto the floor otherwise I'll make you lick all the scum!"'>>
  1596. <</if>>
  1597. <<if getvar("$rnd_caught_othernpc") == 9>>
  1598. <<set $rnd_caught_othernpc = '$rnd_rodnya_text, Aunt Luda $rnd_viewgg_text $rnd_talkgg_text $rnd_talkgg2_text: "Hey, $pc.name_nick, how is your sex life? Just think, it was only recently, when a tweeny, bows in her hair, blushing and stuttering, bought pads in my pharmacy for the first time. And now her lap squelches here all around so one can hear even on the street. You grew up very early. You better not stand like doggie here, fool. Do you know, what distinguishes sluts from decent girls? Scraped knees. Come for Green, I'll give it to you for a half price, goof!"'>>
  1599. <</if>>
  1600. <<if getvar("$rnd_caught_othernpc") == 10>>
  1601. <<set $rnd_caught_othernpc = '$rnd_rodnya_text, a mother with her little daughter notice you. The mother takes daughter by the hand and tells her: "Turn away and don't watch! This girl just did not obey her mama and that's why she's punished. Do you hear her calling her mama now? Obey mama and you'll never end up like her!" She turns to you: "Couldn't you wait, until you get home, slut? Do you have to shake buttocks just here? By the way, children walk here."'>>
  1602. <</if>>
  1603. <<if getvar("$rnd_caught_othernpc") == 11 and $pc.fame('pav_slut') < 250>>
  1604. <<set $rnd_caught_othernpc = '$rnd_rodnya_text, '+setup.func('gopsex','hide','Shulga_var_name')+' notices you and stops. He asked you: "$pc.name_nick, why do you go with these tadpoles?" You smirks and reply: "Frankly, I go with everybody."'>>
  1605. <</if>>
  1606. <<if getvar("$rnd_caught_othernpc") == 11 and $pc.fame('pav_slut') >= 250>>
  1607. <<set $rnd_caught_othernpc = '$rnd_rodnya_text, '+setup.func('gopsex','hide','Shulga_var_name')+' notices you and stops. He asks you: -"$pc.name_nick, do you have a session of beneficence today, or something?" You are taken aback and you reply: "Why on earth? I don't go with strangers for free."'>>
  1608. <</if>>
  1609. <<if getvar("$rnd_caught_othernpc") == 12 and $pc.fame('pav_slut') < 250>>
  1610. <<set $rnd_caught_othernpc = '$rnd_rodnya_text, uncle Misha $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "$pc.name_nick, you are already hyped up, could you gratify the old boy?" You smile at him and reply: "Uncle Misha, as soon as I've finished it here, I'll drop by you."'>>
  1611. <</if>>
  1612. <<if getvar("$rnd_caught_othernpc") == 12 and $pc.fame('pav_slut') >= 250>>
  1613. <<set $rnd_caught_othernpc = '$rnd_rodnya_text, uncle Misha $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "$pc.name_nick, you are already hyped up, could you gratify the old boy?" You turn to him and reply: "Uncle Misha, I'll drop by you late in the evening, but for free I can do only a blowjob, fucking my pussy or my ass is for money. He bobbed: "OK, I'll consider about it and I'll be waiting for you in the evening!"'>>
  1614. <</if>>
  1615. <<if getvar("$rnd_caught_othernpc") == 13 and $pc.fame('pav_slut') < 250>>
  1616. <<set $rnd_caught_othernpc = '$rnd_rodnya_text, aunt Luda $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "$pc.name_nick, you brought your fuckers again! You've been heard all over the house!" You smirk and reply: "Aunt Luda, I cannot do it quietly."'>>
  1617. <</if>>
  1618. <<if getvar("$rnd_caught_othernpc") == 13 and $pc.fame('pav_slut') >= 250>>
  1619. <<set $rnd_caught_othernpc = '$rnd_rodnya_text, aunt Luda $rnd_viewgg_text and $rnd_talkgg_text $rnd_talkgg2_text: "$pc.name_nick, you make again the plan for me tomorrow!"'>>
  1620. <</if>>
  1621. <!-- !NPC choose which fuse years-->
  1622. <<set $rnd_caughtgg_npc = rand(1,5)>>
  1623. <!-- !mother-->
  1624. <<if getvar("$rnd_caughtgg_npc") == 1>>
  1625. <<set $rnd_caughtgg_npc = '$rnd_caught_mom'>>
  1626. <<if getvar("$motherKnowSpravka") == 0>>
  1627. <<set $motherKnowSpravka = 1>>
  1628. <</if>>
  1629. <<if getvar("$motherKnowWhore") == 0>>
  1630. <<set $motherKnowWhore = 1>>
  1631. <</if>>
  1632. <</if>>
  1633. <!-- !different NPCs (Uncle Misha, Shulga, Aunt Luda , etc..d.)-->
  1634. <<if getvar("$rnd_caughtgg_npc") == 2>>
  1635. <<set $rnd_caughtgg_npc = '$rnd_caught_othernpc'>>
  1636. <</if>>
  1637. <!-- !sister-->
  1638. <<if getvar("$rnd_caughtgg_npc") == 3>>
  1639. <<set $rnd_caughtgg_npc = '$rnd_caught_sister'>>
  1640. <</if>>
  1641. <!-- !brother-->
  1642. <<if getvar("$rnd_caughtgg_npc") == 4>>
  1643. <<set $rnd_caughtgg_npc = '$rnd_caught_brother'>>
  1644. <<if getvar("$brotherknowslut") < 2>>
  1645. <<set $brotherknowslut = 2>>
  1646. <</if>>
  1647. <</if>>
  1648. <!-- !stepfather-->
  1649. <<if getvar("$rnd_caughtgg_npc") == 5>>
  1650. <<set $rnd_caughtgg_npc = '$rnd_caught_stepfather'>>
  1651. <</if>>
  1652. <!-- !randomly palim years-->
  1653. <<set $rnd_caughtgg_view = rand(0,100)>>
  1654. <<if getvar("$rnd_caughtgg_view") < 50>>
  1655. <<set $rnd_caughtgg_view = ''>>
  1656. <</if>>
  1657. <<if getvar("$rnd_caughtgg_view") >= 50 and $time.hour >= 0 and $time.hour < 5>>
  1658. <<set $rnd_caughtgg_view = ''>>
  1659. <</if>>
  1660. <<if getvar("$rnd_caughtgg_view") >= 50 and $time.hour >= 5 and $time.hour <= 23>>
  1661. <<set $rnd_caughtgg_view = '<br><font color = red>$rnd_caughtgg_npc</font>'>>
  1662. <</if>>
  1663. <<$rnd_caughtgg_view>>
  1664. <<set $rnd_domdela_text to null>>
  1665. <<set $rnd_telogg_text to null>>
  1666. <<set $rnd_telogg2_text to null>>
  1667. <<set $rnd_rodnya_text to null>>
  1668. <<set $rnd_viewgg_text to null>>
  1669. <<set $rnd_talkgg_text to null>>
  1670. <<set $rnd_talkgg2_text to null>>
  1671. <<set $rnd_namesis_text to null>>
  1672. <<set $rnd_mom_txt1 to null>>
  1673. <<set $rnd_caught_mom to null>>
  1674. <<set $rnd_caught_sister to null>>
  1675. <<set $rnd_caught_brother to null>>
  1676. <<set $rnd_caught_stepfather to null>>
  1677. <<set $rnd_caught_othernpc to null>>
  1678. <<set $rnd_caughtgg_npc to null>>
  1679. <<set $rnd_caughtgg_view to null>>
  1680. <</if>>
  1681. <!-- !gg_whore_text-->
  1682. <<if $location_var[$here][1] == 'gg_whore_text'>>
  1683. <<set $dummy = RAND(0,7)>>
  1684. <<if getvar("$dummy") == 0>>
  1685. <<set $dummy = 'slut'>>
  1686. <</if>>
  1687. <<if getvar("$dummy") == 1>>
  1688. <<set $dummy = 'prostitute'>>
  1689. <</if>>
  1690. <<if getvar("$dummy") == 2>>
  1691. <<set $dummy = 'whore'>>
  1692. <</if>>
  1693. <<if getvar("$dummy") == 3>>
  1694. <<set $dummy = 'hooker'>>
  1695. <</if>>
  1696. <<if getvar("$dummy") == 4>>
  1697. <<set $dummy = 'sporting lady'>>
  1698. <</if>>
  1699. <<if getvar("$dummy") == 5>>
  1700. <<set $dummy = 'floozy'>>
  1701. <</if>>
  1702. <<if getvar("$dummy") == 6>>
  1703. <<set $dummy = 'hoochie'>>
  1704. <</if>>
  1705. <<if getvar("$dummy") == 7>>
  1706. <<set $dummy = 'working girl'>>
  1707. <</if>>
  1708. <<set $result = $dummy>>
  1709. <<set $dummy to null>>
  1710. <</if>>
  1711. <!-- !-->
  1712. <<if $location_var[$here][1] == 'gop_gg_name'>>
  1713. <<set $dummy = RAND(0,30)>>
  1714. <<if getvar("$dummy") == 0>>
  1715. <<set $dummy = 'floozy'>>
  1716. <</if>>
  1717. <<if getvar("$dummy") == 1>>
  1718. <<set $dummy = 'slag'>>
  1719. <</if>>
  1720. <<if getvar("$dummy") == 2>>
  1721. <<set $dummy = 'whore'>>
  1722. <</if>>
  1723. <<if getvar("$dummy") == 3>>
  1724. <<set $dummy = 'scrub'>>
  1725. <</if>>
  1726. <<if getvar("$dummy") == 4>>
  1727. <<set $dummy = 'broad'>>
  1728. <</if>>
  1729. <<if getvar("$dummy") == 5>>
  1730. <<set $dummy = 'hole'>>
  1731. <</if>>
  1732. <<if getvar("$dummy") == 6>>
  1733. <<set $dummy = 'cunt'>>
  1734. <</if>>
  1735. <<if getvar("$dummy") == 7>>
  1736. <<set $dummy = 'slut'>>
  1737. <</if>>
  1738. <<if getvar("$dummy") == 8>>
  1739. <<set $dummy = 'hoochie'>>
  1740. <</if>>
  1741. <<if getvar("$dummy") == 9>>
  1742. <<set $dummy = 'moll'>>
  1743. <</if>>
  1744. <<if getvar("$dummy") == 10>>
  1745. <<set $dummy = 'bitch'>>
  1746. <</if>>
  1747. <<if getvar("$dummy") == 11>>
  1748. <<set $dummy = 'total hole'>>
  1749. <</if>>
  1750. <<if getvar("$dummy") == 12>>
  1751. <<set $dummy = 'anal bitch'>>
  1752. <</if>>
  1753. <<if getvar("$dummy") == 13>>
  1754. <<set $dummy = 'hooker'>>
  1755. <</if>>
  1756. <<if getvar("$dummy") == 14>>
  1757. <<set $dummy = 'our toy'>>
  1758. <</if>>
  1759. <<if getvar("$dummy") == 15>>
  1760. <<set $dummy = 'fuckbunny'>>
  1761. <</if>>
  1762. <<if getvar("$dummy") == 16>>
  1763. <<set $dummy = 'sporting lady'>>
  1764. <</if>>
  1765. <<if getvar("$dummy") == 17>>
  1766. <<set $dummy = 'free whore'>>
  1767. <</if>>
  1768. <<if getvar("$dummy") == 18>>
  1769. <<set $dummy = 'working girl'>>
  1770. <</if>>
  1771. <<if getvar("$dummy") == 19>>
  1772. <<set $dummy = '$pc.name_nick-sweetie'>>
  1773. <</if>>
  1774. <<if getvar("$dummy") == 20>>
  1775. <<set $dummy = 'promiscuous hole'>>
  1776. <</if>>
  1777. <<if getvar("$dummy") == 21>>
  1778. <<set $dummy = '$pc.name_nick-nymphet'>>
  1779. <</if>>
  1780. <<if getvar("$dummy") == 22>>
  1781. <<set $dummy = 'sausage jockey'>>
  1782. <</if>>
  1783. <<if getvar("$dummy") == 23>>
  1784. <<set $dummy = 'tart'>>
  1785. <</if>>
  1786. <<if getvar("$dummy") == 24>>
  1787. <<set $dummy = 'cum dumpster'>>
  1788. <</if>>
  1789. <<if getvar("$dummy") == 25>>
  1790. <<set $dummy = 'village bicycle'>>
  1791. <</if>>
  1792. <<if getvar("$dummy") == 26>>
  1793. <<set $dummy = 'school bike'>>
  1794. <</if>>
  1795. <<if getvar("$dummy") == 27>>
  1796. <<set $dummy = 'garden tool'>>
  1797. <</if>>
  1798. <<if getvar("$dummy") == 28>>
  1799. <<set $dummy = 'slut'>>
  1800. <</if>>
  1801. <<if getvar("$dummy") == 29>>
  1802. <<set $dummy = '$gnikname'>>
  1803. <</if>>
  1804. <<if getvar("$dummy") == 30>>
  1805. <<set $dummy = '$pc.name_nick-prostitot'>>
  1806. <</if>>
  1807. <<set $result = $dummy>>
  1808. <<set $dummy to null>>
  1809. <</if>>
  1810. <<if $location_var[$here][1] == 'gop_gg_name2'>>
  1811. <<set $dummy = RAND(1,11)>>
  1812. <<if getvar("$dummy") == 1>>
  1813. <<set $dummy = 'floozy'>>
  1814. <</if>>
  1815. <<if getvar("$dummy") == 2>>
  1816. <<set $dummy = 'slag'>>
  1817. <</if>>
  1818. <<if getvar("$dummy") == 3>>
  1819. <<set $dummy = 'whore'>>
  1820. <</if>>
  1821. <<if getvar("$dummy") == 4>>
  1822. <<set $dummy = 'bitch'>>
  1823. <</if>>
  1824. <<if getvar("$dummy") == 5>>
  1825. <<set $dummy = 'scrub'>>
  1826. <</if>>
  1827. <<if getvar("$dummy") == 6>>
  1828. <<set $dummy = 'slut'>>
  1829. <</if>>
  1830. <<if getvar("$dummy") == 7>>
  1831. <<set $dummy = 'broad'>>
  1832. <</if>>
  1833. <<if getvar("$dummy") == 8>>
  1834. <<set $dummy = 'hooker'>>
  1835. <</if>>
  1836. <<if getvar("$dummy") == 9>>
  1837. <<set $dummy = 'tramp'>>
  1838. <</if>>
  1839. <<if getvar("$dummy") == 10>>
  1840. <<set $dummy = 'prostitute'>>
  1841. <</if>>
  1842. <<set $result = $dummy>>
  1843. <<set $dummy to null>>
  1844. <</if>>
  1845. <<if $location_var[$here][1] == 'gop_text_npcr'>>
  1846. <<set $dummy = RAND(1,4)>>
  1847. <<if getvar("$dummy") == 1>>
  1848. <<set $dummy = 'boys'>>
  1849. <</if>>
  1850. <<if getvar("$dummy") == 2>>
  1851. <<set $dummy = 'guys'>>
  1852. <</if>>
  1853. <<if getvar("$dummy") == 3>>
  1854. <<set $dummy = 'buddies'>>
  1855. <</if>>
  1856. <<if getvar("$dummy") == 4>>
  1857. <<set $dummy = 'companions'>>
  1858. <</if>>
  1859. <<set $result = $dummy>>
  1860. <<set $dummy to null>>
  1861. <</if>>
  1862. <<if $location_var[$here][1] == 'gop_family_npc'>>
  1863. <<set $dummy = RAND(1,3)>>
  1864. <<if getvar("$dummy") == 1>>
  1865. <<set $dummy = 'Shulga'>>
  1866. <</if>>
  1867. <<if getvar("$dummy") == 2>>
  1868. <<set $dummy = 'Kotov'>>
  1869. <</if>>
  1870. <<if getvar("$dummy") == 3>>
  1871. <<set $dummy = 'Ryzhov'>>
  1872. <</if>>
  1873. <<set $result = $dummy>>
  1874. <<set $dummy to null>>
  1875. <</if>>
  1876. <<if $location_var[$here][1] == 'gop_sextext1'>>
  1877. <<set $dummy = RAND(0,7)>>
  1878. <<if getvar("$dummy") == 0>>
  1879. <<set $dummy = 'plow'>>
  1880. <</if>>
  1881. <<if getvar("$dummy") == 1>>
  1882. <<set $dummy = 'ram'>>
  1883. <</if>>
  1884. <<if getvar("$dummy") == 2>>
  1885. <<set $dummy = 'fuck'>>
  1886. <</if>>
  1887. <<if getvar("$dummy") == 3>>
  1888. <<set $dummy = 'hump'>>
  1889. <</if>>
  1890. <<if getvar("$dummy") == 4>>
  1891. <<set $dummy = 'pound'>>
  1892. <</if>>
  1893. <<if getvar("$dummy") == 5>>
  1894. <<set $dummy = 'bang'>>
  1895. <</if>>
  1896. <<if getvar("$dummy") == 6>>
  1897. <<set $dummy = 'screw'>>
  1898. <</if>>
  1899. <<if getvar("$dummy") == 7>>
  1900. <<set $dummy = 'hump'>>
  1901. <</if>>
  1902. <<set $result = $dummy>>
  1903. <<set $dummy to null>>
  1904. <</if>>
  1905. <<if $location_var[$here][1] == 'gop_sextext2'>>
  1906. <<set $dummy = RAND(0,7)>>
  1907. <<if getvar("$dummy") == 0>>
  1908. <<set $dummy = 'fucked'>>
  1909. <</if>>
  1910. <<if getvar("$dummy") == 1>>
  1911. <<set $dummy = 'banged'>>
  1912. <</if>>
  1913. <<if getvar("$dummy") == 2>>
  1914. <<set $dummy = 'pounded'>>
  1915. <</if>>
  1916. <<if getvar("$dummy") == 3>>
  1917. <<set $dummy = 'fucked'>>
  1918. <</if>>
  1919. <<if getvar("$dummy") == 4>>
  1920. <<set $dummy = 'rammed'>>
  1921. <</if>>
  1922. <<if getvar("$dummy") == 5>>
  1923. <<set $dummy = 'plowed'>>
  1924. <</if>>
  1925. <<if getvar("$dummy") == 6>>
  1926. <<set $dummy = 'screwed'>>
  1927. <</if>>
  1928. <<if getvar("$dummy") == 7>>
  1929. <<set $dummy = 'humped'>>
  1930. <</if>>
  1931. <<set $result = $dummy>>
  1932. <<set $dummy to null>>
  1933. <</if>>
  1934. <<if $location_var[$here][1] == 'gop_sextext3'>>
  1935. <<set $dummy = RAND(0,8)>>
  1936. <<if getvar("$dummy") == 0>>
  1937. <<set $dummy = 'fucking'>>
  1938. <</if>>
  1939. <<if getvar("$dummy") == 1>>
  1940. <<set $dummy = 'humping'>>
  1941. <</if>>
  1942. <<if getvar("$dummy") == 2>>
  1943. <<set $dummy = 'screwing'>>
  1944. <</if>>
  1945. <<if getvar("$dummy") == 3>>
  1946. <<set $dummy = 'banging'>>
  1947. <</if>>
  1948. <<if getvar("$dummy") == 4>>
  1949. <<set $dummy = 'bonking'>>
  1950. <</if>>
  1951. <<if getvar("$dummy") == 5>>
  1952. <<set $dummy = 'plowing'>>
  1953. <</if>>
  1954. <<if getvar("$dummy") == 6>>
  1955. <<set $dummy = 'shagging'>>
  1956. <</if>>
  1957. <<if getvar("$dummy") == 7>>
  1958. <<set $dummy = 'pounding'>>
  1959. <</if>>
  1960. <<if getvar("$dummy") == 8>>
  1961. <<set $dummy = 'ramming'>>
  1962. <</if>>
  1963. <<set $result = $dummy>>
  1964. <<set $dummy to null>>
  1965. <</if>>
  1966. <<if $location_var[$here][1] == 'gop_text3'>>
  1967. <<set $dummy = RAND(0,4)>>
  1968. <<if getvar("$dummy") == 0>>
  1969. <<set $dummy = 'touch'>>
  1970. <</if>>
  1971. <<if getvar("$dummy") == 1>>
  1972. <<set $dummy = 'grope'>>
  1973. <</if>>
  1974. <<if getvar("$dummy") == 2>>
  1975. <<set $dummy = 'feel'>>
  1976. <</if>>
  1977. <<if getvar("$dummy") == 3>>
  1978. <<set $dummy = 'fondle'>>
  1979. <</if>>
  1980. <<if getvar("$dummy") == 4>>
  1981. <<set $dummy = 'caress'>>
  1982. <</if>>
  1983. <<set $result = $dummy>>
  1984. <<set $dummy to null>>
  1985. <</if>>
  1986. <<if $location_var[$here][1] == 'gop_name_npc'>>
  1987. <<set $dummyi = RAND(0,2)>>
  1988. <<setinit $dummy[0] = 'A11'>>
  1989. <<setinit $dummy[1] = 'A9'>>
  1990. <<setinit $dummy[2] = 'A10'>>
  1991. <<set $gop_ID_npc = $dummy[$dummyi]>>
  1992. <<setinit $dummy[0] = 'Vasily'>>
  1993. <<setinit $dummy[1] = 'Vitek'>>
  1994. <<setinit $dummy[2] = 'Dan'>>
  1995. <<set $result = $dummy[$dummyi]>>
  1996. <<set $dummy to null>>
  1997. <<set $dummyi to null>>
  1998. <</if>>
  1999. <!-- !Buhach-->
  2000. <<if $location_var[$here][1] == 'gop_text_beer2'>>
  2001. <<set $dummyi = RAND(0,9)>>
  2002. <<if getvar("$dummyi") == 0>>
  2003. <<set $dummy = setup.func('gopsex','hide','gop_name_npc') + ' opens a new bottle of beer, he makes a couple of sips and passes the bottle to you. You stay to drink with the boys.'>>
  2004. <</if>>
  2005. <<if getvar("$dummyi") == 1>>
  2006. <<set $dummy = setup.func('gopsex','hide','gop_name_npc') + ' pours beer into an empty glass and hands it to you. You stay to drink with the guys.'>>
  2007. <</if>>
  2008. <<if getvar("$dummyi") == 2>>
  2009. <<set $dummy = setup.func('gopsex','hide','gop_name_npc') + ' hands you a bottle of beer. You take a draught. ' + setup.func('gopsex','hide','gop_family_npc') + ' says loudly, "Drunken slut".'>>
  2010. <</if>>
  2011. <<if getvar("$dummyi") == 3>>
  2012. <<set $dummy = setup.func('gopsex','hide','gop_name_npc') + ' uncorks and gives you a can of beer. You eagerly drain it in one gulp. "Wow" ' + setup.func('gopsex','hide','gop_text_npcr') + ' gives a sigh of admiration seeing it.'>>
  2013. <</if>>
  2014. <<if getvar("$dummyi") == 4>>
  2015. <<set $dummy = setup.func('gopsex','hide','gop_name_npc') + ' take a flask, pours beer into a glass, and hands it to you. You sit down on the bench and sprawl leisurely boozing with chavs.'>>
  2016. <</if>>
  2017. <<if getvar("$dummyi") == 5>>
  2018. <<set $dummy = setup.func('gopsex','hide','gop_name_npc') + ' opens a bottle of beer and hands it to you. You sip beer slowly.'>>
  2019. <</if>>
  2020. <<if getvar("$dummyi") == 6>>
  2021. <<set $dummy = setup.func('gopsex','hide','gop_name_npc') + ' uncork a bottle of beer and gives it to you. You eagerly drain it and plop the empty bottle on the bench.'>>
  2022. <</if>>
  2023. <<if getvar("$dummyi") == 7>>
  2024. <<set $dummy = setup.func('gopsex','hide','gop_name_npc') + ' take a sip from a big PET - bottle and hands it to you. You take few gulps and ' + setup.func('gopsex','hide','gop_family_npc') + ' takes the bottle from you.'>>
  2025. <</if>>
  2026. <<if getvar("$dummyi") == 8>>
  2027. <<set $dummy = setup.func('gopsex','hide','gop_name_npc') + ' take a sip from a can and hands it to you. You begin eagerly swig the beer... ' + setup.func('gopsex','hide','gop_family_npc') + ' takes the can away from you "Fuck, let some for us, fool!"'>>
  2028. <</if>>
  2029. <<if getvar("$dummyi") == 9>>
  2030. <<set $dummy = '"Have one." '+setup.func('gopsex','hide','gop_name_npc')+' hands you a bottle of unfinished Zhiguli and he smirks seeing as you drink it eagerly. Your mood lightenes.'>>
  2031. <</if>>
  2032. <<set $result = $dummy>>
  2033. <<set $dummyi to null>>
  2034. <<set $dummy to null>>
  2035. <</if>>
  2036. <<if $location_var[$here][1] == 'Shulga_var_name'>>
  2037. <<setinit $dummy[0] = 'Shulga'>>
  2038. <<setinit $dummy[1] = 'Vasily'>>
  2039. <<setinit $dummy[2] = 'Vaska'>>
  2040. <<setinit $dummy[3] = 'Vasily'>>
  2041. <<set $result = $dummy[RAND(0,3)]>>
  2042. <<set $dummy to null>>
  2043. <</if>>
  2044. <<if $location_var[$here][1] == 'gop_beer_drova'>>
  2045. <<set $dummy = RAND (0,8)>>
  2046. <<if getvar("$dummy") == 0>>
  2047. <<set $dummy = '"'+setup.func('gopsex','hide','gop_gg_name')+', you drank all the beer! Get up, let's '+setup.func('gopsex','hide','gop_sextext1')+' you!"'>>
  2048. <</if>>
  2049. <<if getvar("$dummy") == 1>>
  2050. <<set $dummy = '"You drank up all our beer, '+setup.func('gopsex','hide','gop_gg_name')+'!, Get up, it's time to work off your share."'>>
  2051. <</if>>
  2052. <<if getvar("$dummy") == 2>>
  2053. <<set $dummy = '"$pc.name_nick, stop drinking! Come on. Get up and serve us."'>>
  2054. <</if>>
  2055. <<if getvar("$dummy") == 3>>
  2056. <<set $dummy = '"Fuck you $pc.name_nick-drunkard, no more drink, you are almost dopey. Get up, let's '+setup.func('gopsex','hide','gop_sextext1')+' you!"'>>
  2057. <</if>>
  2058. <<if getvar("$dummy") == 4>>
  2059. <<set $dummy = '"Are you drunk? It's time to work off: Get up, prepare your box!"'>>
  2060. <</if>>
  2061. <<if getvar("$dummy") == 5>>
  2062. <<set $dummy = '"Well $pc.name_nick. You drank all the beer, '+setup.func('gopsex','hide','gop_gg_name')+'! Get up, it's time to '+setup.func('gopsex','hide','gop_sextext1')+' you!"'>>
  2063. <</if>>
  2064. <<if getvar("$dummy") == 6>>
  2065. <<set $dummy = '"Well $pc.name_nick, freebies ran out. Get up, let's '+setup.func('gopsex','hide','gop_sextext1')+' you!"'>>
  2066. <</if>>
  2067. <<if getvar("$dummy") == 7>>
  2068. <<set $dummy = '"You aren't ruined yet,$pc.name_nick?. So no more drink! You roped in beer us, now get up and work off the treat!"'>>
  2069. <</if>>
  2070. <<if getvar("$dummy") == 8>>
  2071. <<set $dummy = '"At this rate, we would fuck a rubber doll, and I don't like it so. '+setup.func('gopsex','hide','gop_text_npcr')+', don't pour her glass more! Come on, $pc.name_nick! Get up and show off your box!"'>>
  2072. <</if>>
  2073. <<set $result = $dummy>>
  2074. <<set $dummy to null>>
  2075. <</if>>
  2076. <!-- !-------------!-->
  2077. <!-- ! Text sex !-->
  2078. <!-- !=============!-->
  2079. <!-- !Cooney:-->
  2080. <<if $location_var[$here][1] == 'text_sex_cun'>>
  2081. <<set $txt_sex_cun = RAND(0,5)>>
  2082. <<if getvar("$txt_sex_cun") == 0>>
  2083. <<set $txt_sex_cun = 'Your fingers run through his hair and your hand is pushing his head gentle down towards your crotch. $boydesc kisses your pussy. You arch and poke out your cunny forward. $boydesc slightly touches your pussy with his lips.>>
  2084. <</if>>
  2085. "You have got a nice pussy indeed!"
  2086. <!-- FAILED TO CONVERT
  2087. You smiled: "I know"
  2088. -----
  2089. ERROR: FAILED TO CONVERT LITERAL: """You smiled: "I know""""
  2090. -->
  2091. <<warn "CONVERSION ERROR 41e97ac6206193e665869821baa1910e">>
  2092. His tongue penetrates slowly into your pussy parting your meaty nether lips. Your moaning gradually passes into scream.'
  2093. <<if getvar("$txt_sex_cun") == 1>>
  2094. <<set $txt_sex_cun = '$boydesc leans his face close to your pussy.>>
  2095. <</if>>
  2096. "Do you like?" You ask.
  2097. "Very much!" He replies and touches your clit with his lips and starts caressing it with his tongue. He licks skilfully , especially for his age. It was clear that it's not first time he puts his tongue in the girl''s cunny.
  2098. "You're good at it. Have you trained it?"
  2099. "Sometimes" He replies with a smile.
  2100. "Do you have a girlfriend?"
  2101. "No..." He answers , when has a short rest.
  2102. "Who teached you then?"
  2103. "I got a friend."
  2104. "Ooh. Do I know her? Is she at school?
  2105. "No. I'll tell you later."'
  2106. <<if getvar("$txt_sex_cun") == 2>>
  2107. <<set $txt_sex_cun = 'You lie down on your back and spread your thighs wide apart. $boydesc pulls your panties aside and his mouth clings to your wet pussy. He licks and sucks your cunt lips, your clit, and from time to time his tongue slides into your box. You moan, holding his head and pressing it tightly to your wet pussy.'>>
  2108. <</if>>
  2109. <<if getvar("$txt_sex_cun") == 3>>
  2110. <<set $txt_sex_cun = '$boydesc puts you on your back and moves to your wet box. He licks your clitoris, then he puts straight two fingers into your wet pussy and starts fingering you. Squishing sounds are coming from your cunny and your moaning resounds surroundings. $boydesc grins and his hand moves even faster'>>
  2111. <</if>>
  2112. <<if getvar("$txt_sex_cun") == 4>>
  2113. <<set $txt_sex_cun = 'You part your legs apart exposing your pussy to his view. Without hesitation, $boydesc starts kissing your box. He tickles your clit with his tongue and then he ran down between your pussy lips to your love hole, which was really very wet. You were ready for sex already so you could start fucking right now. But $boydesc is not in a hurry. He caresses you with both his tongue and his fingers listening to your sweet moans. You writhes with eagerness, but you don't beg just enjoy the moment.'>>
  2114. <</if>>
  2115. <<if getvar("$txt_sex_cun") == 5>>
  2116. <<set $txt_sex_cun = '"$boydesc , lick my pussy , please!" you asks kindly.>>
  2117. <</if>>
  2118. "With pleasure!" He replies.
  2119. $boydesc lowers his mouth to your groin and starts licking your pussy skillfully.'
  2120. <<$txt_sex_cun>>
  2121. <<set $txt_sex_cun to null>>
  2122. <</if>>
  2123. <!-- !--------------------------->
  2124. <!-- !69:-->
  2125. <<if $location_var[$here][1] == 'text_sex_69'>>
  2126. <<set $txt_sex_69 = RAND(0,1)>>
  2127. <<if getvar("$txt_sex_69") == 0>>
  2128. <<set $txt_sex_69 = 'Your $pc_desc['lips'] lips softly accept his member sucking it passionately all round like a lollipop, helping yourself with your nimble tongue tickling his frenulum. At the same time $boydesc grasps your clit with his fingertips rubbing it gently between them. Simultaneously he examines your love hole with his tongue, which has been already prepared to accept something bigger.'>>
  2129. <</if>>
  2130. <<if getvar("$txt_sex_69") == 1>>
  2131. <<set $txt_sex_69 = '$boydesc lies down on his back, takes your leg and shifts it over himself so your tushie was just in front of his face. Running his tongue between your nether lips, he feels you take his cock deep into your mouth again. You loosen your grasp a bit then and start sucking it with your $pc_desc['lips'] lips.'>>
  2132. <</if>>
  2133. <<$txt_sex_69>>
  2134. <<set $text_sex_69 to null>>
  2135. <</if>>
  2136. <!-- !--------------------------->
  2137. <!-- !masturbation hands-->
  2138. <<if $location_var[$here][1] == 'text_sex_hj'>>
  2139. <<set $txt_sex_hj = RAND(0,3)>>
  2140. <<if getvar("$txt_sex_hj") == 0>>
  2141. <<set $txt_sex_hj = 'Without talking, $boydesc shoves his cock in your face.'>>
  2142. <</if>>
  2143. "That's like jerk off." You say laughing, take his member into your hand and start pumping.
  2144. <<if getvar("$txt_sex_hj") == 1>>
  2145. <<set $txt_sex_hj = 'You take his still soft cock into your hand and it starts growing noticeably. You begin a hand job feasting your eyes on his strong prick.'>>
  2146. <</if>>
  2147. <<if getvar("$txt_sex_hj") == 2>>
  2148. <<set $txt_sex_hj = '$boydesc shoves his cock into your hand. Your fingers grip on his fat elastic trunk shakily. He tells you to hold it firmer.'>>
  2149. <</if>>
  2150. "Don't release it and move your hand up and down..." He takes hold showing how to do it.
  2151. <p>"Not so sharply... yes so. Don't pull... Yes,that's it. Great...! More... More.!"</p>
  2152. <<if getvar("$txt_sex_hj") == 3>>
  2153. <<set $txt_sex_hj = '$boydesc asks you to do hand job to him. You take his dick firmly into your hand and start to rub the skin back and forth.'>>
  2154. <</if>>
  2155. <<$txt_sex_hj>>
  2156. <<set $text_sex_hj to null>>
  2157. <</if>>
  2158. <!-- !blow job-->
  2159. <<if $location_var[$here][1] == 'text_sex_bj'>>
  2160. <<set $txt_sex_bj = RAND(0,7)>>
  2161. <<if getvar("$txt_sex_bj") == 0>>
  2162. <<set $txt_sex_bj = 'You take his member into your $pc_desc['lips'] lips, and $boydesc starts to fuck your mouth.'>>
  2163. <</if>>
  2164. <<if getvar("$txt_sex_bj") == 1>>
  2165. <<set $txt_sex_bj = 'You take his member into your mouth, and start to suck it. $boydesc takes hold of your $pc.hairColor $curly hair and impales your head at his prick. Slurping, you swallow his member. You could feel with your $pc_desc['lips'] lips every vein and bump on its skin.'>>
  2166. <</if>>
  2167. <<if getvar("$txt_sex_bj") == 2>>
  2168. <<set $txt_sex_bj = 'You grasp his member with your hand and pumping, you take with your $pc_desc['lips'] lips its head into your mouth. His dick stiffens more and gains impressive size. You learned to swallow a cock quite well long ago, and you used it always since that time. $boydesc was fascinated. You fondle his balls with one hand, and stroke his prick with other one, you release it from time to time so that you can take his shaft in your mouth fully.'>>
  2169. <</if>>
  2170. <<if getvar("$txt_sex_bj") == 3>>
  2171. <<set $txt_sex_bj = 'Without talking, $boydesc, seizes you by your $pc.hairColor $curly hair, tilts your head towards his penis. He starts swinging his hips fucking your mouth in such way.'>>
  2172. <</if>>
  2173. <<if getvar("$txt_sex_bj") == 4>>
  2174. <<set $txt_sex_bj = '$boydesc, seizes you by your $pc.hairColor $curly hair and starts moving with your head in pace of his swinging. You choke a bit but continued in sucking.'>>
  2175. <</if>>
  2176. <<if getvar("$txt_sex_bj") == 5>>
  2177. <<set $txt_sex_bj = 'You start to lick his dick with yout nimble tongue, then gather a little saliva, you take his prick in your $pc_desc['lips'] lips and begin to suck, rubbing it with your hand at the same time.'>>
  2178. <</if>>
  2179. <<if getvar("$txt_sex_bj") == 6>>
  2180. <<set $txt_sex_bj = 'You take his dick in your mouth, your tongue caress its sides, then the bottom and then the tip of head. You purse your $pc_desc['lips'] lips and start moving back and forth faster. You let his dick slid out of your mouth and you examine a result of your job with excitement. The head becomes even harder, purple and shiny. You feel a faint ache in your lower abdomen. You bend upward the hard shaft and run your tongue from the balls to the cock head, then you tickle it from all sides digging your $pc_desc['lips'] lips in the head.'>>
  2181. <</if>>
  2182. <<if getvar("$txt_sex_bj") == 7>>
  2183. <<set $txt_sex_bj = 'You gently wrap his prick with your wet $pc_desc['lips'] lips and let it slide in your mouth. You rub it with your nimble tongue, stroke its trunk and fondling his sack with your hands. You captur it stronger, slurping juices and your saliva enveloping its head. You are tickling it with your tongue and you hear $boydesc's sweet moaning.'>>
  2184. <</if>>
  2185. <<$txt_sex_bj>>
  2186. <<set $text_sex_bj to null>>
  2187. <</if>>
  2188. <!-- !--------------------------->
  2189. <!-- !Deepthroating-->
  2190. <<if $location_var[$here][1] == 'text_sex_bjt'>>
  2191. <<set $txt_sex_bjt = RAND(0,2)>>
  2192. <<if getvar("$txt_sex_bjt") == 0>>
  2193. <<set $txt_sex_bjt = 'He shove his prick deep into your throat squeezing it with his hand. Your $pc_desc['lips'] lips grip tightly his trunk. You aren't giving a blowjob. $boydesc is simply fucking your throat and you both have a lot of fun.'>>
  2194. <</if>>
  2195. <<if getvar("$txt_sex_bjt") == 1>>
  2196. <<set $txt_sex_bjt = 'You try to swallow his cock deeper with your $pc_desc['lips'] lips. You are rubbing it with you hand again, and caressing it with your mouth simultaneously. With each thrust you take it deeper and deeper in your mouth until it reaches your throat. Tears well in your eyes but you still try to put it in even deeper. $boydesc grabbs your $pc.hairColor $curly hair and took the initiative and starts pulling your head on his shaft.'>>
  2197. <</if>>
  2198. <<if getvar("$txt_sex_bjt") == 2>>
  2199. <<set $txt_sex_bjt = 'The cock head bumps into your throat and it even moves farther, but you can`t take it more - it was simply too thick. Nevertheless, at each thrust, bit by bit, it moves deeper and deeper. A rope of your saliva oozes out of your mouth down to your chin and drips on the ground.'>>
  2200. <</if>>
  2201. <<$txt_sex_bjt>>
  2202. <<set $text_sex_bjt to null>>
  2203. <</if>>
  2204. <!-- !--------------------------->
  2205. <!-- !doggie pussy-->
  2206. <<if $location_var[$here][1] == 'text_sex_doggy'>>
  2207. <<set $txt_sex_doggy = RAND(0,6)>>
  2208. <<if getvar("$txt_sex_doggy") == 0>>
  2209. <<if $wardrobe.PCloSkirt > 0>>
  2210. <<set $dummytxt = 'He hikes up your skirt'>>
  2211. <<elseif getvar("$CloPantsShortness") > 2>>
  2212. <<set $dummytxt = 'He pulls your shorts down to your knees'>>
  2213. <<else>>
  2214. <<set $dummytxt = 'He pulls your pants down to your knees'>>
  2215. <</if>>
  2216. <<set $txt_sex_doggy = 'You delight $boydesc. He jumps, and prompts you to bend forward. $dummytxt revealing your cute tushy, and shoves his dick into your pussy from behind. You don't expect such abrupt action, but he is fucking you for ten minutes, almost without slowing the pace, only occasionally stopping to take a breath. You think he would be tired soon, but it turns out that he is more tenacious than one might assume. The last five minutes you forget where you are, and screaming your head off. $boydesc is growling spanking your butt with one hand and pulling your $pc.hairColor $curly hair with the other.'>>
  2217. <<set $dummytxt to null>>
  2218. <</if>>
  2219. <<if getvar("$txt_sex_doggy") == 1>>
  2220. <<set $txt_sex_doggy = '$boydesc jerks off and then plants you on his cock. You start jiggle with your ass and his prick slides fully into your cunny and hits your cervix. You arch back and he grabs firmly your butt and starts fucking you stronger.'>>
  2221. <</if>>
  2222. <<if getvar("$txt_sex_doggy") == 2>>
  2223. <<set $txt_sex_doggy = 'You are breathing heavily being bending forward and dutifully waggling with your tushie. $boydesc is standing behind you and pulling you up like a dog on a bitch. $boydesc''s rough hands grab your butt helping you get his hard prick deeper into your box. You moan with pleasure , your butt bounces fast against his fascinating insatiable schlong. $boydesc raises his hand to strike and slaps your butt.>>
  2224. <</if>>
  2225. "Good job , $bitch , keep banging with your fanny. Come on sweetie , do it faster!" $boydesc is urging and slapping you alternately with left or right hand.'
  2226. <<if getvar("$txt_sex_doggy") == 3>>
  2227. <<set $txt_sex_doggy = '$boydesc has made you bend forward and then he stands behind you. Thereafter, he thrusts his cock into your wet cunt in one sharp move. You twitch and scream with searing and sharp pain, but stay obediently forward bending. He starts screwing you to the hilt roughly, he is ramming his shaft into you as if he wanted to get with each thrust deeper and deeper into your hole. He is fucking violently his classmate, holding your $pc.hairColor $curly hair with one hand. $boydesc's moves are sharp and strong. Silence is breaking with smacking sounds when his pelvis rebound with force from your springy butt, and you silently moan through gritted teeth.'>>
  2228. <</if>>
  2229. <<if getvar("$txt_sex_doggy") == 4>>
  2230. <<set $txt_sex_doggy = '"Go down on the floor and get on all fours , my sweet!">>
  2231. <</if>>
  2232. You obey dumbly , and you get on all fours. You like to be fucked in this way.
  2233. "$pc.name_nick bend backwards and lower your head!"
  2234. "Yes , $boydesc." You say excitedly and arch your back more and lower your head. Your bum move up more and your pussy become closer and easier to reach that appeals to him. $boydesc gets on the floor and parts your legs to sides and he kneels between them. Thereafter , he widely stretches your butt cheeks , slowly runs his shaft along your wet pussy and then shoves it deeply in.
  2235. "Mmmm... aaah... mmm , " you moaned.
  2236. $boydesc puts both hands on your bum and starts plowing your pussy with his prick with delight.'
  2237. <<if getvar("$txt_sex_doggy") == 5>>
  2238. <<set $txt_sex_doggy = 'Holding your waist, $boydesc is banging you, slowly increasing his pace. You are diligently fucking back moaning with pleasure and in quest to please him. Your boobs are swaying and your pink swollen nipples are sticking out seductively. You feel as his strong member alternately fills and pleasantly stretches your pussy at one moment and then it gets out fully. You feel like a whore and you like it.'>>
  2239. <</if>>
  2240. <<if getvar("$txt_sex_doggy") == 6>>
  2241. <<set $txt_sex_doggy = '$boydesc turns you, prompts you to bend forward and without ceremony he starts banging your pussy. Slaps beoame louder and louder. His chest and back are glistening with sweat, his fingers dig into your butt and the thrusts become stronger and shorter. $boydesc is not pulling out his prick fully from your cunt but just a bit. His cock is in your box completely and still keeps pounding. It seems that he won't stop.'>>
  2242. <</if>>
  2243. <<$txt_sex_doggy>>
  2244. <<set $text_sex_doggy to null>>
  2245. <</if>>
  2246. <!-- !--------------------------->
  2247. <!-- !doggie in the ass-->
  2248. <<if $location_var[$here][1] == 'text_sex_doggy_anal'>>
  2249. <<set $txt_sex_doggy_anal = RAND(0,8)>>
  2250. <<if getvar("$txt_sex_doggy_anal") == 0>>
  2251. <<set $txt_sex_doggy_anal = '$boydesc puts his cock to your anus and shoves it in your tight hole up to his sack with one stroke. You succeed in only twitching and screaming , when his big prick pierces your butt. After a couple of minutes , you become used and start moaning.>>
  2252. <</if>>
  2253. "Oh yess...! mmm... deeper...! mmmm..."
  2254. He grabs your hips and starts banging increasing his pace gradualy. You diligently fuck back wanting to get even more on his shaft. You are insanely excited and serve him with pleasure.'
  2255. <<if getvar("$txt_sex_doggy_anal") == 1>>
  2256. <<set $txt_sex_doggy_anal = '$boydesc is kneeling between your legs and shoving his prick into your ass hole up to his balls.You are on all fours having your bum lifted and you are fucking back in pace and moaning with pleasure. Your lover is propelled even more by your moaning. He is fucking you in silence for a while and then begins moaning excitedly.>>
  2257. <</if>>
  2258. "You have got a nice big butt, $pc.name_nick...", he tells you, still keeping his pace."
  2259. "Mmmm... yesss... yess... harder... deeper... mmm... oh yesss , you have such big cock... hmmmm..." you are cheering him on.'
  2260. <<if getvar("$txt_sex_doggy_anal") == 2>>
  2261. <<set $txt_sex_doggy_anal = '"I missed your tight tushie, baby! I'm going to fuck your bum now, my sweet chick". You feel that his prick is hard and jostles against your butt. $boydesc spits into his palm, greases his cock head and sets the glans to your anus. He starts pushing and slowly and gentle shoves his cock in your ass. As soon as the cock is fully in your bum, $boydesc starts wiggling with his pelvis holding your hips. You moan loudly and start fucking back and impaling yourself on his big cock.'>>
  2262. <</if>>
  2263. <<if getvar("$txt_sex_doggy_anal") == 3>>
  2264. <<set $txt_sex_doggy_anal = '$boydesc puts his cock head to your narrow entrance and pushes in. Your sphincter stretches and allows his thin prick to slide into your bum without exceptional resistence. He grabs your hips and starts fucking fast your bum. You shriek out at each thrust, which he enjoyes it a lot he is banging you faster and faster. He was seize with animal instincts and he desires so as you scream louder and louder continuously. $boydesc shoves his prick deep into your bowels so his balls smash your taint.'>>
  2265. <</if>>
  2266. <<if getvar("$txt_sex_doggy_anal") == 4>>
  2267. <<set $txt_sex_doggy_anal = '$boydesc moves you on your knees and he spoons to you from behind. He holds your bum with one hand and with other hand he aims his prick into the brown eye. It is seen that you enjoyed it. Holding your butt firmly, he is swinging his hips back and forth so forcefully, so smacks are somewhat frenzied, are both sonorous and muffled. And so fast: a swing, a hit, a swing, a hit. He starts drawing you close, when he reaches your womb, he draws close your ass, which rippled by his strokes.'>>
  2268. <</if>>
  2269. <<if getvar("$txt_sex_doggy_anal") == 5>>
  2270. <<set $txt_sex_doggy_anal = '$boydesc drags you with him. You find yourself being on elbows and knees and you grasp that he is about to penetrate you. He leans tip of his cock against your anus and jostles. It is a little painful, but the desire to pleasure outweighed. $boydesc gradually accelerates his screwing. Your anus relaxes and stretches so his prick could pass easily now.'>>
  2271. <</if>>
  2272. <<if getvar("$txt_sex_doggy_anal") == 6>>
  2273. <<set $txt_sex_doggy_anal = 'You stand with legs slightly apart, bending forward, he is holding your butt and his prick is fully hid in your ass hole. Breathing heavily, you are taking pleasure in this state. You want so that $boydesc is fully in you and your whole butt feels his strong bangs, and his member is moving back and forth, and waves induced by his banging, fly along your bum. You want to be fucked as a filthy whore.'>>
  2274. <</if>>
  2275. <<if getvar("$txt_sex_doggy_anal") == 7>>
  2276. <<set $txt_sex_doggy_anal = '$boydesc is holding your bum firmly and screwing your brown eye with his prick in full swing. He is banging you heftily and with a backswing. Stronger and even stronger, helping yourself with his hands, he pulls your firm bum towards him. You don't feel pain in your anus yet, it gives nice pleasant itching, and you feel something hot and flexible which penetrated deeper and deeper, and disappearing somewhere there.'>>
  2277. <</if>>
  2278. <<if getvar("$txt_sex_doggy_anal") == 8>>
  2279. <<set $txt_sex_doggy_anal = '$boydesc instructs you to bend forward and aims the head of his cock to your anus and starts pushing his member into your butt. Your ass is already relaxed and stretched and his cock slide fully into your bowels. $boydesc starts screwing you roughly. Bang! Bang! Bang! Smack! The cock moves back and forth. Waves caused by his blows, fly along your arse, your boobs are shaking, your head shudders in the pace of his strokes. Moan of pleasure flies from your lips. You try to resist to his violent pressure and the bonking. Your vision becomes blurred and color shadows and patterns filled your mind. Squeezing your ass, $boydesc is fucking it strongly and tiresome.'>>
  2280. <</if>>
  2281. <<$txt_sex_doggy_anal>>
  2282. <<set $text_sex_doggy_anal to null>>
  2283. <</if>>
  2284. <!-- !--------------------------->
  2285. <!-- !from above-->
  2286. <<if $location_var[$here][1] == 'text_sex_cow'>>
  2287. <<set $txt_sex_cow = RAND(0,2)>>
  2288. <<if getvar("$txt_sex_cow") == 0>>
  2289. <<set $txt_sex_cow = '$boydesc sits down on the couch, you straddle him and slowly lower yourself on his cock slipping it all of the way up inside your tight cunt. You start bouncing your hips sliding up and down his shaft. You are fucking, your eyes closed and you forget everything but her lust'>>
  2290. <</if>>
  2291. <<if getvar("$txt_sex_cow") == 1>>
  2292. <<set $txt_sex_cow = 'You straddle him , inserting his cock into your hot wet pussy to the hilt.>>
  2293. <</if>>
  2294. "Oh my god! That's so great!" you sigh and wiggle your hips and then you start bouncing up and down on his member. You increase speed of your fucking but after several minutes you fade and slow your ride. $boydesc grabs your ass and he begins set the pace , fucking you back.'
  2295. <<if getvar("$txt_sex_cow") == 2>>
  2296. <<set $txt_sex_cow = 'You swing your leg over and straddle him, reaching down, you grasp his hard cock and guide it to your wet pussy. Fucking him, you occasionally lean and kiss him and at that time your boobs touch his chest. After a while, you start squeezing him more with your legs and you press tightly to his groin, trying to get his member deeper into your box.'>>
  2297. <</if>>
  2298. <<$txt_sex_cow>>
  2299. <<set $text_sex_cow to null>>
  2300. <</if>>
  2301. <!-- !--------------------------->
  2302. <!-- !top anal-->
  2303. <<if $location_var[$here][1] == 'text_sex_cow_anal'>>
  2304. <<set $txt_sex_cow_anal = RAND(0,0)>>
  2305. <<if getvar("$txt_sex_cow_anal") == 0>>
  2306. <<set $txt_sex_cow_anal = 'You squat so you could control height of your ass better. You lift your bum up firstly and then slowly lower your ass again, trying impale yourself on $boydesc's dick. As soon as its head passes your sphincter, you start swaying your hips slightly. During the riding, you feet that your ass became accustomed to his member, there is no pain. You realize that you have started spontaneously sliding lower and lower.'>>
  2307. <</if>>
  2308. <<$txt_sex_cow_anal>>
  2309. <<set $text_sex_cow_anal to null>>
  2310. <</if>>
  2311. <!-- !--------------------------->
  2312. <!-- !missionary-->
  2313. <<if $location_var[$here][1] == 'text_sex_miss'>>
  2314. <<set $txt_sex_miss = RAND(0,5)>>
  2315. <<if getvar("$txt_sex_miss") == 0>>
  2316. <<set $txt_sex_miss = '$boydesc pushes you to lay on your back and then he lies down at you. The boy puts the soft purple head of his cock to your box and pushes in. You sigh feebly and clasp your legs around his butt. He slides to the hilt in your box and starts carefully moving as if he is afraid to cause you pain. Your cunt is wet inside and hot like a furnace. You catch his pace and fucking back you fully forget about the rest of world.'>>
  2317. <</if>>
  2318. <!-- FAILED TO CONVERT
  2319. if txt_sex_miss = 1:$txt_sex_miss = 'You couldn''t resist telling him: "Come on, fuck my hot cunny!"
  2320. -----
  2321. <<if getvar("$txt_sex_miss") == 1>>
  2322. <!-- FAILED TO CONVERT
  2323. $txt_sex_miss = 'You couldn''t resist telling him: "Come on, fuck my hot cunny!"
  2324. -----
  2325. <<set $txt_sex_miss = ERROR: FAILED TO CONVERT LITERAL: """'You couldn''t resist telling him: "Come on""" , fuck my hot cunny!">>
  2326. -->
  2327. <<warn "CONVERSION ERROR bd358d098ce6506604651c0767abed0e">>
  2328. <</if>>
  2329. -->
  2330. <<warn "CONVERSION ERROR 6fee18fc79095902210cee67559f35f2">>
  2331. You turn on your back and invitingly spread your legs. He doesn''t need to be asked twice. $boydesc lies down at you and his member plungs into your wet tunnel. You clasp his body with your legs as if you were afraid that he leaves you. $boydesc starts moving rhythmically gradually increasing his pace and you are fucking back actively. You moan loudly and scream when he shoves his prick extra deep into your squelching slit.'
  2332. <<if getvar("$txt_sex_miss") == 2>>
  2333. <<set $txt_sex_miss = '$boydesc puts you down on your back, he spreads your legs with his pelvis to sides and he lies down his stomach at you. He penetrates you groaning and watching his member sliding fast into your love hole, softly parting your nether lips. Elastic walls of your cunt softly envelope and captivate his member. He leans his hands on the bed hanging down over you, looking into your face and you keep your eyes on him. You are quite skilled, despite your age. When he is in you, you tightly squeeze your feet beneath him and to further stimulate his member with your hips. He is screwing you experiences a special gripping pleasure, being tightly captured with your hips.'>>
  2334. <</if>>
  2335. <<if getvar("$txt_sex_miss") == 3>>
  2336. <<set $txt_sex_miss = 'His member is tossing in your cunt like a crazy bull, you sense his hard trunk every time when $boydesc literally stamps your tender groin with his pelvis. He tenses up somewhat and starts banging you tirelessly, what make his dick quite hot.'>>
  2337. <</if>>
  2338. <<if getvar("$txt_sex_miss") == 4>>
  2339. <<set $txt_sex_miss = 'You are lying on your back, $boydesc starts running along yours nether lips with his bare glans. You feel very ticklish sensation, when he rubs your clit. Later, when he reaches your hole, he starts dipping there a bit more, ramming several times and then he gets out again. Gradually the deepness increases and finally he is fucking you fully. To say true, the position isn't very comfortable, but on the other hand he can see the whole body of his moaning mate and it was worth seeing. Suddenly you moans : "More...! More...! Come on!"'>>
  2340. <</if>>
  2341. <<if getvar("$txt_sex_miss") == 5>>
  2342. <<set $txt_sex_miss = 'Your pussy is well greased and his member slides easily into your love hole. You feel as his mushroom head is stretching inner walls of your fanny. You let out moan with each penetration. It doesn't last long and you get accustomed. You put your hands on his buttock and start set the pace. "Faster! faster!" Your whisper is melting into moaning and you tilt your head back. $boydesc doesn't contain himself and he rams his prick so deep so your pubes touched. You are breathing fast and heavily through your teeth. After a while $boydesc is fucking you openly. In turn, you seize his back and moan monotonously.'>>
  2343. <</if>>
  2344. <<$txt_sex_miss>>
  2345. <<set $text_sex_miss to null>>
  2346. <</if>>
  2347. <!-- !--------------------------->
  2348. <!-- !missionary anal-->
  2349. <<if $location_var[$here][1] == 'text_sex_miss_anal'>>
  2350. <<set $txt_sex_miss_anal = RAND(0,1)>>
  2351. <<if getvar("$txt_sex_miss_anal") == 0>>
  2352. <<set $txt_sex_miss_anal = '$boydesc pushes you to lay on your back and then he lies down at you. The boy puts the soft purple head of his cock to your pucker and pushes in. You sigh feebly and clasp your legs around his butt. He slides to the hilt in your bum and starts carefully moving as if he is afraid to cause you pain. Your anus is well lubbed and hot like a furnace. You catch his pace and fucking back you fully forget about the rest of world.'>>
  2353. <</if>>
  2354. <!-- FAILED TO CONVERT
  2355. if txt_sex_miss_anal = 1:$txt_sex_miss_anal = 'You can''t resist telling him: "Come on, fuck my tight ass!"
  2356. -----
  2357. <<if getvar("$txt_sex_miss_anal") == 1>>
  2358. <!-- FAILED TO CONVERT
  2359. $txt_sex_miss_anal = 'You can't resist telling him: "Come on, fuck my tight ass!"
  2360. -----
  2361. <<set $txt_sex_miss_anal = ERROR: FAILED TO CONVERT LITERAL: """'You can't resist telling him: "Come on""" , fuck my tight ass!">>
  2362. -->
  2363. <<warn "CONVERSION ERROR b7ed8ae87e5267ec434c635cd4c10bab">>
  2364. <</if>>
  2365. -->
  2366. <<warn "CONVERSION ERROR 6d16d75547df1021fe710820eeda383a">>
  2367. You turn on your back and invitingly spread your legs. He doesn''t need to be asked twice.'
  2368. <<$txt_sex_miss_anal>>
  2369. <<set $text_sex_miss_anal to null>>
  2370. <</if>>
  2371. <!-- !--------------------------->
  2372. <!-- !doggie of the vagina-->
  2373. <<if $location_var[$here][1] == 'text_sex_sideways'>>
  2374. <<set $txt_sex_sideways = RAND(0,1)>>
  2375. <<if getvar("$txt_sex_sideways") == 0>>
  2376. <<set $txt_sex_sideways = ''>>
  2377. <</if>>
  2378. <<if getvar("$txt_sex_sideways") == 1>>
  2379. <<set $txt_sex_sideways = ''>>
  2380. <</if>>
  2381. <<$txt_sex_sideways>>
  2382. <<set $text_sex_sideways to null>>
  2383. <</if>>
  2384. <!-- !--------------------------->
  2385. <!-- !anal doggie-->
  2386. <<if $location_var[$here][1] == 'text_sex_sideways_anal'>>
  2387. <<set $txt_sex_sideways_anal = RAND(0,1)>>
  2388. <<if getvar("$txt_sex_sideways_anal") == 0>>
  2389. <<set $txt_sex_sideways_anal = ''>>
  2390. <</if>>
  2391. <<if getvar("$txt_sex_sideways_anal") == 1>>
  2392. <<set $txt_sex_sideways_anal = ''>>
  2393. <</if>>
  2394. <<$txt_sex_sideways_anal>>
  2395. <<set $text_sex_sideways_anal to null>>
  2396. <</if>>
  2397. <!-- !-----------!-->
  2398. <!-- ! ending !-->
  2399. <!-- !===========!-->
  2400. <!-- !into hes mouth-->
  2401. <<if $location_var[$here][1] == 'text_sex_cumm'>>
  2402. <<set $txt_sex_cumm = RAND(0,2)>>
  2403. <<if getvar("$txt_sex_cumm") == 0>>
  2404. <<set $txt_sex_cumm = '$boydesc quickly pulls out his cock and shoves it into your mouth. You don't succeed in making an objection and stream of his hot cum hits your tonsils, you instinctively cling closer to him. He cumms and several long torrents of hot juice flood your mouth. In spite of that you try to swallow it all, surplus of his semen runs out of your mouth down your chin.'>>
  2405. <</if>>
  2406. <<if getvar("$txt_sex_cumm") == 1>>
  2407. <<set $txt_sex_cumm = 'You willingly take his cock in your mouth and you are sucking it with delight until $boydesc pours into your mouth a fair dose of his sticky baby batter.'>>
  2408. <</if>>
  2409. <<if getvar("$txt_sex_cumm") == 2>>
  2410. <<set $txt_sex_cumm = 'You swallow his dick, your tongue is tickling his big balls and don`t last long and his throbbing member spills hot stream of semen into your mouth .'>>
  2411. <</if>>
  2412. <<$txt_sex_cumm>>
  2413. <<set $text_sex_cumm to null>>
  2414. <</if>>
  2415. <!-- !on the face-->
  2416. <<if $location_var[$here][1] == 'text_sex_cumface'>>
  2417. <<set $txt_sex_cumface = RAND(0,3)>>
  2418. <<if getvar("$txt_sex_cumface") == 0>>
  2419. <<set $txt_sex_cumface = '$boydesc covers all your face with his hot sticky semen.'>>
  2420. <</if>>
  2421. <<if getvar("$txt_sex_cumface") == 1>>
  2422. <<set $txt_sex_cumface = '$boydesc pulls out his cock and aims it at your face. You see its purple head from which spurts his cum. You feel as warm sticky blobs are landing on your face and after a while his hot cum runs down over your chin and drips on the ground.'>>
  2423. <</if>>
  2424. <<if getvar("$txt_sex_cumface") == 2>>
  2425. <<set $txt_sex_cumface = '"Oh fuck!" $boydesc shouts out and pulls his cock out of your sweet captivity and takes it in his hand. A first long stream appears, you screw up your eyes and feel as a trickle of semen hits your chin and made a rope over your cheek. The second shot he aims deliberately straight at your cheek so you have barely a chance to close your eyes. This eruption is rich enough to cover your face with sticky cream.'>>
  2426. <</if>>
  2427. <<if getvar("$txt_sex_cumface") == 3>>
  2428. <<set $txt_sex_cumface = '$boydesc shifts his cock up to front of your face. At that moment a sticky stream strikes straight into your $pc_desc['lips'] lips. Trickles of semen is flowing down along your chin and drips on the ground. Ropes of sticky cum hangs down from your chin now. $boydesc spots it after a while when he finally complacently releases last drops of his semen.'>>
  2429. <</if>>
  2430. <<$txt_sex_cumface>>
  2431. <<set $text_sex_cumface to null>>
  2432. <</if>>
  2433. <!-- !on the body-->
  2434. <<if $location_var[$here][1] == 'text_sex_cumbody'>>
  2435. <<set $txt_sex_cumbody = RAND(0,1)>>
  2436. <<if getvar("$txt_sex_cumbody") == 0>>
  2437. <<set $txt_sex_cumbody = 'A minute later, he is barely having time to pull his dick out of you, $boydesc cumms on your boobs, even your face is partially messed with his semen.'>>
  2438. <</if>>
  2439. <<if getvar("$txt_sex_cumbody") == 1>>
  2440. <<set $txt_sex_cumbody = '$boydesc runs his member over your tummy and finishes. It is so hot, his hard member and warm thick seed.'>>
  2441. <</if>>
  2442. <<$txt_sex_cumbody>>
  2443. <<set $text_sex_cumbody to null>>
  2444. <</if>>
  2445. <!-- !pussy-->
  2446. <<if $location_var[$here][1] == 'text_sex_cumvag'>>
  2447. <<set $txt_sex_cumvag = RAND(0,3)>>
  2448. <<if getvar("$txt_sex_cumvag") == 0>>
  2449. <<set $txt_sex_cumvag = 'After a while you feel that $boydesc even more increased his furious pace and wheezes. He finishes very explosively . You feel as from his throbbing member spurts his jizz, one jet after another. When $boydesc dick pulls his cock out of your pussy, his sticky cum oozes out of it.'>>
  2450. <</if>>
  2451. <<if getvar("$txt_sex_cumvag") == 1>>
  2452. <<set $txt_sex_cumvag = 'After some time $boydesc can feel as your pussy begins to shrink and throb. You loudly and sensually groan, fuck back wildly moaning with pleasure. He grabs you stronger and begins to bang you even faster and in a few minutes he reaches the peak too. $boydesc cumms right into your pussy. You can feel that your pussy fills with his hot semen ...'>>
  2453. <</if>>
  2454. <<if getvar("$txt_sex_cumvag") == 2>>
  2455. <<set $txt_sex_cumvag = 'Suddenly you tighten muscles of your pussy and $boydesc feels that your pussy is even tighter. He can't hold it longer and begins to finish right into your pussy. You tense your cunt muscles to milk his sperm from his cock.'>>
  2456. <</if>>
  2457. <<if getvar("$txt_sex_cumvag") == 3>>
  2458. <<set $txt_sex_cumvag = 'Holding your waist, $boydesc pulls you stronger to him not letting his member slid out. His big cock throbs and twitches indicating so that $boydesc is about to cum. Thanks to your skillful effort his orgasm begins and it is so strong that he is cumming into your pussy at least thirty seconds.'>>
  2459. <</if>>
  2460. <<$txt_sex_cumvag>>
  2461. <<set $text_sex_cumvag to null>>
  2462. <</if>>
  2463. <!-- !in the ass-->
  2464. <<if $location_var[$here][1] == 'text_sex_cumass'>>
  2465. <<set $txt_sex_cumass = RAND(0,1)>>
  2466. <<if getvar("$txt_sex_cumass") == 0>>
  2467. <<set $txt_sex_cumass = '$boydesc shoves his dick in your ass but not whole, only its head. He starts jerking off his prick keeping the head inside of your bum and after some time he pours in your ass huge dose of his semen, which runs down along your thighs and drips on the ground.'>>
  2468. <</if>>
  2469. <<if getvar("$txt_sex_cumass") == 1>>
  2470. <<set $txt_sex_cumass = '$boydesc begins to cum into your ass, his sperm melts and thins in your bowels. When he finished, he tries to shove his cock even deeper, and he presses onto your ass with full strength of his body.'>>
  2471. <</if>>
  2472. <<$txt_sex_cumass>>
  2473. <<set $text_sex_cumass to null>>
  2474. <</if>>
  2475. <!-- !group sex section-->
  2476. <!-- !sucking all at once-->
  2477. <<if $location_var[$here][1] == 'text_sex_group_bjall'>>
  2478. <<set $txt_sex_group_bjall = RAND(1,3)>>
  2479. <<if getvar("$txt_sex_group_bjall") == 1>>
  2480. <<set $txt_sex_group_bjall = 'You decide to give blow job to all three guys at once. They poke their soft purple glans into your full lips immediately and when you`ve opened your mouth they try to get into. You suck their thick members one by one and meanwhile one of them fucks your mouth, you are doing a hand job to other two guys with your hands. The boys are in seven heaven.'>>
  2481. <</if>>
  2482. <<if getvar("$txt_sex_group_bjall") == 2>>
  2483. <<set $txt_sex_group_bjall = '"Gulp bitch , or you'll choke by a cock!" Dan orders "I'll teach you how to suck , you'll manage two members now!">>
  2484. <</if>>
  2485. "Vitek , why are you standing and staring? Get her your member , I can see that it's hard already and Vasily is about to wank." The boys wake up from feasting their eyes on the view of Dan fucking your mouth. Vitek and Vasily come to you and unfasten their pants and lower them together with their shorts to their ankles.
  2486. "Come on! $pc.name_nick take me in your mouth too!" Vitek asks kindly and simply. Dan takes his cock out of your mouth , turns your head towards Vitek and puts your mouth on his hard member. He moves your head back and forth a few times and then he turns you back to his cock. So you are fucked in mouth by two. Vasily joins you after a while. To not choke you has to adapt and take a breath when their cocks alternate. You only don't manage to take their dicks deep into your throat without gagging. Your eyes pop , you gag and cough then , the guys give you a short break and then start another round.'
  2487. <<if getvar("$txt_sex_group_bjall") == 3>>
  2488. <<set $txt_sex_group_bjall = 'Vitek feel that he has free hand, so one time he stuffs his whole cock into your mouth so his sack hits your chin and another time he pulls it whole out, and moistens your lips with his precum. Vasily watches you for a while and then he pulls out his already hard member. He stands next to Vitek and they let you suck their cocks alternately, sometimes even both at once. Dan joins after a few minutes, your mouth is fucked by three guys now, one by one, but sometimes they try to insert into your mouth their members at once ...'>>
  2489. <</if>>
  2490. <<$txt_sex_group_bjall>>
  2491. <<set $text_sex_group_bjall to null>>
  2492. <</if>>
  2493. <!-- !suction at a time-->
  2494. <<if $location_var[$here][1] == 'text_sex_group_bj'>>
  2495. <<set $txt_sex_group_bj = RAND(1,5)>>
  2496. <<if getvar("$txt_sex_group_bj") == 1>>
  2497. <<set $txt_sex_group_bj = 'The boys move you to your knees and they start to jerk off over your face. You begin to serve them successively and blow job each boy for a few minutes. It lasts quite a long time and you take delight in kneeling there and giving the boys the pleasure.'>>
  2498. <</if>>
  2499. <<if getvar("$txt_sex_group_bj") == 2>>
  2500. <<set $txt_sex_group_bj = 'They move you to your knees and you start to blow job each participating boy around.'>>
  2501. <</if>>
  2502. <<if getvar("$txt_sex_group_bj") == 3>>
  2503. <<set $txt_sex_group_bj = 'The boys are standing around you and one by one each boy lets you suck his cock.'>>
  2504. <</if>>
  2505. <<if getvar("$txt_sex_group_bj") == 4>>
  2506. <<set $txt_sex_group_bj = 'Look, you are on your knees and boys alternate to fuck your mouth, groping your boobs, slightly smacking in your face and they call you foul names like to a last whore. You are only even more excited with all that.'>>
  2507. <</if>>
  2508. <<if getvar("$txt_sex_group_bj") == 5>>
  2509. <<set $txt_sex_group_bj = 'You are on your knees with your mouth open, the boys one by one coming and you take their cocks deep into your beautiful mouth using no hands. No, you don`t suck them, they just fuck hard your mouth.'>>
  2510. <</if>>
  2511. <<$txt_sex_group_bj>>
  2512. <<set $text_sex_group_bj to null>>
  2513. <</if>>
  2514. <!-- !Vaginal fucking and sucking:-->
  2515. <<if $location_var[$here][1] == 'text_sex_group_vag'>>
  2516. <<set $txt_sex_group_vag = RAND(1,2)>>
  2517. <<if getvar("$txt_sex_group_vag") == 1>>
  2518. <<set $txt_sex_group_vag = '"Suck my dick now!" Dan commands you. You obey and incline to his member and start working intensively with your tongue. You lick his sweaty balls, then his groin and finally you lick his hard shaft up until you reach his cock head. Now you take the shaft into your mouth and let it slide deep into your throat. You take it in your mouth almost whole, your nose touch his belly. Vasily take his place next to Dan and asks you to blow job his cock too and so you begin to handle two cocks with your mouth. Meanwhile, Vitek starts to draw close to you from behind. You feel his fingers parting your cunt lips, and you spread your thighs more. In a wink you feet as his hard cock slides into your wet pussy. He starts humping you rhythmically and he manages squeezing your boobs and butt at the same time. His prick is big enough and you feel as its head leans against your cervix each time when he inserts his tool into your box. It lasts about five minutes and the boys choose to make change.'>>
  2519. <</if>>
  2520. <!-- FAILED TO CONVERT
  2521. if txt_sex_group_vag = 2:$txt_sex_group_vag = 'Dan asks: "Why are you moaning, you little slut?" and then he says: "Seize her mouth, Vasily! I can see that your shaft is hard, don''t let it lie idle."
  2522. -----
  2523. <<if getvar("$txt_sex_group_vag") == 2>>
  2524. <!-- FAILED TO CONVERT
  2525. $txt_sex_group_vag = 'Dan asks: "Why are you moaning, you little slut?" and then he says: "Seize her mouth, Vasily! I can see that your shaft is hard, don't let it lie idle."
  2526. -----
  2527. <<set $txt_sex_group_vag = ERROR: FAILED TO CONVERT LITERAL: """'Dan asks: "Why are you moaning""" , ERROR: FAILED TO CONVERT LITERAL: """you little slut?" and then he says: "Seize her mouth""" , Vasily! I can see that your shaft is hard , don't let it lie idle.">>
  2528. -->
  2529. <<warn "CONVERSION ERROR 8724a9aac1bb54d5b71286c30e0ce259">>
  2530. <</if>>
  2531. -->
  2532. <<warn "CONVERSION ERROR 7ead6b6164b9c0da15607ecee114a877">>
  2533. Vasily comes with noticeable eagerness and shoves his cock into your mouth. His dick isn''t so big as Dan''s member , but he can rival in its length. He starts with enthusiasm beating your throat deeply , watching admiringly as your lips get at his sack and pubes. At that moment also Vitek adds his member to your mouth and at that time Dan shoves his big cock fully into your wet cunt and starts humping sweepy. So , you find yourself being impaled at cocks from both sides. To top it all they agree and they ram their prick at the same time to get deep into your holes as much as possible. Hearing their moaning , you know that they like it madly.'
  2534. <<$txt_sex_group_vag>>
  2535. <<set $text_sex_group_vag to null>>
  2536. <</if>>
  2537. <!-- !anal sex and sucking:-->
  2538. <<if $location_var[$here][1] == 'text_sex_group_anal'>>
  2539. <<set $txt_sex_group_anal = RAND(1,2)>>
  2540. <<if getvar("$txt_sex_group_anal") == 1>>
  2541. <<set $txt_sex_group_anal = 'Suddenly the boys have a desire to fuck you in the ass. You agree delightedly. They move you into proper position and Vasily starts to fuck your butt and you are doing hand-job and blow-job to the rest. After a while the guys swap their places. Vasily pulls his dick out of your ass and shoves it into your mouth, Dan goes up to you from behind and starts fucking your anus. You gasp at each stroke and you choke each time when a cock gets deep into your mouth. Behind you start to be hot, Dan and Vitek in turn start to exploit your anus. They take apparently delight in fucking your butt and shoving their cocks into your mouth then.'>>
  2542. <</if>>
  2543. <<if getvar("$txt_sex_group_anal") == 2>>
  2544. <<set $txt_sex_group_anal = 'Dan suggests: "Let's go guys, two from sides and one from behind." You bend down, resting your hands. Two boys stand on your sides putting their members to your face, and the third goes up to you from behind. He gropes your ass and starts poking his hard member between your ass cheeks and heading to your brown star. When his cock finally enters into your bum, you give a sigh of pleasure. Vitek starts to fuck your bum, and you are turning your head to one side or the other, and you are giving blow-jobs to the guys standing next to you. The pace of the member in your ass grow gradually and in the same way your excitement grows.'>>
  2545. <</if>>
  2546. <<$txt_sex_group_anal>>
  2547. <<set $text_sex_group_anal to null>>
  2548. <</if>>
  2549. <!-- !double penetration and extraction:-->
  2550. <<if $location_var[$here][1] == 'text_sex_group_dp'>>
  2551. <<set $txt_sex_group_dp = RAND(1,4)>>
  2552. <<if getvar("$txt_sex_group_dp") == 1>>
  2553. <<set $txt_sex_group_dp = 'Dan is pressing you tight against his chest and starts banging your cunt forcefully and so deep so his prick is ramming into your cervix. He turns his head towards Vasily after a while and tells him to stop wanking and shove his prick into your butt hole instead. Vasily expects such opportunity, so he quickly moves behind your butt, kneels and digs his prick into your anus. Dan stops and firmly holds your back, allowing so Vasily penetrate your hole. Your relaxed butt hole adopts his prick naturally almost without resistance. As his prick deep works his way along Dan`s big shaft, it seems to you that they rip a wall between the holes and that they fuck one big hole together. Vitek can`t resist this view. He comes before you and shoves his cock head into your mouth and you start to suck his hard member. At first only Vasily is banging your butt and Dan is lying on his back and squeezing your boobs. After a while, they fuck you alternately and at the end, they dig your holes together in the same pace. You are sandwiched between them like a burger in a bun and as your mouth is plugged by Vita`s cock, you can only softly moaned with pleasure.'>>
  2554. <</if>>
  2555. <<if getvar("$txt_sex_group_dp") == 2>>
  2556. <<set $txt_sex_group_dp = 'Everybody wants to screw you, so the guys decide to bonk you all together. Dan shoves his prick into your pussy, Vitek sink his member into your ass-hole and Vasily lets you suck his shaft and they gradually increase the pace dipping their cocks deeper into your holes. Vitek is kissing your body and fondles you boobs gently, Dan strokes and squeezes your butt and he helps you mount their cocks. It is so weird and exciting that it alters your thinking. The boys are now so gentle and loving so you become less tense and finally start feeling pleasure. You start to sway back and forth your bum and help so the guys fuck your holes and you even open your mouth more to allow Vasily to shove his prick into your throat. Vitek whispers you into your ear flattery and you hear that you are the best slut in his life and that he has never fucked so nice girl and more and more...'>>
  2557. <</if>>
  2558. <<if getvar("$txt_sex_group_dp") == 3>>
  2559. <<set $txt_sex_group_dp = 'You get Vitek to laid down on his back and you straddle him and impale yourself on his sticking hard prick. You let him slide deep into your cunt and then start to ride him slowly. Dan offers you to suck his hard prick and when you take it in your mouth he starts to fuck your mouth as deep as he can. You are in heaven and you wish it lasts forever. At the moment you feet as Vasily shoves his cock into your bum. It was incredible, you sense as the cocks grind one against another through thin wall of your pussy. You feet like a rubber doll, every your hole is stacked with a hard dick.'>>
  2560. <</if>>
  2561. <<if getvar("$txt_sex_group_dp") == 4>>
  2562. <<set $txt_sex_group_dp = 'You climb at Vasily and sit down at his shaft. It slides slowly into your box giving an incredible pleasure to its wearer. Dan take his hard cock and begins to poke into your ass. His member is long and thin, but your anus is not relaxed so he can stretch it still. Dan increases the pressure and his shaft arches and wrinkles a bit, but gradually bit by bit his cock-head disappears into your butt-hole leaving its foreskin outside. It doesn`t last long and Dan shoves his whole prick into your bum. Vasily breathes heavily and fuckes vigorously your wet squelching pussy. You are wriggling at their cocks and you feel as inside is growing long-forgotten feeling of coming climax. Something soft and warm begins to touch your lips. It is Vitek`s member, you open your eyes and take his prick into your hand and start suck its head and rub the shaft with your hand.'>>
  2563. <</if>>
  2564. <<$txt_sex_group_dp>>
  2565. <<set $text_sex_group_dp to null>>
  2566. <</if>>
  2567. <!-- !double penetration in the ass:-->
  2568. <<if $location_var[$here][1] == 'text_sex_group_dpa'>>
  2569. <<set $txt_sex_group_dpa = 'Dan is pressing you tight against his chest and starts to ram forcefully his prick deep into your butt. He turns his head towards Vasily after a while and tells him to stop wanking and shove his prick into your butt hole instead. Vasily expects such opportunity, so he quickly moves behind your butt, kneels and digs his prick into your anus. Dan stops and firmly holds your back, allowing so Vasily penetrate your hole. Your relaxed butt hole adopts his prick naturally almost without resistance. As he shoves his prick deep into your ass, both guys start together to fuck your stretched hole. You think that your hole remained gaping and it will be loose for any pricks. Vitek can`t resist this view. He comes before you and shoves his cock head into your mouth. You start to suck his prick and at the same time you are wiggling your ass to increase its penetration.'>>
  2570. <<$txt_sex_group_dpa>>
  2571. <<set $text_sex_group_dpa to null>>
  2572. <</if>>
  2573. <!-- !triple penetration in the ass:-->
  2574. <<if $location_var[$here][1] == 'text_sex_group_triple'>>
  2575. <<set $txt_sex_group_triple = 'The boys remove rests of your clothes, and then they lie you on the bed. You resign and let them to treat you like a rubber doll, which can fullfill any imagination. You cannot remember that your ass was filled with three cocks. They simply use your body along their perverse fantasy...'>>
  2576. <<$txt_sex_group_triple>>
  2577. <<set $text_sex_group_triple to null>>
  2578. <</if>>
  2579. <<if $location_var[$here][1] == 'group_sex_text'>>
  2580. <<set $group_sex_text = RAND(0,8)>>
  2581. <<if getvar("$group_sex_text") == 0>>
  2582. <<set $group_sex_text = 'You ask playfully: "Well '+setup.func('gopsex','hide','gop_text_npcr')+', how are you gonna '+setup.func('gopsex','hide','gop_sextext1')+' me?"'>>
  2583. <</if>>
  2584. <<if getvar("$group_sex_text") == 1>>
  2585. <<set $group_sex_text = setup.func('gopsex','hide','gop_name_npc') + ' asks: "How can we ' + setup.func('gopsex','hide','gop_sextext1') + ' you ' + setup.func('gopsex','hide','gop_gg_name') + ' ?"'>>
  2586. <</if>>
  2587. <<if getvar("$group_sex_text") == 2>>
  2588. <<set $group_sex_text = setup.func('gopsex','hide','gop_name_npc') + ' dares you: "Make your slit ready ' + setup.func('gopsex','hide','gop_gg_name') + '! You'll go round now.'>>
  2589. <</if>>
  2590. <<if getvar("$group_sex_text") == 3>>
  2591. <<set $group_sex_text = setup.func('gopsex','hide','gop_name_npc') + ' asks: "$pc.name_nick, It seems to me that your holes are itching. Do you fancy ' + setup.func('gopsex','hide','gop_sextext3') + ', don't you?"'>>
  2592. <</if>>
  2593. <!-- FAILED TO CONVERT
  2594. if group_sex_text = 4:$group_sex_text = setup.func('gopsex','hide','gop_name_npc')+' asks: "<<$pc.name_nick>> - '+setup.func('gopsex','hide','gop_gg_name')+' are you ready to serve three dicks?"'
  2595. -----
  2596. <<if getvar("$group_sex_text") == 4>>
  2597. <!-- FAILED TO CONVERT
  2598. $group_sex_text = setup.func('gopsex','hide','gop_name_npc')+' asks: "<<$pc.name_nick>> - '+setup.func('gopsex','hide','gop_gg_name')+' are you ready to serve three dicks?"'
  2599. -----
  2600. <<set $group_sex_text = setup.func('gopsex','hide','gop_name_npc') + ERROR: FAILED TO CONVERT LITERAL: """' asks: "$pc.name_nick""" - '+setup.func('gopsex','hide','gop_gg_name')+' are you ready to serve three dicks?"'>>
  2601. -->
  2602. <<warn "CONVERSION ERROR df94d0773fe4ee2af9ce981f09fa5893">>
  2603. <</if>>
  2604. -->
  2605. <<warn "CONVERSION ERROR b4581f12c6cdf94d82e1773fd677402d">>
  2606. <<if getvar("$group_sex_text") == 5>>
  2607. <<set $group_sex_text = setup.func('gopsex','hide','gop_name_npc') + ' asks: "$pc.name_nick, what about if we'll ' + setup.func('gopsex','hide','gop_sextext1') + ' you into all holes at once?"'>>
  2608. <</if>>
  2609. <<if getvar("$group_sex_text") == 6>>
  2610. <<set $group_sex_text = setup.func('gopsex','hide','gop_family_npc') + ' tells you: "$pc.name_nick, you're our ' + setup.func('gopsex','hide','gop_gg_name') + ', Let's get into all your holes!"'>>
  2611. <</if>>
  2612. <<if getvar("$group_sex_text") == 7>>
  2613. <<set $group_sex_text = 'You wink at the guys and say: "Boys, yours $pc.name_nick is ready for anything. How do you want to '+setup.func('gopsex','hide','gop_sextext1')+' me?"'>>
  2614. <</if>>
  2615. <<if getvar("$group_sex_text") == 8>>
  2616. <<set $group_sex_text = 'You smile wickedly and say: "Yours $pc.name_nick wants some jizz. How do you'll be '+setup.func('gopsex','hide','gop_sextext3')+' me?"'>>
  2617. <</if>>
  2618. * nl $group_sex_text
  2619. <<set $group_sex_text to null>>
  2620. <</if>>
  2621. <<if $location_var[$here][1] == 'rndorder3'>>
  2622. <<setinit $rndorder[1] = 9>>
  2623. <<setinit $rndorder[2] = 10>>
  2624. <<setinit $rndorder[3] = 11>>
  2625. <<set $irndorder = 1>>
  2626. <<warn 'JUMP MARKER ENCOUNTERED: :rndorderjump'>>
  2627. <<if getvar("$irndorder") < 4>>
  2628. <<set $jrndorder = rand(1,3)>>
  2629. <<set $krndorder = $rndorder[$irndorder]>>
  2630. <<setinit $rndorder[$irndorder] = $rndorder[$jrndorder]>>
  2631. <<setinit $rndorder[$jrndorder] = $krndorder>>
  2632. <<set $irndorder += 1>>
  2633. <<warn 'JUMP COMMAND ENCOUNTERED: jump rndorderjump'>>
  2634. <</if>>
  2635. <<set $result = $rndorder[1] + 12 * $rndorder[2] + 144 * $rndorder[3]>>
  2636. <<set $rndorder to null>>
  2637. <<set $irndorder to null>>
  2638. <<set $jrndorder to null>>
  2639. <<set $krndorder to null>>
  2640. <</if>>
  2641. <</if>>
  2642. <!-- !Poses, harassment, etc..d.-->
  2643. <!-- ! if $ARGS[1] = 'txt_sveta_obol'-->
  2644. <!-- ! dummy = RAND(0,8)-->
  2645. <!-- ! if dummy = 0:$dummy = 'seductive'-->
  2646. <!-- ! if dummy = 1:$dummy = 'luscious'-->
  2647. <!-- ! if dummy = 2:$dummy = 'goddamned'-->
  2648. <!-- ! if dummy = 3:$dummy = 'charming'-->
  2649. <!-- ! if dummy = 4:$dummy = 'attractive'-->
  2650. <!-- ! if dummy = 5:$dummy = 'captivating'-->
  2651. <!-- ! if dummy = 6:$dummy = 'alluring'-->
  2652. <!-- ! if dummy = 7:$dummy = 'pretty'-->
  2653. <!-- ! if dummy = 8:$dummy = 'delightful'-->
  2654. <!-- ! $result = $dummy-->
  2655. <!-- ! killvar '$dummy'-->
  2656. <!-- !--- txt_sveta_obol ----->
  2657. <!-- !-->
  2658. <!-- !#poza_gop_txt3-->
  2659. <!-- ! dummy = RAND(0,7)-->
  2660. <!-- ! if dummy = 0:$dummy = 'successfully'-->
  2661. <!-- ! if dummy = 1:$dummy = 'sexually'-->
  2662. <!-- ! if dummy = 2:$dummy = 'immodestly'-->
  2663. <!-- ! if dummy = 3:$dummy = 'excitingly'-->
  2664. <!-- ! if dummy = 4:$dummy = 'vulgarly'-->
  2665. <!-- ! if dummy = 5:$dummy = 'handsomely'-->
  2666. <!-- ! if dummy = 6:$dummy = 'good'-->
  2667. <!-- ! if dummy = 7:$dummy = 'perfectly'-->
  2668. <!-- ! $result = $dummy-->
  2669. <!-- ! killvar '$dummy'-->
  2670. <!-- !--- poza_gop_txt3 ----->
  2671. <!-- !-->
  2672. <!-- !#poza_gop_txt2-->
  2673. <!-- ! dummy = RAND(0,10)-->
  2674. <!-- ! if dummy = 0:$dummy = 'Our '+setup.func('gopsex','hide','gop_gg_name')+' chose a great position'-->
  2675. <!-- ! if dummy = 1:$dummy = 'Our '+setup.func('gopsex','hide','gop_gg_name')+' assumed a cool position. Good job!'-->
  2676. <!-- ! if dummy = 2:$dummy = 'Fuck! '+setup.func('gopsex','hide','gop_gg_name')+' stood up, I got a damn boner, man!'-->
  2677. <!-- ! if dummy = 3:$dummy = 'Obedient '+setup.func('gopsex','hide','gop_gg_name')+' stood up '+setup.func('poza_gop_txt3')+'.'-->
  2678. <!-- ! if dummy = 4:$dummy = 'Look '+setup.func('gopsex','hide','gop_text_npcr')+'! Her box is ready.'-->
  2679. <!-- ! if dummy = 5:$dummy = 'Look, how '+setup.func('poza_gop_txt3')+' she stood up, first-class '+setup.func('gopsex','hide','gop_gg_name')+'.'-->
  2680. <!-- ! if dummy = 6:$dummy = 'Look, she stood up '+setup.func('poza_gop_txt3')+', our <<$pc.name_nick>>, doesn''t she?'-->
  2681. <!-- ! if dummy = 7:$dummy = 'Look, how '+setup.func('poza_gop_txt3')+' our <<$pc.name_nick>> got up'-->
  2682. <!-- ! if dummy = 8:$dummy = 'Well '+setup.func('gopsex','hide','gop_gg_name')+', you got a '+setup.func('poza_gop_txt3')+' position!'-->
  2683. <!-- ! if dummy = 9:$dummy = 'Haha, '+setup.func('gopsex','hide','gop_gg_name')+', you pose '+setup.func('poza_gop_txt3')+', pleasure for my eyes.'-->
  2684. <!-- ! if dummy = 10:$dummy = '<<$pc.name_nick>>, I love the position you chose. You deserved a strong dick.'-->
  2685. <!-- ! $result = $dummy-->
  2686. <!-- ! killvar '$dummy'-->
  2687. <!-- !--- poza_gop_txt2 ----->
  2688. <!-- !-->
  2689. <!-- !#poza_gop_txt-->
  2690. <!-- ! dummy = RAND(0,9)-->
  2691. <!-- ! if dummy = 0:$dummy = 'All right '+setup.func('gopsex','hide','gop_text_npcr')+', who will '+setup.func('gopsex','hide','gop_sextext1')+' her the first?'-->
  2692. <!-- ! if dummy = 1:$dummy = ''+setup.func('gopsex','hide','gop_text_npcr')+', who will '+setup.func('gopsex','hide','gop_sextext1')+' this body the first?'-->
  2693. <!-- ! if dummy = 2:$dummy = ''+setup.func('gopsex','hide','gop_text_npcr')+' who will '+setup.func('gopsex','hide','gop_sextext1')+' the first?'-->
  2694. <!-- ! if dummy = 3:$dummy = 'Come on '+setup.func('gopsex','hide','gop_text_npcr')+', we've to decide, to whom she'll serve first.'-->
  2695. <!-- ! if dummy = 4:$dummy = ''+setup.func('gopsex','hide','gop_text_npcr')+', let''s decide, to whom she'll serve first'-->
  2696. <!-- ! if dummy = 5:$dummy = '-"What about,if I'll '+setup.func('gopsex','hide','gop_sextext1')+' her the first?, I'll make '+setup.func('gopsex','hide','gop_text_npcr')+' ready for you, haha." '+setup.func('gopsex','hide','gop_family_npc')+' asked'-->
  2697. <!-- ! if dummy = 6:$dummy = ''+setup.func('gopsex','hide','gop_text_npcr')+', Well, who is going to '+setup.func('gopsex','hide','gop_sextext1')+' her now?'-->
  2698. <!-- ! if dummy = 7:$dummy = '-"'+setup.func('gopsex','hide','gop_text_npcr')+', what if she does a blowjob me first?", '+setup.func('gopsex','hide','gop_family_npc')+' queries'-->
  2699. <!-- ! if dummy = 8:$dummy = ''+setup.func('gopsex','hide','gop_family_npc')+' says: -"'+setup.func('gopsex','hide','gop_text_npcr')+', let me '+setup.func('gopsex','hide','gop_sextext1')+' her first!'-->
  2700. <!-- ! if dummy = 9:$dummy = '-"'+setup.func('gopsex','hide','gop_text_npcr')+', I want to '+setup.func('gopsex','hide','gop_sextext1')+' her first, till she isn''t drained yet.", '+setup.func('gopsex','hide','gop_family_npc')+' says.'-->
  2701. <!-- ! $result = $dummy-->
  2702. <!-- ! killvar '$dummy'-->
  2703. <!-- !--- poza_gop_txt ----->
  2704. <!-- !-->
  2705. <!-- !#poza_txt-->
  2706. <!-- ! dummy = RAND(0,17)-->
  2707. <!-- ! if dummy = 0:$dummy = 'You choose the most comfortable position for you.'-->
  2708. <!-- ! if dummy = 1:$dummy = 'You think this position is more '+setup.func('txt_sveta_obol')+'.'-->
  2709. <!-- ! if dummy = 2:$dummy = 'You stand in a comfortable position, which is also '+setup.func('txt_sveta_obol')+'.'-->
  2710. <!-- ! if dummy = 3:$dummy = 'You decide to get into this position. It is quite '+setup.func('txt_sveta_obol')+'.'-->
  2711. <!-- ! if dummy = 4:$dummy = 'You want to assume just this position.'-->
  2712. <!-- ! if dummy = 5:$dummy = 'You choose just such a goddamned posture and you wink at the boys.'-->
  2713. <!-- ! if dummy = 6:$dummy = 'You had a think about and then you get into this position.'-->
  2714. <!-- ! if dummy = 7:$dummy = 'You want to get just into such position. It is '+setup.func('txt_sveta_obol')+'.'-->
  2715. <!-- ! if dummy = 8:$dummy = 'You stand in the position obediently. You think it's the most '+setup.func('txt_sveta_obol')+'.'-->
  2716. <!-- ! if dummy = 9:$dummy = 'You had put away your bottle calmly and get up into a standard position.'-->
  2717. <!-- ! if dummy = 10:$dummy = 'It come to you to assume a seductive pose and show off all your charms.'-->
  2718. <!-- ! if dummy = 11:$dummy = 'After short consideration you decide to take a standard position for such occasion.'-->
  2719. <!-- ! if dummy = 12:$dummy = 'After a little thought you assume a sexual pose.'-->
  2720. <!-- ! if dummy = 13:$dummy = 'You misunderstand, which position they wanted you to assume, but it seems to you so that this position would be more '+setup.func('txt_sveta_obol')+'.'-->
  2721. <!-- ! if dummy = 14:$dummy = 'You don't think for a long and you stand so. Your pose is '+setup.func('txt_sveta_obol')+'.'-->
  2722. <!-- ! if dummy = 15:$dummy = 'They didn''t let you think about, so you get up in the standard position.'-->
  2723. <!-- ! if dummy = 16:$dummy = 'You hadn''t wanted invent something particular and so you choose a standard position'-->
  2724. <!-- ! if dummy = 17:$dummy = 'You had decided to get just into this position. It proves to be the most '+setup.func('txt_sveta_obol')+'.'-->
  2725. <!-- ! $result = $dummy-->
  2726. <!-- ! killvar '$dummy'-->
  2727. <!-- !--- poza_txt ----->