gopsex 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025
  1. # gopsex
  2. *P ''
  3. !------------------------------------!
  4. ! Different variations of sex -------------!
  5. !====================================!
  6. if shgopsex_count < 0:shgopsex_count = rand(4, 7)
  7. if $ARGS[0] = 'settings':
  8. !count-at times can be sex in the night (by default 2, then the value partner says he''s tired)
  9. !Vasya:
  10. if shgopsex_vasya_day ! daystart: shgopsex_vasya_count = 2 & shgopsex_vasya_day = daystart
  11. !Dan:
  12. if shgopsex_den_day ! daystart: shgopsex_den_count = 2 & shgopsex_den_day = daystart
  13. !Vitya:
  14. if shgopsex_vitya_day ! daystart: shgopsex_vitya_count = 2 & shgopsex_vitya_day = daystart
  15. !gangbang Number-during times daily:
  16. if shgopsex_gr_day ! daystart: shgopsex_gr_count = 1 & shgopsex_gr_day = daystart
  17. !---------------------------------------------------------!
  18. !count-in order to select a partner want to end:
  19. !1on1 (this option obnovlyaetsya after sex, in $shgopsex_end)
  20. shgopsex_count = rand(4,7)
  21. !gangbang
  22. shgopsex_group_count = rand(3,5)
  23. end
  24. !LED stamina NPC:
  25. $ind_stamina_npc = {
  26. sh_ind = shgopsex_count
  27. if sh_ind = 7: $ind_npc = '<font color = green > ███████ </font> '
  28. if sh_ind = 6: $ind_npc = '<font color = green > ██████_ </font> '
  29. if sh_ind = 5: $ind_npc = '<font color = green > █████__ </font> '
  30. if sh_ind = 4: $ind_npc = '<font color = blue > ████___ </font> '
  31. if sh_ind = 3: $ind_npc = '<font color = blue > ███____ </font> '
  32. if sh_ind = 2: $ind_npc = '<font color = red > ██_____ </font> '
  33. if sh_ind = 1: $ind_npc = '<font color = red > █______ </font> '
  34. if sh_ind <=0: $ind_npc = '<font color = red > Cumming! </font> '
  35. '<center>Stamina of <<$boydesc>>: <<$ind_npc>></center>'
  36. }
  37. !group display of stamina
  38. $ind_stamina_groupnpc = {
  39. sh_ind = shgopsex_group_count
  40. if sh_ind = 5: $ind_npc = '<font color = green > █████ </font> '
  41. if sh_ind = 4: $ind_npc = '<font color = green > ████_ </font> '
  42. if sh_ind = 3: $ind_npc = '<font color = blue > ███__ </font> '
  43. if sh_ind = 2: $ind_npc = '<font color = blue > ██___ </font> '
  44. if sh_ind = 1: $ind_npc = '<font color = red > █____ </font> '
  45. if sh_ind <=0: $ind_npc = '<font color = red > Cumming! </font> '
  46. '<center>you <<$gop_sextext3>> <<$gop_text_npcr>>, their endurance: <<$ind_npc>></center>'
  47. }
  48. !-------------------!
  49. !Randomization text!
  50. !===================!============================================
  51. !deduce if gg first time
  52. if $ARGS[0] = 'gg_devst_deflor':
  53. cumprecheck = 1
  54. gs 'cum_manage'
  55. if pcs_vag <= 0:
  56. pcs_horny = 0
  57. pcs_mood = pcs_mood - 15
  58. pcs_willpwr = pcs_willpwr - 15
  59. pcs_vag = pcs_vag + 1
  60. 'You tell them that this is your first time and ask for them to be gentle.'
  61. '<font color = red><b>You bite your lip in pain and tears stream from your eyes when his member enters into you, breaking your hymen. You cry and moan as the sturdy cock fucks your bloody pussy.</b></font>'
  62. end
  63. end
  64. !orgasm text NPC:
  65. $npc_orgasm = {
  66. npc_orgasm_txt = rand(1,5)
  67. if npc_orgasm_txt = 1:$npc_orgasm_txt = '-"Shit, <<$gop_name_gg>> I can not do it any longer, right now, finish!", warns you <<$boydesc>>.'
  68. if npc_orgasm_txt = 2:$npc_orgasm_txt = '<<$boydesc>> warns you: -"<<$gop_name_gg>> I''m already on the way, right now, finish!"'
  69. if npc_orgasm_txt = 3:$npc_orgasm_txt = '<<$boydesc>> Interested: -"Well, what <<$gop_name_gg>> which pour sperm? does not matter? well, OK, I will choose!"'
  70. if npc_orgasm_txt = 4:$npc_orgasm_txt = '-"I''m ready to finish!, <<$gop_name_gg>> wherever you want, What would I have done?, do not you know?, Well I will choose!"'
  71. if npc_orgasm_txt = 5:$npc_orgasm_txt = '<<$boydesc>> It tells you: -"<<$gop_name_gg>> I was at the peak, will soon be over!"'
  72. if shgopsex_count = 0:
  73. '<<$npc_orgasm_txt>>'
  74. end
  75. }
  76. !Text orgasm years:
  77. !orgasm years:
  78. if $ARGS[0] = 'gg_sex_orgasm':
  79. if mesec > 0:
  80. !periods, orgasm is not possible
  81. pcs_horny = 0
  82. pcs_mood = pcs_mood - 10
  83. pcs_willpwr = pcs_willpwr - 10
  84. '<font color = red><b>You have monthly and while yet a member of the rams you, vaginal blood flows slowly.</b></font>'
  85. elseif pcs_horny >= 50:
  86. horny_orgasm_text = RAND(0,11)
  87. if horny_orgasm_text = 0:
  88. 'Frustrated, you say, "Fuck me softly, I''m close to having an orgasm."'
  89. elseif horny_orgasm_text = 1:
  90. 'You started quickly podmahivat, I am trying to finish.'
  91. elseif horny_orgasm_text = 2:
  92. 'You were at the peak of orgasm, asked to push deeper dick.'
  93. elseif horny_orgasm_text = 3:
  94. 'You are try to orgasm, but he is going too slow and you are finding it hard to focus.'
  95. elseif horny_orgasm_text = 4:
  96. 'Do you want to finish strong, They began to try to beat podmahivat.'
  97. elseif horny_orgasm_text = 5:
  98. 'Would you like to finish, They began to actively nasazhivatsya on dick.'
  99. elseif horny_orgasm_text = 6:
  100. 'You tried to finish, We began to ask a partner to accelerate.'
  101. elseif horny_orgasm_text = 7:
  102. 'You ask him to fuck you harder.'
  103. elseif horny_orgasm_text = 8:
  104. 'You asked for you to handle tougher, I am trying to finish.'
  105. elseif horny_orgasm_text = 9:
  106. 'You pray for your partner to fuck you harder.'
  107. elseif horny_orgasm_text = 10:
  108. 'You yelled obscenities, You say what you promiscuous slut, podzadorilo partner and trying to finish.'
  109. elseif horny_orgasm_text = 11:
  110. 'You are strongly overexcited and want to finish. You implore your partner to fuck you more actively.'
  111. end
  112. if pcs_horny >= 70:
  113. orgasm += 1
  114. pcs_horny = 0
  115. pcs_mood += 25
  116. pcs_willpwr += 10
  117. pcs_hairbsh = 0
  118. orgasm_text = RAND(0,11)
  119. if orgasm_text = 0:
  120. 'Overexcitation you moaned loudly and finished.'
  121. elseif orgasm_text = 1:
  122. 'Your body began to shake violently and you finished.'
  123. elseif orgasm_text = 2:
  124. 'From your mouth broke out a loud groan, and at this moment you are caught orgasm.'
  125. elseif orgasm_text = 3:
  126. 'You huddled in convulsions and began to finish.'
  127. elseif orgasm_text = 4:
  128. 'You excitedly breathed and soon finished.'
  129. elseif orgasm_text = 5:
  130. 'On the skillful your partner, You embraced strong orgasm.'
  131. elseif orgasm_text = 6:
  132. 'From feelings overwhelm you, you violently ended.'
  133. elseif orgasm_text = 7:
  134. 'You managed to catch the strongest orgasm, You shook a couple of minutes.'
  135. elseif orgasm_text = 8:
  136. 'Have you finished, experienced an incredible feeling.'
  137. elseif orgasm_text = 9:
  138. 'You moaned loudly and obkonchalsya by skillful actions of your partner.'
  139. elseif orgasm_text = 10:
  140. 'Then the room nanoWell lnilasenskim cryom. You are inonchaDo grouo, Nickogo ne Articleesnyayas.'
  141. elseif orgasm_text = 11:
  142. 'The abundance of surging emotions you with a loud groan finished.'
  143. end
  144. end
  145. end
  146. end
  147. !masturbation years(when spying):
  148. if $ARGS[0] = 'masturb_gg':
  149. if mesec > 0:
  150. !periods, orgasm is not possible
  151. pcs_horny = 0
  152. pcs_mood = pcs_mood - 10
  153. pcs_willpwr = pcs_willpwr - 10
  154. '<font color = red><b>What you are seeing makes you a little excited, but since its your time of month, you don''t feel like masturbating and getting your fingers bloody...</b></font>'
  155. elseif mesec <= 0:
  156. !no monthly, orgasm is possible
  157. if pcs_horny >=50:
  158. rnd_masturb_text = rand(1,3)
  159. if rnd_masturb_text = 1:
  160. 'What you are seeing makes you a little excited, you slip a hand into your panties and begin to rub at your clitoris.'
  161. elseif rnd_masturb_text = 2:
  162. 'Wow! You''re greatly excited by what you are seeing. You are so excited and horny that you don''t care who sees, you slip your hand into your pantsies and start running your hand all over your wet pussy.'
  163. elseif rnd_masturb_text = 3:
  164. 'Watching the action, you''re really excited. You pull down your pants and pull aside your pantsies and slip a couple of fingers into your wet and eager pussy.'
  165. end
  166. end
  167. if pcs_horny >=60:'Your excitement increased, you quickly start rubbing her pussy, slipping a finger deeper into your pussy and pull and rub gently at your clit.'
  168. if pcs_horny >=70:
  169. orgasm += 1
  170. pcs_horny = 0
  171. stat['mast'] +=1
  172. if pcs_exhibition < 30:exhibition_exp += rand(1,3)
  173. 'With the abundance of surging emotions you shudder out a loud groan as you orgasm.'
  174. end
  175. end
  176. end
  177. !anal tube and lubrication (1on1)
  178. $gop_sex_analplugin = {
  179. if analplugin = 1:
  180. analplugin = 0
  181. '- "It''s plug in your ass?", asks in surprise <<$boydesc>>.'
  182. '- Aha, I am developing a point!'
  183. '- "Commendably, but now we will interfere", he said, and pulled the cork out of your ass.<br>'
  184. end
  185. }
  186. $gop_sex_lubri = {
  187. if gop_sex_lubri = 0:
  188. if lubri > 0:
  189. lubri -= 1
  190. if agape > 1:agape = 1
  191. pcs_horny += 20
  192. gop_sex_lubri = 1
  193. $pod_whore_lubri_text = '- "<<$boydesc>> wait if you want to fuck in the ass, it is necessary to download", You say you took out a tube from her purse. You squeezed anal grease on his hand and smeared his ass.'
  194. elseif lubri = 0:
  195. if agape > 2:agape = 2
  196. pcs_horny = 0
  197. end
  198. end
  199. }
  200. !anal tube and lubrication(gangbang):
  201. $gop_groupsex_analplugin = {
  202. if analplugin = 1:
  203. analplugin = 0
  204. '- "It''s plug in your ass?", asks in surprise <<$gop_name_npc>>.'
  205. '- Aha, I am developing a point for you!'
  206. '- "Commendably, but now we will interfere", he said, and pulled the cork out of your ass.<br>'
  207. end
  208. }
  209. $gop_groupsex_lubri = {
  210. if gop_groupsex_lubri = 0:
  211. if lubri > 0:
  212. lubri -= 1
  213. if agape > 1:agape = 1
  214. pcs_horny += 20
  215. gop_groupsex_lubri = 1
  216. $pod_whore_lubri_text = '- "<<$gop_text_npcr>> Wait if you want to fuck in the ass, it is necessary to download", You say you took out a tube from her purse. You squeezed anal grease on his hand and smeared his ass.'
  217. elseif lubri = 0:
  218. if agape > 2:agape = 2
  219. pcs_horny = 0
  220. end
  221. end
  222. }
  223. !familiar accidentally caught in the doorway years when her favor
  224. $accview_ggsex = {
  225. !home affairs
  226. rnd_domdela_text = rand(1,9)
  227. if rnd_domdela_text = 1:$rnd_domdela_text = 'cook dinner'
  228. if rnd_domdela_text = 2:$rnd_domdela_text = 'lessons do'
  229. if rnd_domdela_text = 3:$rnd_domdela_text = 'my room clean'
  230. if rnd_domdela_text = 4:$rnd_domdela_text = 'wash the dishes'
  231. if rnd_domdela_text = 5:$rnd_domdela_text = 'to go to the store for bread'
  232. if rnd_domdela_text = 6:$rnd_domdela_text = 'pussy wash'
  233. if rnd_domdela_text = 7:$rnd_domdela_text = 'go to shop'
  234. if rnd_domdela_text = 8:$rnd_domdela_text = 'cook dinner'
  235. if rnd_domdela_text = 9:$rnd_domdela_text = 'things wash'
  236. !turnip: davalka
  237. rnd_telogg_text = rand(1,15)
  238. if rnd_telogg_text = 1:$rnd_telogg_text = 'Do not pussy and bucket'
  239. if rnd_telogg_text = 2:$rnd_telogg_text = 'Quite girl Jam'
  240. if rnd_telogg_text = 3:$rnd_telogg_text = 'Bottomless hole was our <<$gop_name_gg>>'
  241. if rnd_telogg_text = 4:$rnd_telogg_text = 'Again <<$gop_name_gg>> You then given to all and sundry...'
  242. if rnd_telogg_text = 5:$rnd_telogg_text = 'Again <<$gop_name_gg>> you <<gop_sextext3>>, how can the?, not tired all the holes in a row to substitute...'
  243. if rnd_telogg_text = 6:$rnd_telogg_text = 'Poor girl, at each corner <<gop_sextext3>>'
  244. if rnd_telogg_text = 7:$rnd_telogg_text = '<<$gop_name_gg>> trouble-free <<$gop_gg_name2>>'
  245. if rnd_telogg_text = 8:$rnd_telogg_text = 'Poor <<$gop_name_gg>>, Go all the holes razebali'
  246. if rnd_telogg_text = 9:$rnd_telogg_text = 'Nihuya Statement <<$gop_name_gg>>, here you pussy torn'
  247. if rnd_telogg_text = 10:$rnd_telogg_text = 'Gosha <<$gop_name_gg>>, how you got so raskoryachishsya'
  248. if rnd_telogg_text = 11:$rnd_telogg_text = 'Just the fear of losing <<$gop_gg_name2>>'
  249. if rnd_telogg_text = 12:$rnd_telogg_text = 'Quite a shame lost <<$gop_gg_name2>>'
  250. if rnd_telogg_text = 13:$rnd_telogg_text = 'Ashamed to left and right of the hole to expose, <<$gop_gg_name2>>!'
  251. if rnd_telogg_text = 14:$rnd_telogg_text = '<<$gop_name_gg>> Well, you and shameless <<$gop_gg_name2>>'
  252. if rnd_telogg_text = 15:$rnd_telogg_text = 'Oh, <<$gop_name_gg>>, are you not sorry.'
  253. !turnip: whore
  254. rnd_telogg2_text = rand(1,14)
  255. if rnd_telogg2_text = 1:$rnd_telogg2_text = '<<$gop_name_gg>> are you not ashamed of looking for jobs in this filthy place?'
  256. if rnd_telogg2_text = 2:$rnd_telogg2_text = '<<$gop_name_gg>>, doing some moonlight trade?'
  257. if rnd_telogg2_text = 3:$rnd_telogg2_text = '<<$gop_name_gg>> do you sell your pussy at every corner you turn?'
  258. if rnd_telogg2_text = 4:$rnd_telogg2_text = 'Customers currently found, with full dedication work <<$gop_name_gg>>'
  259. if rnd_telogg2_text = 5:$rnd_telogg2_text = 'Quickly as you <<$gop_name_gg>> customers currently find, I am amazed!'
  260. if rnd_telogg2_text = 6:$rnd_telogg2_text = 'Look <<$gop_name_gg>> razebut all your holes, will have nothing to sell!'
  261. if rnd_telogg2_text = 7:$rnd_telogg2_text = 'If anywhere , and will be given to all in a row <<$gop_name_gg>>, quickly undermine your gap, unemployed stay!'
  262. if rnd_telogg2_text = 8:$rnd_telogg2_text = 'What I see <<$gop_name_gg>>, Again you trade body!, I wonder what you are inborn <<$gop_gg_name2>>!'
  263. if rnd_telogg2_text = 9:$rnd_telogg2_text = 'Then you trade body, Well, you and <<$gop_gg_name2>> <<$gop_name_gg>>, in this one you do not understand.'
  264. if rnd_telogg2_text = 10:$rnd_telogg2_text = 'Again, for a hundred <b>₽</b> a hole you substitute to anybody and has not bothered you?'
  265. if rnd_telogg2_text = 11:$rnd_telogg2_text = '<<$gop_name_gg>> Well, you and <<$gop_gg_name2>>, the output would itself made!'
  266. if rnd_telogg2_text = 12:$rnd_telogg2_text = 'Well, you and <<$gop_gg_name2>> <<$gop_name_gg>>, it does not pass, all by a pussy you trade...'
  267. if rnd_telogg2_text = 13:$rnd_telogg2_text = 'With all <<$gop_gg_name2>> shame lost, at the entrance there...'
  268. if rnd_telogg2_text = 14:$rnd_telogg2_text = 'Whore completely lost the shame, for 50 <b>₽</b> ready even to expose the hole in the street...'
  269. !different text
  270. rnd_rodnya_text = rand(1,2)
  271. if rnd_rodnya_text = 1:$rnd_rodnya_text = 'As you pass'
  272. if rnd_rodnya_text = 2:$rnd_rodnya_text = 'You nearly bump into'
  273. if rnd_rodnya_text = 3:$rnd_rodnya_text = 'You notice'
  274. rnd_rodnya_text2 = rand(1,2)
  275. if rnd_rodnya_text2 = 1:$rnd_rodnya_text2 = 'passing by'
  276. if rnd_rodnya_text2 = 2:$rnd_rodnya_text2 = 'Mimo was'
  277. if rnd_rodnya_text2 = 3:$rnd_rodnya_text2 = 'you noticed'
  278. rnd_viewgg_text = rand(1,7)
  279. if rnd_viewgg_text = 1:$rnd_viewgg_text = 'she sees you and'
  280. if rnd_viewgg_text = 2:$rnd_viewgg_text = 'seeing you she'
  281. if rnd_viewgg_text = 3:$rnd_viewgg_text = 'fusing over you she'
  282. if rnd_viewgg_text = 4:$rnd_viewgg_text = 'she catches your attention and'
  283. if rnd_viewgg_text = 5:$rnd_viewgg_text = 'she throws you a look and'
  284. if rnd_viewgg_text = 6:$rnd_viewgg_text = 'glancing at you she'
  285. if rnd_viewgg_text = 7:$rnd_viewgg_text = 'having seen how you <<$gop_sextext3>>'
  286. if rnd_viewgg_text = 8:$rnd_viewgg_text = 'aware that you <<$gop_sextext3>>'
  287. rnd_talkgg_text = rand(1,2)
  288. if rnd_talkgg_text = 1:$rnd_talkgg_text = 'He said'
  289. if rnd_talkgg_text = 2:$rnd_talkgg_text = 'said'
  290. rnd_talkgg_text2 = rand(1,2)
  291. if rnd_talkgg_text2 = 1:$rnd_talkgg_text2 = 'said'
  292. if rnd_talkgg_text2 = 2:$rnd_talkgg_text2 = 'said'
  293. rnd_talkgg2_text = rand(1,14)
  294. if rnd_talkgg2_text = 1:$rnd_talkgg2_text = 'gently'
  295. if rnd_talkgg2_text = 2:$rnd_talkgg2_text = 'acrimoniously'
  296. if rnd_talkgg2_text = 3:$rnd_talkgg2_text = 'in a low voice'
  297. if rnd_talkgg2_text = 4:$rnd_talkgg2_text = 'softly'
  298. if rnd_talkgg2_text = 5:$rnd_talkgg2_text = 'arrogantly'
  299. if rnd_talkgg2_text = 6:$rnd_talkgg2_text = 'with a smirk'
  300. if rnd_talkgg2_text = 7:$rnd_talkgg2_text = 'loud'
  301. if rnd_talkgg2_text = 8:$rnd_talkgg2_text = 'rough'
  302. if rnd_talkgg2_text = 9:$rnd_talkgg2_text = 'in a floor vote'
  303. if rnd_talkgg2_text = 10:$rnd_talkgg2_text = 'looking'
  304. if rnd_talkgg2_text = 11:$rnd_talkgg2_text = 'calmly'
  305. if rnd_talkgg2_text = 12:$rnd_talkgg2_text = 'with a laugh'
  306. if rnd_talkgg2_text = 13:$rnd_talkgg2_text = 'drowsily'
  307. if rnd_talkgg2_text = 14:$rnd_talkgg2_text = 'evil'
  308. if rand(0,1) = 1:
  309. $rnd_namemom_text = 'Mother'
  310. else
  311. $rnd_namemom_text = 'Mom'
  312. end
  313. if rand(0,1) = 1:
  314. $rnd_namesis_text = 'Sister'
  315. else
  316. $rnd_namesis_text = 'Sis'
  317. end
  318. !SG randomization if caught having sex in the stairwell
  319. !----
  320. !Mother:
  321. rnd_mom_txt1 = rand(1,2)
  322. if rand(0,1) = 0:
  323. $rnd_mom_txt1 = '- Dc <<$rnd_namemom_text>>, I go already.'
  324. else
  325. $rnd_mom_txt1 = '- <<$rnd_namemom_text>>, another will come and vyebet.'
  326. end
  327. !---->
  328. rnd_caught_mom = rand(1,6)
  329. if pav_slut >= 150:
  330. if rand(0,1) = 0:
  331. $rnd_caught_mom = '<<$rnd_rodnya_text>> your <<$rnd_namemom_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$rnd_telogg2_text>>'
  332. else
  333. $rnd_caught_mom = '<<$rnd_rodnya_text>> your <<$rnd_namemom_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$gop_name_gg>>, Well, you found a place, where customers take.'
  334. end
  335. elseif momslut >= 1:
  336. $rnd_caught_mom = '<<$rnd_rodnya_text>> your <<$rnd_namemom_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - Ended serve children, Do not forget <<$rnd_domdela_text>>'
  337. elseif pcs_vag >= 30:
  338. $rnd_caught_mom = '<<$rnd_rodnya_text>> your <<$rnd_namemom_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - Docha, You have a little fucked by a rest - you have pussy like a bucket, not even close.'
  339. else
  340. if rnd_caught_mom = 1:
  341. $rnd_caught_mom = '<<$rnd_rodnya_text>> your <<$rnd_namemom_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$rnd_telogg_text>>'
  342. elseif rnd_caught_mom = 2:
  343. $rnd_caught_mom = '<<$rnd_rodnya_text>> your <<$rnd_namemom_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - Again you chudish <<$gop_name_gg>>, I told you not asked ebattsa on every corner, entirely at the hands strayed slut!'
  344. elseif rnd_caught_mom = 3:
  345. $rnd_caught_mom = '<<$rnd_rodnya_text>> your <<$rnd_namemom_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$gop_name_gg>>, Well, you found a place, to push the legs: unsanitary solid.
  346. - "And I blame, they are impatient? Now doebut, I shall come home, pomoyus", They say you''re squatting, wiping his razёbannye holes napkin'
  347. elseif rnd_caught_mom = 4:
  348. $rnd_caught_mom = '<<$rnd_rodnya_text>> your <<$rnd_namemom_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$gop_name_gg>>, instead of, to fuck around the city, it would be better to do was learned.
  349. - "Yes I did!"'
  350. elseif rnd_caught_mom = 5:
  351. $rnd_caught_mom = '<<$rnd_rodnya_text>> your <<$rnd_namemom_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - Docha, You have a little bit of a rest fucked.'
  352. elseif rnd_caught_mom = 6:
  353. $rnd_caught_mom = '<<$rnd_rodnya_text>> your <<$rnd_namemom_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: -Dochka, how do you ... You will soon razebli home?
  354. <<$rnd_mom_txt1>>'
  355. end
  356. end
  357. !------
  358. !Sister:
  359. rnd_caught_sister = rand(1,4)
  360. if rnd_caught_sister = 1 and pav_slut < 150:$rnd_caught_sister = '<<$rnd_rodnya_text>> your <<$rnd_namesis_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$rnd_namemom_text>> He asked me to tell you, What would you like finish, not forgotten <<$rnd_domdela_text>>'
  361. if rnd_caught_sister = 1 and pav_slut >= 150:$rnd_caught_sister = '<<$rnd_rodnya_text>> your <<$rnd_namesis_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - What are you a slut <<$gop_name_gg>>'
  362. if rnd_caught_sister = 2 and pav_slut < 150:$rnd_caught_sister = '<<$rnd_rodnya_text>> your <<$rnd_namesis_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$rnd_telogg_text>>'
  363. if rnd_caught_sister = 2 and pav_slut >= 150:$rnd_caught_sister = '<<$rnd_rodnya_text>> your <<$rnd_namesis_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$rnd_telogg2_text>>'
  364. if rnd_caught_sister = 3:$rnd_caught_sister = '<<$rnd_rodnya_text>> your <<$rnd_namesis_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - I, pancake, run, I am looking for her everywhere... And her, turns, then fuck! The bell or something to hang neck, the next time it was easier to find you.
  365. Keys let, hole podzabornaya, but I forgot their homes... Okay, not yanking, she''ll. The purse? Yes, you take out the dick out of his mouth, When you ask seniors! In the pocket? Everything, I have already found... You will go to the bathroom - cleanse yourself after all the powder. I still do not have enough after you from the Holy Spirit to do abortions.'
  366. if rnd_caught_sister = 4 and pav_slut < 150:$rnd_caught_sister = '<<$rnd_rodnya_text>> your <<$rnd_namesis_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$gop_name_gg>>, Mom You Searched, and she''d fuck! You still long?
  367. - Oh, sister, very sweet ... More minutes 10 poebut and come.'
  368. if rnd_caught_sister = 4 and pav_slut >= 150:$rnd_caught_sister = '<<$rnd_rodnya_text>> your <<$rnd_namesis_text>>, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$gop_name_gg>>, You customer? long More? You get up early tomorrow.
  369. Sis refers to standing next to guys:
  370. - You fucked her already?
  371. - Nope, first just started'
  372. !----
  373. !Brother:
  374. rnd_caught_brother = rand(1,3)
  375. if rnd_caught_brother = 1 and momslut >= 1:$rnd_caught_brother = '<<$rnd_rodnya_text2>> your brother, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$rnd_namemom_text>> He asked me to tell you, What would you like finish, not forgotten <<$rnd_domdela_text>>'
  376. if rnd_caught_brother = 1 and momslut < 1:$rnd_caught_brother = '<<$rnd_rodnya_text2>> your brother, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - What are you a slut <<$gop_name_gg>>'
  377. if rnd_caught_brother = 2 and pav_slut < 150:$rnd_caught_brother = '<<$rnd_rodnya_text2>> your brother, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$rnd_telogg_text>>'
  378. if rnd_caught_brother = 2 and pav_slut >= 150:$rnd_caught_brother = '<<$rnd_rodnya_text2>> your brother, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$rnd_telogg2_text>>'
  379. if rnd_caught_brother = 3 and evgenQW >= 4 and pav_slut < 150:$rnd_caught_brother = '<<$rnd_rodnya_text2>> your brother, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$gop_name_gg>>, my pals just suck, so, and God knows who you give in pussy?
  380. - So they did not ask for. Ask - ladies even in pussy, even in the ass."'
  381. if rnd_caught_brother = 3 and evgenQW >= 4 and pav_slut >= 150:$rnd_caught_brother = '<<$rnd_rodnya_text2>> your brother, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$gop_name_gg>>, my pals just suck, so, and God knows who you give in pussy?
  382. - That I''m still going to give to your friends for free. Let rejoice, they suck for free.'
  383. !-----
  384. !Stepfather:
  385. rnd_caught_stepfather = rand(1,2)
  386. if rnd_caught_stepfather = 1 and momslut >= 1:$rnd_caught_stepfather = '<<$rnd_rodnya_text2>> your stepfather, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$rnd_namemom_text>> He asked me to tell you, What would you like finish, not forgotten <<$rnd_domdela_text>>'
  387. if rnd_caught_stepfather = 1 and momslut < 1:$rnd_caught_stepfather = '<<$rnd_rodnya_text2>> your stepfather, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - What are you a slut <<$gop_name_gg>>'
  388. if rnd_caught_stepfather = 2 and pav_slut < 150:$rnd_caught_stepfather = '<<$rnd_rodnya_text2>> your stepfather, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$rnd_telogg_text>>'
  389. if rnd_caught_stepfather = 2 and pav_slut >= 150:$rnd_caught_stepfather = '<<$rnd_rodnya_text2>> your stepfather, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$rnd_telogg2_text>>'
  390. !----------
  391. !Other NPCs:
  392. rnd_caught_othernpc = rand(1,13)
  393. if rnd_caught_othernpc = 1 and pav_slut < 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text2>> Misha, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$rnd_telogg_text>>'
  394. if rnd_caught_othernpc = 1 and pav_slut >= 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text2>> Misha, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$rnd_telogg2_text>>'
  395. if rnd_caught_othernpc = 2 and pav_slut < 150:$rnd_caught_othernpc = '<<$shulga_name_rnd>> passing by saw how you <<$gop_sextext3>>, He showed the thumb kid, saying: - "<<$rnd_telogg_text>>" and went on about his business'
  396. if rnd_caught_othernpc = 2 and pav_slut >= 150:$rnd_caught_othernpc = '<<$shulga_name_rnd>> passing by saw how you <<$gop_sextext3>>, kid showed his thumb and did not hide the smile told you: - "<<$rnd_telogg2_text>>" and went on about his business'
  397. if rnd_caught_othernpc = 3 and pav_slut < 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text>> aunt Luda, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$rnd_telogg_text>>'
  398. if rnd_caught_othernpc = 3 and pav_slut >= 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text>> aunt Luda, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: -"<<$rnd_telogg2_text>>"'
  399. if rnd_caught_othernpc = 4 and pav_slut < 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text>> Natasha Belova, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$rnd_telogg_text>>'
  400. if rnd_caught_othernpc = 4 and pav_slut >= 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text>> Natasha Belova, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$rnd_telogg2_text>>'
  401. if rnd_caught_othernpc = 5 and pav_slut < 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text>> Julia Milov, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$rnd_telogg_text>>'
  402. if rnd_caught_othernpc = 5 and pav_slut >= 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text>> Julia Milov, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$rnd_telogg2_text>>'
  403. if rnd_caught_othernpc = 6:$rnd_caught_othernpc = 'You notice the small boys, pin up each other, they clicked event on the phone, You vaguely heard them talking: - "Look! Look! Do not go there. In-he is there! Shit-aa!!! Take off, shoot more! Ohuet! Never before have not seen live, Bab <<$gop_sextext3>>!", "nor-hu-Well, I imagine!", "Here is a garrison cap!", "What, except in the ass , too, can be?", "Blockhead, there even shoved a hand up to the elbow. Heifers from this the bars. I have seen a photo of Myron", "persecuting!", "In arguing that the?"..."'
  404. if rnd_caught_othernpc = 7 and evgenQW < 4:$rnd_caught_othernpc = '<<$rnd_rodnya_text2>> Misha, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - "bah! What to .-eople! Apple from apple-tree, I look, far rolled away. straight, one-in-one: Tits apart, pussy wide open. And eyes are hitryuschie-hitryuschie... Come then to me: need to talk."'
  405. if rnd_caught_othernpc = 7 and evgenQW >= 4:$rnd_caught_othernpc = 'You noticed by passing friends brother, stopped and began to actively discuss your: - Fuck-dig! We-then her like a princess: Only in the mouth, thank you-please-bye. And she, turns, problyad that more. Yes finally fucked! We know before b, <<$gop_sextext3>> this would immediately pizdorvanku in Troy one wicket, as always , and we wanted. And then all - Swe-etochka... You''re not rub-Ships help us, yes?.. Everything-Well after my sister Kolyano. Older, in addition. Knights, fuck... Now - everything!... damn because, do not ask, they at once poked huyami? True Well, <<$gop_name_gg>>? Gee-s!!! nods! Ah, Well you are our pre--elest! Ohuet, lucky: Now there is a spermopriёmnik! See you later, pizdoproёbina. Prepare hollow! Let''s go to, Kolyano will please. He was a child at her obdrochilsya... Chur me in the ass first! And in the mouth three at once will? For a long time it was necessary to try. Feel free, fuck, offer, gentlemen fucking...'
  406. if rnd_caught_othernpc = 8:$rnd_caught_othernpc = 'To you approached the cleaning lady at the entrance: - So, Boys! unhook-ka for a moment from his toys. will go - Do not throw away the bottle, put on the windowsill. I ''ll take them myself later. And natsyutsyurniki not scattered everywhere here. Every day for you on the floor-buckets collect! Better - in general they do not remove: without them , and also you and your Kochanku will be pleased. Or purse them to her gently fold: let both finish, He picks up with their trophies. Hey! Hey!!! Mnogostanochnitsa!!! Swallow, on the floor instead of spits!!! Understood? That same train Suchilischa oblyamudovannaya! For every whore wipe - no health is not enough! And from the pussy to me here on the floor is not a siphon! And that very tongue licking will make!'
  407. if rnd_caught_othernpc = 9:$rnd_caught_othernpc = '<<$rnd_rodnya_text>> Aunt Luda: - "Hello, <<$gop_name_gg>>! How sex life? Just think about it, like only recently, so all of a girl-pripevochki in bows, blushing and stammering, the first time I''ve bought in a pharmacy pads. And now here all around his squelching wash basin, already heard from the street. Most have become big. And cancer is better not to stand, fool. Do you know, like whores from decent women differ? By ragged knees. Come for zelyonkoj, selling at half price, Mount onion"'
  408. if rnd_caught_othernpc = 10:$rnd_caught_othernpc = 'you noticed: mamma, walk with daughter, grabbing the arms - Unscrew, Do not Look. This girl simply did not listen to my mother, and therefore it is being punished. hear, Mom is now calling? Listen to mother, and will never be a, how is she.
  409. Turning to you: - The house could not stand up, Shalashovka?! I am sure this is where it is necessary to shake his mandischey?! Here, by the way, children walk!'
  410. if rnd_caught_othernpc = 11 and pav_slut < 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text2>> <<$shulga_name_rnd>>, I stopped and asked you: - <<$gop_name_gg>>, why the heck are you that you give drischam?
  411. - At all-I give all.'
  412. if rnd_caught_othernpc = 11 and pav_slut >= 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text2>> <<$shulga_name_rnd>>, I stopped and asked you: - <<$gop_name_gg>>, you have a session today that the charity-whether?
  413. - With a fright. I do not give strangers free.'
  414. if rnd_caught_othernpc = 12 and pav_slut < 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text2>> Misha, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$gop_name_gg>>, You have warmed, Respecting the old man can?
  415. - Uncle Misha, I like to finish here you come around!'
  416. if rnd_caught_othernpc = 12 and pav_slut >= 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text2>> Misha, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text2>>: - <<$gop_name_gg>>, You have warmed, Respecting the old man can?
  417. - Uncle Misha I''m late afternoon you ''ll drop, but only for free can suck, and in the pussy or in the ass for the coin.
  418. - Well , I will consider your proposal and I will wait for you in the evening!'
  419. if rnd_caught_othernpc = 13 and pav_slut < 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text>> aunt Luda, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$gop_name_gg>>, again dragged their Ñ‘barey! You can hear the whole staircase!
  420. - N''nm K.,, I can not silently.'
  421. if rnd_caught_othernpc = 13 and pav_slut >= 150:$rnd_caught_othernpc = '<<$rnd_rodnya_text>> aunt Luda, <<$rnd_viewgg_text>> <<$rnd_talkgg2_text>> <<$rnd_talkgg_text>>: - <<$gop_name_gg>>, you again tomorrow I plan to make!'
  422. !NPC choose which fuse years
  423. rnd_caughtgg_npc = rand(1,5)
  424. !mom
  425. if rnd_caughtgg_npc = 1:$rnd_caughtgg_npc = '<<$rnd_caught_mom>>'
  426. !different NPCs (Uncle Misha, Shulga, Aunt Luda , etc..d.)
  427. if rnd_caughtgg_npc = 2:$rnd_caughtgg_npc = '<<$rnd_caught_othernpc>>'
  428. !sister
  429. if rnd_caughtgg_npc = 3:$rnd_caughtgg_npc = '<<$rnd_caught_sister>>'
  430. !brother
  431. if rnd_caughtgg_npc = 4:$rnd_caughtgg_npc = '<<$rnd_caught_brother>>'
  432. !stepfather
  433. if rnd_caughtgg_npc = 5:$rnd_caughtgg_npc = '<<$rnd_caught_stepfather>>'
  434. !randomly palim years
  435. rnd_caughtgg_view = rand(0,100)
  436. if rnd_caughtgg_view < 50:$rnd_caughtgg_view = ''
  437. if rnd_caughtgg_view >= 50 and hour >= 0 and hour < 5:$rnd_caughtgg_view = ''
  438. if rnd_caughtgg_view >= 50 and hour >= 5 and hour <= 23:$rnd_caughtgg_view = '<br><font color = red><b><<$rnd_caughtgg_npc>></b></font>'
  439. '<<$rnd_caughtgg_view>>'
  440. }
  441. !If a whore years
  442. gg_whore_text = RAND(0,7)
  443. if gg_whore_text = 0:$gg_whore_text = 'slut'
  444. if gg_whore_text = 1:$gg_whore_text = 'prostitute'
  445. if gg_whore_text = 2:$gg_whore_text = 'whore'
  446. if gg_whore_text = 3:$gg_whore_text = 'Prostitute'
  447. if gg_whore_text = 4:$gg_whore_text = 'a woman of easy virtue'
  448. if gg_whore_text = 5:$gg_whore_text = 'Prostitute'
  449. if gg_whore_text = 6:$gg_whore_text = 'Shmarev'
  450. if gg_whore_text = 7:$gg_whore_text = 'Independent'
  451. !text of the appeal to the years, kid, etc..d.
  452. !Variations randomly named Vasily Shulgin
  453. shulga_name_rnd = RAND(0,1)
  454. if shulga_name_rnd = 0:$shulga_name_rnd = 'Shulga'
  455. if shulga_name_rnd = 1:$shulga_name_rnd = 'Vasily'
  456. gop_name_gg = RAND(0,1)
  457. if gop_name_gg = 0:$gop_name_gg = '<<$pcs_nickname>>'
  458. if gop_name_gg = 1:$gop_name_gg = '<<$pcs_nickname>>'
  459. gop_gg_name = RAND(0,30)
  460. if gop_gg_name = 0:$gop_gg_name = 'Shmarev'
  461. if gop_gg_name = 1:$gop_gg_name = 'davalka'
  462. if gop_gg_name = 2:$gop_gg_name = 'whore'
  463. if gop_gg_name = 3:$gop_gg_name = 'huesoska'
  464. if gop_gg_name = 4:$gop_gg_name = 'zaschekanka'
  465. if gop_gg_name = 5:$gop_gg_name = 'hole'
  466. if gop_gg_name = 6:$gop_gg_name = 'whore'
  467. if gop_gg_name = 7:$gop_gg_name = 'slut'
  468. if gop_gg_name = 8:$gop_gg_name = 'JUMPS'
  469. if gop_gg_name = 9:$gop_gg_name = 'bitch'
  470. if gop_gg_name = 10:$gop_gg_name = 'bitch'
  471. if gop_gg_name = 11:$gop_gg_name = 'total hole'
  472. if gop_gg_name = 12:$gop_gg_name = 'anal bitch'
  473. if gop_gg_name = 13:$gop_gg_name = 'vaflёrsha'
  474. if gop_gg_name = 14:$gop_gg_name = 'Our toys'
  475. if gop_gg_name = 15:$gop_gg_name = 'spermopriemnik'
  476. if gop_gg_name = 16:$gop_gg_name = 'poblyadushka'
  477. if gop_gg_name = 17:$gop_gg_name = 'free whore'
  478. if gop_gg_name = 18:$gop_gg_name = 'nipple'
  479. if gop_gg_name = 19:$gop_gg_name = '<<$pcs_nickname>>-sweetie'
  480. if gop_gg_name = 20:$gop_gg_name = 'promiscuous hole'
  481. if gop_gg_name = 21:$gop_gg_name = '<<$pcs_nickname>>-nymphet'
  482. if gop_gg_name = 22:$gop_gg_name = 'sasalka'
  483. if gop_gg_name = 23:$gop_gg_name = 'ebanashka'
  484. if gop_gg_name = 24:$gop_gg_name = 'trehdyrochnaya'
  485. if gop_gg_name = 25:$gop_gg_name = 'uptime davalka'
  486. if gop_gg_name = 26:$gop_gg_name = 'School davalka'
  487. if gop_gg_name = 27:$gop_gg_name = 'damn yard'
  488. if gop_gg_name = 28:$gop_gg_name = 'slut'
  489. if gop_gg_name = 29:$gop_gg_name = '<<$gnikname>>'
  490. if gop_gg_name = 30:$gop_gg_name = 'Svetlashka-ebanashka'
  491. gop_gg_name2 = RAND(1,11)
  492. if gop_gg_name2 = 1:$gop_gg_name2 = 'Shmarev'
  493. if gop_gg_name2 = 2:$gop_gg_name2 = 'davalka'
  494. if gop_gg_name2 = 3:$gop_gg_name2 = 'whore'
  495. if gop_gg_name2 = 4:$gop_gg_name2 = 'bitch'
  496. if gop_gg_name2 = 5:$gop_gg_name2 = 'problyad'
  497. if gop_gg_name2 = 6:$gop_gg_name2 = 'slut'
  498. if gop_gg_name2 = 7:$gop_gg_name2 = 'proshmandovka'
  499. if gop_gg_name2 = 8:$gop_gg_name2 = 'whore'
  500. if gop_gg_name2 = 9:$gop_gg_name2 = 'slut'
  501. if gop_gg_name2 = 10:$gop_gg_name2 = 'blyaduha'
  502. gop_text_npcr = RAND(1,4)
  503. if gop_text_npcr = 1:$gop_text_npcr = 'boys'
  504. if gop_text_npcr = 2:$gop_text_npcr = 'children'
  505. if gop_text_npcr = 3:$gop_text_npcr = 'sidekick'
  506. if gop_text_npcr = 4:$gop_text_npcr = 'drugany'
  507. gop_name_npc = RAND(1,3)
  508. if gop_name_npc = 1:$gop_name_npc = 'Bob' & $gop_ID_npc = 'A11'
  509. if gop_name_npc = 2:$gop_name_npc = 'Vitek' & $gop_ID_npc = 'A9'
  510. if gop_name_npc = 3:$gop_name_npc = 'Dan' & $gop_ID_npc = 'A10'
  511. gop_family_npc = RAND(1,3)
  512. if gop_family_npc = 1:$gop_family_npc = 'Shulga'
  513. if gop_family_npc = 2:$gop_family_npc = 'Kotov'
  514. if gop_family_npc = 3:$gop_family_npc = 'Ryzhov'
  515. gop_sextext1 = RAND(0,7)
  516. if gop_sextext1 = 0:$gop_sextext1 = 'polzovat'
  517. if gop_sextext1 = 1:$gop_sextext1 = 'to fuck'
  518. if gop_sextext1 = 2:$gop_sextext1 = 'fuck'
  519. if gop_sextext1 = 3:$gop_sextext1 = 'tear'
  520. if gop_sextext1 = 4:$gop_sextext1 = 'spire'
  521. if gop_sextext1 = 5:$gop_sextext1 = 'fuck'
  522. if gop_sextext1 = 6:$gop_sextext1 = 'dryuchit'
  523. if gop_sextext1 = 7:$gop_sextext1 = 'fuck'
  524. gop_sextext2 = RAND(0,7)
  525. if gop_sextext2 = 0:$gop_sextext2 = 'fucked'
  526. if gop_sextext2 = 1:$gop_sextext2 = 'flogged'
  527. if gop_sextext2 = 2:$gop_sextext2 = 'spire'
  528. if gop_sextext2 = 3:$gop_sextext2 = 'fucked'
  529. if gop_sextext2 = 4:$gop_sextext2 = 'twirled'
  530. if gop_sextext2 = 5:$gop_sextext2 = 'polzovali'
  531. if gop_sextext2 = 6:$gop_sextext2 = 'dryuchili'
  532. if gop_sextext2 = 7:$gop_sextext2 = 'fuck'
  533. gop_sextext3 = RAND(0,8)
  534. if gop_sextext3 = 0:$gop_sextext3 = 'have'
  535. if gop_sextext3 = 1:$gop_sextext3 = 'polzujut'
  536. if gop_sextext3 = 2:$gop_sextext3 = 'fuck'
  537. if gop_sextext3 = 3:$gop_sextext3 = 'fuck'
  538. if gop_sextext3 = 4:$gop_sextext3 = 'dryuchat'
  539. if gop_sextext3 = 5:$gop_sextext3 = 'used'
  540. if gop_sextext3 = 6:$gop_sextext3 = 'spire'
  541. if gop_sextext3 = 7:$gop_sextext3 = 'fleece'
  542. if gop_sextext3 = 8:$gop_sextext3 = 'fuck'
  543. gop_text3 = RAND(0,4)
  544. if gop_text3 = 0:$gop_text3 = 'touch'
  545. if gop_text3 = 1:$gop_text3 = 'matzo'
  546. if gop_text3 = 2:$gop_text3 = 'feel'
  547. if gop_text3 = 3:$gop_text3 = 'rumple'
  548. if gop_text3 = 4:$gop_text3 = 'iron'
  549. !Buhach
  550. gop_text_beer2 = RAND(0,9)
  551. if gop_text_beer2 = 0:$gop_text_beer2 = '<<$gop_name_npc>> I opened a new bottle of beer, I made a couple of sips and gave you. You become leisurely drink with the boys.'
  552. if gop_text_beer2 = 1:$gop_text_beer2 = '<<$gop_name_npc>> poured into an empty glass of beer and handed to you. You become leisurely drink with the boys.'
  553. if gop_text_beer2 = 2:$gop_text_beer2 = '<<$gop_name_npc>> I gave you a bottle of beer. You become breathless tilting it. <<$gop_family_npc>> He said loudly, "Alkashka-ebanashka".'
  554. if gop_text_beer2 = 3:$gop_text_beer2 = '<<$gop_name_npc>> He uncorked and gave you a bottle of beer. You eagerly her vylakali. <<$gop_text_npcr>> prihueli already by this turn.'
  555. if gop_text_beer2 = 4:$gop_text_beer2 = '<<$gop_name_npc>> I took a flask of beer, I poured into a glass and handed to you. You slowly imposingly lounging on a bench, thumping with goporyami.'
  556. if gop_text_beer2 = 5:$gop_text_beer2 = '<<$gop_name_npc>> I opened a bottle of beer and handed to you. You slowly drink small sips.'
  557. if gop_text_beer2 = 6:$gop_text_beer2 = '<<$gop_name_npc>> He uncorked a bottle of beer and gave you. You eagerly drained her and plopped down on the bench.'
  558. if gop_text_beer2 = 7:$gop_text_beer2 = '<<$gop_name_npc>> I took a sip of 2liter of beer and a flask gave you. You made a couple of sips and <<$gop_family_npc>> I took it from you.'
  559. if gop_text_beer2 = 8:$gop_text_beer2 = '<<$gop_name_npc>> He sipped from poltorashki and handed to you. You eagerly began to lap up the bottle... <<$gop_family_npc>> with words "fool us leave" You took a flask'
  560. if gop_text_beer2 = 9:$gop_text_beer2 = '-"On hold"- <<$gop_name_npc>> hands you a bottle of unfinished Zhiguli with a smile looks like you eagerly drink it. Your mood improves slightly.'
  561. gop_beer_drova = RAND (0,8)
  562. if gop_beer_drova = 0:$gop_beer_drova = '<<$gop_gg_name>>, all the beer vyzhrat!, Now let''s Fall in a pose <<$gop_sextext1>> will!'
  563. if gop_beer_drova = 1:$gop_beer_drova = 'All our beer vylakala <<$gop_gg_name>>, now pose stand up for working'
  564. if gop_beer_drova = 2:$gop_beer_drova = '<<$gop_name_gg>> Discontinued thump, Let''s Fall in posture!'
  565. if gop_beer_drova = 3:$gop_beer_drova = 'To fuck you <<$gop_name_gg>>-Alkashka, do not pour, and even so almost firewood, Let''s get up pose, <<$gop_sextext1>> will!'
  566. if gop_beer_drova = 4:$gop_beer_drova = 'Swells?, Now Fulfil: Prepare the Machine, posturing!'
  567. if gop_beer_drova = 5:$gop_beer_drova = 'Ale <<$gop_name_gg>>, all the beer vyzhrat <<$gop_gg_name>>, Let''s pose Rise, <<$gop_sextext1>> will!'
  568. if gop_beer_drova = 6:$gop_beer_drova = 'All <<$gop_name_gg>> freebie ended, Get up in the pose <<$gop_sextext1>> you''ll!'
  569. if gop_beer_drova = 7:$gop_beer_drova = '<<$gop_name_gg>>, You can still stand it?, Do not pour, Jam us for a beer plant, Let''s pose and Fulfil!'
  570. if gop_beer_drova = 8:$gop_beer_drova = 'At this rate, the wood will have to fuck, I do not like it. <<$gop_text_npcr>> Do not pour it over! <<$gop_name_gg>> strike a pose and show your machine'
  571. !Poses, harassment, etc..d.
  572. txt_sveta_obol = RAND(0,8)
  573. if txt_sveta_obol = 0:$txt_sveta_obol = 'seductive'
  574. if txt_sveta_obol = 1:$txt_sveta_obol = 'seductive'
  575. if txt_sveta_obol = 2:$txt_sveta_obol = 'goddamned'
  576. if txt_sveta_obol = 3:$txt_sveta_obol = 'charming'
  577. if txt_sveta_obol = 4:$txt_sveta_obol = 'attractive'
  578. if txt_sveta_obol = 5:$txt_sveta_obol = 'captivating'
  579. if txt_sveta_obol = 6:$txt_sveta_obol = 'enchanting'
  580. if txt_sveta_obol = 7:$txt_sveta_obol = 'pretty'
  581. if txt_sveta_obol = 8:$txt_sveta_obol = 'delightful'
  582. poza_gop_txt3 = RAND(0,7)
  583. if poza_gop_txt3 = 0:$poza_gop_txt3 = 'successfully'
  584. if poza_gop_txt3 = 1:$poza_gop_txt3 = 'sexually'
  585. if poza_gop_txt3 = 2:$poza_gop_txt3 = 'for fucking'
  586. if poza_gop_txt3 = 3:$poza_gop_txt3 = 'excitingly'
  587. if poza_gop_txt3 = 4:$poza_gop_txt3 = 'vulgarly'
  588. if poza_gop_txt3 = 5:$poza_gop_txt3 = 'handsomely'
  589. if poza_gop_txt3 = 6:$poza_gop_txt3 = 'good'
  590. if poza_gop_txt3 = 7:$poza_gop_txt3 = 'perfectly'
  591. poza_gop_txt2 = RAND(0,10)
  592. if poza_gop_txt2 = 0:$poza_gop_txt2 = 'Our excellent position <<$gop_gg_name>> had chosen a'
  593. if poza_gop_txt2 = 1:$poza_gop_txt2 = 'In our super position <<$gop_gg_name>> stood up, well done'
  594. if poza_gop_txt2 = 2:$poza_gop_txt2 = 'Ahuet <<$gop_gg_name>> stood up, I have already got'
  595. if poza_gop_txt2 = 3:$poza_gop_txt2 = '<<$poza_gop_txt3>> stood up, submissive <<$gop_gg_name>>'
  596. if poza_gop_txt2 = 4:$poza_gop_txt2 = '<<$gop_text_npcr>> See the machine ready'
  597. if poza_gop_txt2 = 5:$poza_gop_txt2 = 'CMotril like <<$poza_gop_txt3>> stood up, first-class <<$gop_gg_name>>'
  598. if poza_gop_txt2 = 6:$poza_gop_txt2 = 'CMotril like <<$poza_gop_txt3>> stood up <<$gop_name_gg>> our'
  599. if poza_gop_txt2 = 7:$poza_gop_txt2 = 'CMotril like <<$poza_gop_txt3>> got our <<$gop_name_gg>>'
  600. if poza_gop_txt2 = 8:$poza_gop_txt2 = 'Well <<$gop_gg_name>>, <<$poza_gop_txt3>> I stood in a pose'
  601. if poza_gop_txt2 = 9:$poza_gop_txt2 = 'Haha, <<$gop_gg_name>>, <<$poza_gop_txt3>> standing, Eye rejoices'
  602. if poza_gop_txt2 = 10:$poza_gop_txt2 = '<<$gop_name_gg>>, and I like your choice of posture, fellow deserved strong dick'
  603. poza_gop_txt = RAND(0,9)
  604. if poza_gop_txt = 0:$poza_gop_txt = 'Well <<$gop_text_npcr>> who will be her first <<$gop_sextext1>>?'
  605. if poza_gop_txt = 1:$poza_gop_txt = '<<$gop_text_npcr>> who was the first to this body <<$gop_sextext1>>?'
  606. if poza_gop_txt = 2:$poza_gop_txt = '<<$gop_text_npcr>> who was the first of its <<$gop_sextext1>> will be?'
  607. if poza_gop_txt = 3:$poza_gop_txt = 'Let''s <<$gop_text_npcr>> decide who it will serve first?'
  608. if poza_gop_txt = 4:$poza_gop_txt = '<<$gop_text_npcr>> We must decide whom she first served.'
  609. if poza_gop_txt = 5:$poza_gop_txt = '-"Maybe I was the first of its <<$gop_sextext1>> will?, for you <<$gop_text_npcr>> prepare, haha.", asks <<$gop_family_npc>>'
  610. if poza_gop_txt = 6:$poza_gop_txt = '<<$gop_text_npcr>>, Well, who is now her <<$gop_sextext1>> will be?'
  611. if poza_gop_txt = 7:$poza_gop_txt = '-"<<$gop_text_npcr>>, she can to start in my mouth will?", clarifies <<$gop_family_npc>>'
  612. if poza_gop_txt = 8:$poza_gop_txt = '<<$gop_family_npc>> speaks: -"<<$gop_text_npcr>>, let me first of its <<$gop_sextext1>> will?!.'
  613. if poza_gop_txt = 9:$poza_gop_txt = '-"<<$gop_text_npcr>>, I want her first <<$gop_sextext1>>, while it was still zashkvarena.", speaks <<$gop_family_npc>>'
  614. poza_txt = RAND(0,17)
  615. if poza_txt = 0:$poza_txt = 'You have chosen the most comfortable position.'
  616. if poza_txt = 1:$poza_txt = 'You thought this pose more <<$txt_sveta_obol>>.'
  617. if poza_txt = 2:$poza_txt = 'You stood in a comfortable position you. Which was also <<$txt_sveta_obol>>'
  618. if poza_txt = 3:$poza_txt = 'You have decided to get into this position. It was quite <<$txt_sveta_obol>>'
  619. if poza_txt = 4:$poza_txt = 'You wanted to get into such a position.'
  620. if poza_txt = 5:$poza_txt = 'You have chosen just such a goddamned posture and winked at the boys.'
  621. if poza_txt = 6:$poza_txt = 'You think and fell into such a position.'
  622. if poza_txt = 7:$poza_txt = 'Do you want to get into such a position. She was <<$txt_sveta_obol>>'
  623. if poza_txt = 8:$poza_txt = 'You dutifully stood in a pose. As you thought it was the most <<$txt_sveta_obol>>'
  624. if poza_txt = 9:$poza_txt = 'You calmly put the bottle and got up in a standard posture.'
  625. if poza_txt = 10:$poza_txt = 'You had to stand in a seductive pose and show all her charms.'
  626. if poza_txt = 11:$poza_txt = 'I do not think for a long time you decide to get up in the standard position for the occasion.'
  627. if poza_txt = 12:$poza_txt = 'Little thought you stood in a sexual pose.'
  628. if poza_txt = 13:$poza_txt = 'You are not thinking in what position they want what would you stand up and you thought that this posture will be more <<$txt_sveta_obol>>.'
  629. if poza_txt = 14:$poza_txt = 'You have decided not to think long and stood like this. Pose was <<$txt_sveta_obol>>'
  630. if poza_txt = 15:$poza_txt = 'For a long time to think you did not give and you get up to the standard position.'
  631. if poza_txt = 16:$poza_txt = 'You do not particularly like that-invent something and you chose the normal posture.'
  632. if poza_txt = 17:$poza_txt = 'You just wanted to get into this position. It seemed to you more <<$txt_sveta_obol>>'
  633. !===========================================================!
  634. !-------------!
  635. ! Text sex !
  636. !=============!
  637. !Cooney:
  638. $text_sex_cun = {
  639. txt_sex_cun = RAND(0,5)
  640. if txt_sex_cun = 0:$txt_sex_cun = 'You put his hand into his hair and pulled his head down. He kissed your pussy.
  641. You are more forward thrust out his pussy, and <<$boydesc>> She fell to her lips.
  642. - You know, it you beautiful.
  643. - I know, - You smiled.
  644. His tongue penetrated your pussy, pushing the sponge, and your moan gradual transition to cry.'
  645. if txt_sex_cun = 1:$txt_sex_cun = '<<$boydesc>> He leaned his face close to your pussy.
  646. - Like? - You ask.
  647. - Highly, - And he clung to your clitoris, caressing his tongue. Lick it good. Especially for his age. It was evident, not the first time that he puts his tongue into the bosom of the girl.
  648. - You''re a good lick. You train?
  649. - Sometimes, - He said with a smile.
  650. - Do you have a girlfriend?
  651. - No, - He answered occasionally interrupting the process.
  652. - And who are you learned?
  653. - There is a friend.
  654. - Do-at. I know her? It is at school?
  655. - No. I''ll tell you later.'
  656. if txt_sex_cun = 2:$txt_sex_cun = 'You lay on your back and spread his legs wide. <<$boydesc>> He pushed the edge of her panties and pressed to your pussy.
  657. He licked his lips and sucked, clitoris, and sometimes entered into the tongue, and you moan, clutching his head and clutching tightly to her wet pussy.'
  658. if txt_sex_cun = 3:$txt_sex_cun = '<<$boydesc>> put you on the back and fell to your treasure. He licked the clitoris, then inserted directly 2 a finger into your vagina and began potrahivat.
  659. We began to distribute squish, you moan, and <<$boydesc>> only accelerated motion.'
  660. if txt_sex_cun = 4:$txt_sex_cun = 'You arranged the legs to the side, giving his eyes a hidden pussy. Do not hesitate, <<$boydesc>> I began kissing your treasure.
  661. He walked the tongue on the clitoris, I reached the vagina, it turned out in full wet. How long have you ready for intercourse. So fuck could begin now.
  662. But <<$boydesc>> in no hurry. For a while he caressed your language, fingers, listening to your sweet moans. You all twisted, but nothing asked, just enjoy the moment.'
  663. if txt_sex_cun = 5:$txt_sex_cun = '- "<<$boydesc>>, lick my pussy", kindly ask you.
  664. - I am pleased to do it!, answers <<$boydesc>>, bringing his mouth to your pussy and begins to skillfully lick'
  665. '<<$txt_sex_cun>>'
  666. }
  667. !-------------------------
  668. !69:
  669. $text_sex_69 = {
  670. txt_sex_69 = RAND(0,1)
  671. if txt_sex_69 = 0:$txt_sex_69 = 'Your <<$liptalk3>> supple took his dick, passionately sucking it from all sides, like a chupa-Chups, They helped themselves tongue, which gently tickled bridle.
  672. <<$boydesc>> meanwhile, he grabbed his fingertips clitoris and gently squeezed it in between, language, meanwhile examining your hole, which it has long been ready to take a more...'
  673. if txt_sex_69 = 1:$txt_sex_69 = '<<$boydesc>> lay on his back, I take your foot and threw himself through so, that your ass is right in front of his face.
  674. By running your tongue between sexual sponges, he felt as you once again deepthroat his penis. Then, just loosen his grip began to lick his own <<$liptalk>>.'
  675. '<<$txt_sex_69>>'
  676. }
  677. !-------------------------
  678. !masturbation hands
  679. $text_sex_hj = {
  680. txt_sex_hj = RAND(0,3)
  681. if txt_sex_hj = 0:$txt_sex_hj = '<<$boydesc>> without talking stuck his dick in your face.
  682. - That''s on-manly, - Laughingly told you, taking dick in his hand and taking to masturbate.'
  683. if txt_sex_hj = 1:$txt_sex_hj = 'You took his penis with his hand, he grew in his eyes. You started it nadrachivat, admiring them.'
  684. if txt_sex_hj = 2:$txt_sex_hj = '<<$boydesc>> I put it in your hand member. You tentatively clamped resilient, plump little hand in trunk. He made you squeeze his hand is stronger.
  685. - "Do not let go... Move your hand up-down...", He disposed of, showing, how to do.
  686. - "Not so sharply... Like this. Do not pull... Yes, here. Good... Another... Another!"'
  687. if txt_sex_hj = 3:$txt_sex_hj = '<<$boydesc>> She asks him to masturbate, you take his dick in his hand and start to chase a skin-here.'
  688. '<<$txt_sex_hj>>'
  689. }
  690. !-------------------------
  691. !blow job
  692. $text_sex_bj = {
  693. txt_sex_bj = RAND(0,7)
  694. if txt_sex_bj = 0:$txt_sex_bj = 'You took his cock his <<$liptalk>>, and <<$boydesc>> I began to fuck you in the mouth.'
  695. if txt_sex_bj = 1:$txt_sex_bj = 'You took the cock in her mouth and began to suck. <<$boydesc>> grabbed hands behind your <<$hapri2>> <<$hair2>> and skewer your head on your dick.
  696. You swallowed a member, smacking, led by his hand, felt their <<$liptalk>> on it every vein and every bump.'
  697. if txt_sex_bj = 2:$txt_sex_bj = 'You wrapped around his dick and hand, nadrachivaya, took his <<$liptalk>> head in the mouth. Member of even more hardened and took impressive size.
  698. You have long learned to swallow pretty good dick, and since then it has always used.
  699. <<$boydesc>> I was delighted. With one hand you caressed his testicles, the other - led by a member of the hand, from time to time hold, to take it in your mouth completely.'
  700. if txt_sex_bj = 3:$txt_sex_bj = '<<$boydesc>> He said nothing, I took you for <<$hapri2>> <<$hair2>>, Tilt your head to its members. He started moving his pelvis, so fucking you in the mouth.'
  701. if txt_sex_bj = 4:$txt_sex_bj = '<<$boydesc>> I took you for <<$hapri2>> <<$hair2>> and begin to move your head to the beat of your movements. You coughed slightly, but continued to suck.'
  702. if txt_sex_bj = 5:$txt_sex_bj = 'You started licking his cock his tongue, then a little saliva typing, He took his own <<$liptalk>> and began to suck, helping his hand. '
  703. if txt_sex_bj = 6:$txt_sex_bj = 'Taking his dick in her mouth, his tongue caressed the side of his, the bottom, then the middle. Then squeezed <<$liptalk>> and began to drive faster to mouth-here.
  704. Released outside member, And look at his work, We enjoyed. The head became even harder, blush, brilliant.
  705. You have already languid ache in the lower abdomen. Member bent upward, and took language from eggs to head, Then from all sides, and dug his <<$liptalk>> its head. '
  706. if txt_sex_bj = 7:$txt_sex_bj = 'wet <<$liptalk>> gently grabs his dick, takes in the mouth, fumble his tongue, pat hand and squeezes his scrotum.
  707. It absorbs more and more, smacking, hearing, as your mouth water envelop his head. Caress the tongue, trёtes his head. <<$boydesc>> sweet moans. '
  708. '<<$txt_sex_bj>>'
  709. }
  710. !-------------------------
  711. !Deepthroating
  712. $text_sex_bjt = {
  713. txt_sex_bjt = RAND(0,2)
  714. if txt_sex_bjt = 0:$txt_sex_bjt = 'He put his dick deep into her throat to you though still squeezing his hand, your <<$liptalk3>> impacted his dick. You did not do him a blowjob, <<$boydesc>> You just had rough throat and both of you is a great pleasure.'
  715. if txt_sex_bjt = 1:$txt_sex_bjt = 'They tried their <<liptalk>> swallow it deeper. Again nadrachivat hand, and caressed his mouth. Then each times have more and more to absorb it into his mouth by the throat.
  716. You had tears in his eyes, but you still try to take a deeper. <<$boydesc>> I took you for <<$hapri2>> <<$hair2>> and began to play itself, pulling your head on a member.'
  717. if txt_sex_bjt = 2:$txt_sex_bjt = 'The head rested against the throat and penetrate deeper, but you could not stick it on - too thick it was.
  718. However, each time a couple of millimeters, little, but it prolizala deeper and deeper. According to your <<$liptalk2>> drooling dripped on the floor.'
  719. '<<$txt_sex_bjt>>'
  720. }
  721. !-------------------------
  722. !cancer pussy
  723. $text_sex_doggy = {
  724. txt_sex_doggy = RAND(0,6)
  725. if txt_sex_doggy = 0:$txt_sex_doggy = '<<$boydesc>> I was delighted with you. He jumped up, I put your cancer, She pulled up her skirt, open your ass prilesnuyu, and thrust member in the pussy from behind.
  726. You would not expect such drastic action, However, he fucked you ten minutes, almost without reducing the pace, occasionally stopping, to take a breath.
  727. You thought, he here-Now out of steam, but it turned out to be tougher, than expected. The last five minutes you forget, where you are, and shouted in all throat.
  728. <<$boydesc>> growling, one hand slapping on the ass, the other taking you for <<$hapri2>> <<$hair2>>.'
  729. if txt_sex_doggy = 1:$txt_sex_doggy = '<<$boydesc>> I nadrochil his penis and you planted it. You took podmahivat backwards. He slipped inside you, you rested in the womb.
  730. You flex your back, and he grasped the hands stronger your ass and started to fuck more.'
  731. if txt_sex_doggy = 2:$txt_sex_doggy = 'You panting standing cancer and diligently podmahivat popochkoy. <<$boydesc>> I was pulled back and you like a dog ssuchku.
  732. Rough hands <<$boydesc>> squeezing your ass helping her to sit down deep on his petrified trunk.
  733. You moan with pleasure, Your ass is rapidly moving towards this delicious and insatiable trunk.
  734. <<$boydesc>> He raised his hand and with a sling slapped you on the ass.
  735. - "Good for, slut, Well ka still napoddat popochkoy. Come on honey, nimble-play", sentenced <<$boydesc>> slapping you that one then the other arm.'
  736. if txt_sex_doggy = 3:$txt_sex_doggy = '<<$boydesc>> I put you in a pose cancer and stood behind you. Then he abruptly shoved a dick, came rudely and abruptly one push, your wet pussy.
  737. You twitched and screamed from penetrating and sharp pain, but remained obediently standing cancer.
  738. He began to rigidly stick you at the root, He drove into you because your number, as if trying to drive him deeper and deeper with each thrust.
  739. He furiously fucked her classmate, holding with one hand <<$hapri2>> <<$hair2>>. Motion <<$boydesc>> were sharp and strong.
  740. The silence cut through loud slaps. His hips with force strikes the elastic ass whore, which at this moment groaned through clenched teeth.'
  741. if txt_sex_doggy = 4:$txt_sex_doggy = '- Get down on the floor and stand on all fours, my sweety.
  742. You irrevocably submit to, got cancer on all fours. Did you like, when you fuck in this position.
  743. - "<<$pcs_nickname>> rotted back, and his head dipped below".
  744. - "Yes, <<$boydesc>>", cCasali excited voice and more arched back and lowered his head.
  745. Your ass ridden even higher, and Pussy became closer and more accessible, that really enjoyed it.
  746. <<$boydesc>> He sank to the floor and spread her legs apart, settling between them on the knees. Then, it is widely spread her buttocks, slowly ran member of the wet pussy, planted deep.
  747. - Mmm... AAAA... mmmm, you moan.
  748. <<$boydesc>> I put both hands on her ass and slid his cock pleasure in her pussy.'
  749. if txt_sex_doggy = 5:$txt_sex_doggy = '<<$boydesc>> She is holding her by the waist and fucked, gradually increasing the tempo, You podmahivat hard and moaning with pleasure, and a desire to please him.
  750. Your breasts swayed, and luscious pink nipples-cherry sexy sticking. You felt, as a major member of the filling and bursting with nice wall pussy, it goes out completely, freeing it.
  751. Now you feel whore, but you like it.'
  752. if txt_sex_doggy = 6:$txt_sex_doggy = '<<$boydesc>> You turned and put the cancer, and began unceremoniously to fuck your pussy. Spanking became louder and louder.
  753. He shone his shoulders and back, fingers dug into the ass, and the impact became even stronger and shorter, <<$boydesc>> I am not fully pulled out a member of the pussy, but only slightly-slightly.
  754. And all his cock was in you, and hollowed, and hollowed, not going to stop.'
  755. '<<$txt_sex_doggy>>'
  756. }
  757. !-------------------------
  758. !cancer in the ass
  759. $text_sex_doggy_anal = {
  760. txt_sex_doggy_anal = RAND(0,8)
  761. if txt_sex_doggy_anal = 0:$txt_sex_doggy_anal = '<<$boydesc>> I put a dick to your anus and drove it into the narrow hole with one push on the eggs. You had only to twitch and «oyknut», when his big dick pierced your ass.
  762. After a couple of minutes, you''re used to and started to moan: - Mmm... daaaaa... gluuuuubzhe... mmmm...
  763. He grabbed you by the waist and began to peck, increasing the tempo. You diligently podmahivat, I am wanting to get even deeper in his gun. You were incredibly excited and happy to give him.'
  764. if txt_sex_doggy_anal = 1:$txt_sex_doggy_anal = '<<$boydesc>> He knelt between her legs and drives the his dick for the most eggs, and you were standing on all fours with her ass raised high and the beat podmahivala, moaning pleasure.
  765. These moans even more wound up her stud. He fucked her parched throat sometimes uttering what is moaning.
  766. - You have a big and beautiful ass, <<$pcs_nickname>>..., without changing the tempo he said.
  767. - Mmmm... daaaaa... daaaaaa... stronger and deeper... Mmmm... What did you get big... mmmm..., cooed you.'
  768. if txt_sex_doggy_anal = 2:$txt_sex_doggy_anal = '- I miss your ass elastic, baby. And now, I will fuck you in the ass, my sweet bitch.
  769. You feel, that he is already a member and pressed against your ass.
  770. <<$boydesc>> I spit in his palm, He smeared head and put a prick your anus. He started slowly and gently introduce your dick in the ass.
  771. When dick went the entire length <<$boydesc>> She began to move her hips, holding your waist.
  772. You moaned and started podmahivat, spitted his point on his big dick.'
  773. if txt_sex_doggy_anal = 3:$txt_sex_doggy_anal = '<<$boydesc>> member put his head to a narrow hole and pressed. Sphincter without much resistance do not let him in a small dick in your ass.
  774. He took you for hips and quickly began to fuck in the ass. You screamed at every jolt, he liked it and he did his job faster and faster.
  775. He felt a-the animal feeling, he wanted, that you cried louder and more incessantly. <<$boydesc>> I thrust you to the very end, so that the eggs being hit on your crotch.'
  776. if txt_sex_doggy_anal = 4:$txt_sex_doggy_anal = '<<$boydesc>> put you on your knees, and he fell in behind. With one hand holding you in the ass, second hand directed his eldu, to your point.
  777. It was evident, you loved it. He gripped you in the ass, and he twitched his body forward-back with such force, that had some flip flops-then furiously, and both voiced and unvoiced.
  778. And so quickly: swing, blow, swing, blow. He began to pull you: when he went to the full depth, hands attracted your ass, and it took place on a wave of his punches.'
  779. if txt_sex_doggy_anal = 5:$txt_sex_doggy_anal = '<<$boydesc>> I dragged you along. You proved to be kneeling, based on the elbows. Understood, now it will go into you.
  780. He rubbed his penis against your ass and pressed. It was a little painful, but the desire of pleasure took up.
  781. <<$boydesc>> enters into you, faster. Your ass accustomed and develop, I have no problem letting.'
  782. if txt_sex_doggy_anal = 6:$txt_sex_doggy_anal = 'You stand cancer, your ass in his hands, and his cock fully in your anal hole, while you breathe hard and have fun.
  783. You want, that <<$boydesc>> I was all in you, and make you feel whole ass all his punches, to its members I went to take you there-here, that on your ass by a wave of his penetration, and that it was pulling you as the last whore.'
  784. if txt_sex_doggy_anal = 7:$txt_sex_doggy_anal = '<<$boydesc>> firmly hold your ass, its already hard member of your fucking point. He firmly and with all his might play as a member.
  785. Worse, even stronger, helping himself with his hands to pull your ass elastic self. Your butt will not hurt, and gave a nice little itch, and you feel that-something hot and elastic in itself, that penetrated deeper and deeper, and where-there was lost.'
  786. if txt_sex_doggy_anal = 8:$txt_sex_doggy_anal = '<<$boydesc>> made you crustaceans, and he rubbed his head, I began to grind his cock in you. Your ass was ready, developed.
  787. His cock was completely in your hole, and <<$boydesc>> I began rigidly fuck you. Blow, blow, Another blow, slap. Member went there-here. Waves of his punches missed on your ass, chest walked shaking, head shuddered in time with his strokes.
  788. And from your lips flew moan of pleasure. You last strength tried to keep, I tried to resist his furious onslaught and this swotting.
  789. In the eyes of all swam, and flashed what-the multi-colored shadows and patterns. <<$boydesc>> monotone and strongly fuck you, squeezing your ass.'
  790. '<<$txt_sex_doggy_anal>>'
  791. }
  792. !-------------------------
  793. !from above
  794. $text_sex_cow = {
  795. txt_sex_cow = RAND(0,2)
  796. if txt_sex_cow = 0:$txt_sex_cow = '<<$boydesc>> I sat on the sofa, You sat down on his dick. Your current voluptuous pussy eagerly grabbed his penis and swallowed a.
  797. You are actively began to move backwards, bouncing on his dick. You fucked, closing his eyes and forgetting about everything.'
  798. if txt_sex_cow = 1:$txt_sex_cow = 'You sat on him and inserted into your pussy dick until it stops.
  799. - "Oh my God, how cool" - And you have exhaled, slightly twisting the hips, start up and down on his penis.
  800. You have to move even faster, a couple of minutes you are tired of such jumps and started slowly rose and fell on his penis.
  801. <<$boydesc>> I grabbed your ass and began to set the pace, moving towards you.'
  802. if txt_sex_cow = 2:$txt_sex_cow = 'You threw a leg over and sat astride a member, We jumped on it. Fucking him, you occasionally leans in to kiss.
  803. And your breasts touched his. After a-While your legs are stronger compress it, You pressed tightly to his groin, trying harder to spread on a member.'
  804. '<<$txt_sex_cow>>'
  805. }
  806. !-------------------------
  807. !top anal
  808. $text_sex_cow_anal = {
  809. txt_sex_cow_anal = RAND(0,0)
  810. if txt_sex_cow_anal = 0:$txt_sex_cow_anal = 'You legs buckled under him, the better to control the height. Then got up and slowly lowered again, I am trying to sit her ass on dick <<$boydesc>> .
  811. Throughout the process, you feel, your ass a little accustomed to the member, there was no pain. You will not notice, both began to sit deeper and deeper.'
  812. '<<$txt_sex_cow_anal>>'
  813. }
  814. !-------------------------
  815. !missionary
  816. $text_sex_miss = {
  817. txt_sex_miss = RAND(0,5)
  818. if txt_sex_miss = 0:$txt_sex_miss = '<<$boydesc>> oetc.oYou threw Mr.a back and stegsya St.epxy. PareHb Pristromoyl goloUWC ino RinoDo fferka nadaFork. You moMNo PDMoand hnuli obnyali ego iroditsy Mr.oLCDaE.
  819. He is inowel do yora and began oArticleorowoho Moveatsya, cloHVo boYas cause you bol. Your pussy wasa mocraI am inside, a eue WellapkaI, toato claimeGrigorievich. You are with him in UNISon Motor startedatsya, haformer obo Sun.em na St.ete.'
  820. if txt_sex_miss = 1:$txt_sex_miss = 'You could not stand it and said,: -"Come on, Come into my lustful schёlku", He turned over on his back and legs apart invitingly.
  821. He did not need to ask twice. <<$boydesc>> immediately lay on top, and he plunged his cock into the wet pussy.
  822. You are here as much around his feet, as feared, his phallus you leave.
  823. <<$boydesc>> I began a rhythmic motion, gradually speeding up the pace, and you are actively podmahivat.
  824. And loud moaning and screams, especially when he introduced his penis deep into your squelching slit. '
  825. if txt_sex_miss = 2:$txt_sex_miss = '<<$boydesc>> put you on your back, apart basin your feet to the side and lay down on your stomach. With a heavy sigh, he got into you, looking at, as a member of the rapidly penetrates into you, gently pushing the labia.
  826. The elastic walls of the vagina gently enveloped member, a tightening. He rested his hands in bed, navisnuv over you, looking face, and you did not take his eyes off.
  827. You were quite experienced, despite his age. You impacted beneath his feet, when he came in you, to further encourage member has their hips.
  828. With great pleasure, he moved tart member of it, tightly grasped her hips.'
  829. if txt_sex_miss = 3:$txt_sex_miss = 'His cock, like a mad bull tossed in your pussy, you feel his strong body, as <<$boydesc>> his body is literally stamped your gentle bosom.
  830. Then he like-then stiffened, I became, at all, ceaselessly hammer you, He became a member of what-the Fiery.'
  831. if txt_sex_miss = 4:$txt_sex_miss = 'You lay on your back, <<$boydesc>> I began to drive along the bare head of sexual sponges. You were very tickled, when he rubbed against your clitoris for.
  832. Then, when visiting the vagina, I began to sink to slightly more, do several aftershocks, then he went out and up.
  833. Gradually increased depth of dive, and it was already almost full bang.
  834. Truth, position is not very convenient. But you can see the whole body moaning partner. A look at what.
  835. Suddenly you groaned: - "Yet... Yet... Come on".'
  836. if txt_sex_miss = 5:$txt_sex_miss = 'Lubricants enough and his cock slid easily into your pussy. You felt as the head pushes the inner wall of the vagina. From each penetration you moaning.
  837. In a minute, little accustomed you put your hands on his buttocks and began to set the pace.
  838. - Yet, More - whispers you, disruptions in postanyvaniya and throwing his head back.
  839. <<$boydesc>> did not hold back in the next jolt came in you so deeply, your pubic touched. Your breath through his teeth were frequent and profound.
  840. After a-that time <<$boydesc>> frankly you have fucked. In turn, you are clutching at his back and moaning monotonously.'
  841. '<<$txt_sex_miss>>'
  842. }
  843. !-------------------------
  844. !missionary anal
  845. $text_sex_miss_anal = {
  846. txt_sex_miss_anal = RAND(0,1)
  847. if txt_sex_miss_anal = 0:$txt_sex_miss_anal = '<<$boydesc>> oetc.oYou threw Mr.a back and stegsya St.epxy. PareHb Pristromoyl goloUWC ino RinoDo fferka nadaFork. You moMNo PDMoand hnuli obnyali ego iroditsy Mr.oLCDaE.
  848. He is inowel do yora and began oArticleorowoho Moveatsya, cloHVo boYas cause you bol. Your ass wasa WellapkaI, toato claimeGrigorievich. You are with him in UNISon Motor startedatsya, haformer obo Sun.em na St.ete.'
  849. if txt_sex_miss_anal = 1:$txt_sex_miss_anal = 'You could not stand it and said,: -"Come on , Come into my lustful ass", He turned over on his back and legs apart invitingly.'
  850. '<<$txt_sex_miss_anal>>'
  851. }
  852. !-------------------------
  853. !cancer of the vagina
  854. $text_sex_sideways = {
  855. txt_sex_sideways = RAND(0,1)
  856. if txt_sex_sideways = 0:$txt_sex_sideways = ''
  857. if txt_sex_sideways = 1:$txt_sex_sideways = ''
  858. '<<$txt_sex_sideways>>'
  859. }
  860. !-------------------------
  861. !anal cancer
  862. $text_sex_sideways_anal = {
  863. txt_sex_sideways_anal = RAND(0,1)
  864. if txt_sex_sideways_anal = 0:$txt_sex_sideways_anal = ''
  865. if txt_sex_sideways_anal = 1:$txt_sex_sideways_anal = ''
  866. '<<$txt_sex_sideways_anal>>'
  867. }
  868. !-----------!
  869. ! ending !
  870. !===========!
  871. $text_sex_cumm = {
  872. !into his mouth
  873. txt_sex_cumm = RAND(0,2)
  874. if txt_sex_cumm = 0:$txt_sex_cumm = '<<$boydesc>> quickly he pulled out his penis and put it in your mouth, You do not even have time to utter a word. His cum hit you in the throat, you instinctively clung tightly to him.
  875. He graduated and finished in large chunks, you swallow, yet-still stood out in the corners of his mouth surplus.'
  876. if txt_sex_cumm = 1:$txt_sex_cumm = 'You eagerly clung to the member, and suck it with relish, till <<$boydesc>> not poured into your mouth portion of sperm.'
  877. if txt_sex_cumm = 2:$txt_sex_cumm = 'You swallowed it Member, tongue caressed his testicles and semen poured on warm throbbing cock right into your mouth.'
  878. '<<$txt_sex_cumm>>'
  879. }
  880. !on the face
  881. $text_sex_cumface = {
  882. txt_sex_cumface = RAND(0,3)
  883. if txt_sex_cumface = 0:$txt_sex_cumface = '<<$boydesc>> I filled in all your face with his sperm.'
  884. if txt_sex_cumface = 1:$txt_sex_cumface = '<<$boydesc>> He pulled out and went down on her face. She saw close before him spitting cum samagnifying glass and felt, how to appear on the face hot, viscous droplets and begin to flow to the chin and drip to the floor.'
  885. if txt_sex_cumface = 2:$txt_sex_cumface = ' - "A, fuck!", cried <<$boydesc>>, Breaking dick sweet girl''s captivity, and taking it into their own hands.
  886. The first long jet momentarily flashed in the air. You squinted, a trickle of sperm, hooking your chin, drew a cheek. The second salvo he prudently sent directly into your face so, you barely have time to cover his eyes. That eruption was enough, all face was covered with liquid.'
  887. if txt_sex_cumface = 3:$txt_sex_cumface = '<<$boydesc>> moved by a dick in your face. And at the same moment viscous jet hit you right in your <<$liptalk3>>. Brooks semen running down her chin, dripping on the floor. On the face minetchitsa beard hung down entire spermyanaya! But this <<$boydesc>> I saw a little bit later, and while he was, deliriously squeezing out the last drop of sperm. '
  888. '<<$txt_sex_cumface>>'
  889. }
  890. !on the body
  891. $text_sex_cumbody = {
  892. txt_sex_cumbody = RAND(0,1)
  893. if txt_sex_cumbody = 0:$txt_sex_cumbody = 'Just a minute, barely having time to pull out your dick, <<$boydesc>> I finished on your chest, of the sperm got to the face.'
  894. if txt_sex_cumbody = 1:$txt_sex_cumbody = '<<$boydesc>> He led by a member of your tummy and finished, It was so hot from its members and from sperm.'
  895. '<<$txt_sex_cumbody>>'
  896. }
  897. !pussy
  898. $text_sex_cumvag = {
  899. txt_sex_cumvag = RAND(0,3)
  900. if txt_sex_cumvag = 0:$txt_sex_cumvag = 'After a-While you feel, that <<$boydesc>> increased and so furious pace and wheezed. He finished, and being very violently.
  901. Felt, you sprinkle in sperm, of the jet stream. When <<$boydesc>> I pulled the dick out of your pussy, vytikayuschimi sperm beginning of it.'
  902. if txt_sex_cumvag = 1:$txt_sex_cumvag = 'After a-that time <<$boydesc>> I feel, as your pussy start to shrink and pulsate, and you groaned louder and sensuality...podmahivat violently and moaning.
  903. He grabbed you stronger and began to peck even more intensively and in a few minutes reached the peak of pleasure.
  904. <<$boydesc>> I finished right you pussy. You felt, his sperm fills your pussy...'
  905. if txt_sex_cumvag = 2:$txt_sex_cumvag = 'Suddenly you have strained muscles of the vagina, and <<$boydesc>> I felt inside was much more closely. From this it is no longer able to hold back and began to finish right in your pussy.
  906. You tensing of the vaginal wall, milked sperm from his penis.'
  907. if txt_sex_cumvag = 3:$txt_sex_cumvag = '<<$boydesc>> a stronger pulled you over to her waist. Not letting a member out. Inside was a hurricane, his penis is squeezed, released the pulsating movement.
  908. From-for your skillful actions, compressive movements...orgasm was on so strong, that he came to you in the pussy at least thirty seconds.'
  909. '<<$txt_sex_cumvag>>'
  910. }
  911. !in the ass
  912. $text_sex_cumass = {
  913. txt_sex_cumass = RAND(0,1)
  914. if txt_sex_cumass = 0:$txt_sex_cumass = '<<$boydesc>> you put your dick in the ass - though not all, but only the head.
  915. And he began to masturbate his penis, leaving the head inside you, and after a-While poured you in the ass huge dose of semen, who flock to you in the legs and dripping on the floor.'
  916. if txt_sex_cumass = 1:$txt_sex_cumass = '<<$boydesc>> I began to cum in your ass, his sperm burned and melted in your ass.
  917. He tried to drive his cock deeper, When I finished with the strength to press on your ass body.'
  918. '<<$txt_sex_cumass>>'
  919. }
  920. !----------------------!
  921. ! SEX SG /u0026 CO !
  922. !======================!
  923. !choice with whom to fuck:
  924. if $ARGS[0] = 'gopsex_select':
  925. cls
  926. gop_sex_lubri = 0
  927. gop_groupsex_lubri = 0
  928. gs 'gopsex', 'settings'
  929. gs'stat'
  930. if pcs_horny <50 and PCloStyle ! 4: '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/body/b'+rand(1,17)+'.jpg"></center> <br> You want sex.'
  931. if pcs_horny >=50 and PCloStyle ! 4: '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/body/g'+rand(1,20)+'.jpg"></center> <br> You overexcited and strongly want to fuck.'
  932. if PCloStyle = 4: '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/body/h'+rand(1,17)+'.jpg"></center>'
  933. act 'Have sex with Vaska':
  934. if shgopsex_vasya_count <= 0:
  935. cla
  936. 'Bob says: -"<<$gop_name_gg>> Jam has me, sex is enough for today, do not bother."'
  937. act 'Leave': gt 'shulga_room', 'start'
  938. else
  939. $gopsex_name_npc = 'A11'
  940. $gopsex_n_npc = 1
  941. shgopsex_vasya_day = daystart
  942. shgopsex_vasya_count -= 1
  943. if npcSex[11] = 0:npcSex[11] = 1 & guy += 1
  944. gs 'gopsex', 'shgopsex'
  945. end
  946. end
  947. if week < 6 and hour >= 0 and hour < 3:
  948. act 'Have sex with Dan':
  949. if shgopsex_den_count <= 0:
  950. cla
  951. 'Dan says: -"Here you <<$gop_gg_name>> Jam me today, fuck off."'
  952. act 'Leave': gt 'shulga_room', 'start'
  953. else
  954. $gopsex_name_npc = 'A10'
  955. $gopsex_n_npc = 0
  956. shgopsex_den_day = daystart
  957. shgopsex_den_count -= 1
  958. if npcSex[10] = 0:npcSex[10] = 1 & guy += 1
  959. gs 'gopsex', 'shgopsex'
  960. end
  961. end
  962. act 'Sex with Vityok':
  963. if shgopsex_vitya_count <= 0:
  964. cla
  965. 'Vitek says: -"Sorry <<$gop_name_gg>>, more today will not be able."'
  966. act 'Leave': gt 'shulga_room', 'start'
  967. else
  968. $gopsex_name_npc = 'A9'
  969. $gopsex_n_npc = 2
  970. shgopsex_vitya_day = daystart
  971. shgopsex_vitya_count -= 1
  972. if npcSex[9] = 0:npcSex[9] = 1 & guy += 1
  973. gs 'gopsex', 'shgopsex'
  974. end
  975. end
  976. if pav_slut >= 75 and (alko >= 3 and shgopsex_gr_count > 0) or (pcs_horny >= 50 and shgopsex_gr_count > 0):
  977. act 'Participate in group sex':
  978. shgopsex_gr_day = daystart
  979. shgopsex_gr_count -= 1
  980. if npcSex[10] = 0:npcSex[10] = 1 & guy += 1
  981. if npcSex[11] = 0:npcSex[11] = 1 & guy += 1
  982. if npcSex[9] = 0:npcSex[9] = 1 & guy += 1
  983. gs 'gopsex', 'shgopsex_group'
  984. end
  985. end
  986. end
  987. act 'Leave': gt 'shulga_room', 'start'
  988. end
  989. !===========================================================!
  990. !Sex 1 on 1!
  991. !===========!
  992. !sex selection!
  993. if $ARGS[0] = 'shgopsex':
  994. cla
  995. gs 'boyStat', $gop_ID_npc
  996. sexpartkno = 1
  997. gs'stat'
  998. '"Well, what <<$boydesc>> like me <<$gop_sextext1>> budesh?. What do I do for you?", playfully ask you.'
  999. if mesec > 0:
  1000. '<font color = red><b>You warn them that you''re on your period and so your pussy is off limits!</b></font>'
  1001. elseif mesec <=0 and pcs_vag <=0:
  1002. '<font color = red><b>You tell them that you are saving her virginity, so no pussy for them.</b></font>'
  1003. end
  1004. act 'Masturbate': gt 'gopsex', 'shgopsex_hj'
  1005. act 'In the mouth': gt 'gopsex', 'shgopsex_bj'
  1006. if pcs_throat >= 20:
  1007. act 'Deep in her mouth': gt 'gopsex', 'shgopsex_throat'
  1008. end
  1009. if mesec <=0 and pcs_vag >=1:
  1010. act 'The pussy': gt 'gopsex', 'shgopsex_vag'
  1011. end
  1012. act 'In the ass': gt 'gopsex', 'shgopsex_anal'
  1013. act 'Pomatsat chest': gt 'gopsex', 'shgopsex_tits'
  1014. if mesec <=0:
  1015. act 'Mutual affection': gt 'gopsex', 'shgopsex_69'
  1016. act 'Get lick': gt 'gopsex', 'shgopsex_lick'
  1017. end
  1018. if pcs_dom >= 5:
  1019. act 'Leave': gt 'shulga_room', 'start'
  1020. end
  1021. end
  1022. !ending sex
  1023. if $ARGS[0] = 'shgopsex_end':
  1024. cla
  1025. gs'stat'
  1026. if sh_bjandhj_cum >=1:
  1027. act 'In the mouth': dynamic $shgopsex_swallow
  1028. act 'On the face': dynamic $shgopsex_cumface
  1029. act 'On the body': dynamic $shgopsex_cumbelly
  1030. !we finish anywhere
  1031. elseif sh_bjandhj_cum <=0:
  1032. act 'In the mouth': dynamic $shgopsex_swallow
  1033. act 'On the face': dynamic $shgopsex_cumface
  1034. act 'On the body': dynamic $shgopsex_cumbelly
  1035. act 'The pussy': dynamic $shgopsex_cumvag
  1036. act 'In the ass': dynamic $shgopsex_cumanal
  1037. end
  1038. end
  1039. !===============================================================!
  1040. !lick years
  1041. if $ARGS[0] = 'shgopsex_lick':
  1042. cls
  1043. minut += 1
  1044. gs'stat'
  1045. !Vasya (NPC 1)
  1046. if $gopsex_n_npc = 1:
  1047. if pav_slut >= 100:
  1048. '<<$gop_name_gg>> You have <<$gnikname>>, I zapadlo a babe pussy licking, dick knows how many there are today visited cocks. So go ahead, substitute your whorish holes, I am going to fuck!'
  1049. elseif pav_slut < 100:
  1050. pcs_horny += 10
  1051. minut += ''+rand(3,7)+''
  1052. dynamic $ind_stamina_npc
  1053. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/lick/lick'+rand(1,11)+'.jpg"></center>'
  1054. dynamic $text_sex_cun
  1055. end
  1056. end
  1057. !Vitya (NPC 2)
  1058. if $gopsex_n_npc = 2:
  1059. if pav_slut >= 100:
  1060. '<<$gop_name_gg>> You have <<$gnikname>>, I zapadlo a babe pussy licking, dick knows how many there are today visited cocks. So go ahead, better substitute your whorish holes!'
  1061. elseif pav_slut < 100:
  1062. pcs_horny += 10
  1063. minut += ''+rand(3,7)+''
  1064. dynamic $ind_stamina_npc
  1065. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/lick/lick'+rand(1,11)+'.jpg"></center>'
  1066. dynamic $text_sex_cun
  1067. gs 'gopsex', 'gg_sex_orgasm'
  1068. end
  1069. end
  1070. !Dan (NPC 0)
  1071. if $gopsex_n_npc = 0:
  1072. '- "Dan, lick my pussy", kindly ask you.'
  1073. '- <<$gop_name_gg>>, and if you do not ahuela, I propose a?'
  1074. '- And what''s wrong with that?, zapadlo you do me nicely?'
  1075. '- Yes, I zapadlo davalki pussy licking, dick knows how many there are today visited cocks... So go ahead, do not fuck my brain, substitute your whorish holes, I am going to fuck!'
  1076. end
  1077. act 'Sex selection': gt 'gopsex', 'shgopsex'
  1078. end
  1079. !mutual affection, posture 69
  1080. if $ARGS[0] = 'shgopsex_69':
  1081. cls
  1082. minut += 1
  1083. gs'stat'
  1084. if $gopsex_n_npc >= 1:
  1085. if pav_slut >= 100:
  1086. '<<$gop_name_gg>> You have <<$gnikname>>, I zapadlo a babe pussy licking, dick knows how many there are today visited cocks. So go ahead, better substitute your whorish holes!'
  1087. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1088. elseif pav_slut < 100:
  1089. pcs_horny += 10
  1090. minut += ''+rand(3,7)+''
  1091. shgopsex_count -= 1
  1092. sh_bjandhj_cum = 1
  1093. dynamic $ind_stamina_npc
  1094. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/lick/69_'+rand(1,3)+'.jpg"></center>'
  1095. dynamic $text_sex_69
  1096. gs 'gopsex', 'gg_sex_orgasm'
  1097. dynamic $npc_orgasm
  1098. if shgopsex_count > 0:
  1099. act 'Sex selection': gt 'gopsex', 'shgopsex'
  1100. elseif shgopsex_count = 0:
  1101. gs 'gopsex', 'shgopsex_end'
  1102. end
  1103. end
  1104. elseif $gopsex_n_npc = 0:
  1105. '- "No, <<$gop_name_gg>> lick pussy, I will not"'
  1106. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1107. end
  1108. end
  1109. !===============================================================!
  1110. !sucking boobs
  1111. $shgopsex_eattits = {
  1112. cls
  1113. pcs_horny += 5
  1114. minut += ''+rand(1,3)+''
  1115. gs'stat'
  1116. dynamic $ind_stamina_npc
  1117. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/tits/eat'+rand(1,2)+'.jpg"></center>'
  1118. '<<$boydesc>> biting your tits.'
  1119. act 'To urge member between boobs': dynamic $shgopsex_fucktits
  1120. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1121. }
  1122. !drive between the breasts
  1123. $shgopsex_fucktits = {
  1124. cls
  1125. pcs_horny += 10
  1126. minut += ''+rand(2,7)+''
  1127. shgopsex_count -= 1
  1128. sh_bjandhj_cum = 1
  1129. gs'stat'
  1130. dynamic $ind_stamina_npc
  1131. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/tits/tj'+rand(1,9)+'.jpg"></center>'
  1132. '<<$boydesc>> He wants to drive your dick between boobs, and you do not mind.'
  1133. if shgopsex_count > 0:
  1134. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1135. !act 'Finish': gs 'gopsex', 'shgopsex_end'
  1136. end
  1137. if shgopsex_count = 0:
  1138. gs 'gopsex', 'shgopsex_end'
  1139. end
  1140. }
  1141. !play with breasts
  1142. if $ARGS[0] = 'shgopsex_tits':
  1143. cls
  1144. pcs_horny += 5
  1145. minut += ''+rand(1,4)+''
  1146. gs'stat'
  1147. dynamic $ind_stamina_npc
  1148. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/tits/tits'+rand(1,6)+'.jpg"></center>'
  1149. '- "Well <<$boydesc>> like my boobs <<$gop_text3>>?"'
  1150. '- "Yes <<$gop_name_gg>>, fucking tits you!"'
  1151. act 'Sucking boobs': dynamic $shgopsex_eattits
  1152. act 'To urge member between boobs': dynamic $shgopsex_fucktits
  1153. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1154. end
  1155. !===============================================================!
  1156. !work with your hands
  1157. if $ARGS[0] = 'shgopsex_hj':
  1158. cls
  1159. pcs_horny += 5
  1160. minut += ''+rand(3,7)+''
  1161. shgopsex_count -= 1
  1162. sh_bjandhj_cum = 1
  1163. gs'stat'
  1164. dynamic $ind_stamina_npc
  1165. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/hj'+rand(1,12)+'.jpg"></center>'
  1166. dynamic $text_sex_hj
  1167. dynamic $npc_orgasm
  1168. if shgopsex_count > 0:
  1169. act 'Sex selection': gt 'gopsex', 'shgopsex'
  1170. end
  1171. if shgopsex_count = 0:
  1172. gs 'gopsex', 'shgopsex_end'
  1173. end
  1174. end
  1175. !===============================================================!
  1176. !suck
  1177. if $ARGS[0] = 'shgopsex_bj':
  1178. cls
  1179. stat['bj'] +=1
  1180. pcs_horny += 10
  1181. minut += ''+rand(3,7)+''
  1182. if pcs_throat < 20: pcs_throat += 1
  1183. shgopsex_count -= 1
  1184. sh_bjandhj_cum = 1
  1185. gs'stat'
  1186. dynamic $ind_stamina_npc
  1187. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/oral/bj'+rand(1,25)+'.jpg"></center>'
  1188. dynamic $text_sex_bj
  1189. dynamic $npc_orgasm
  1190. if shgopsex_count > 0:
  1191. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1192. end
  1193. if shgopsex_count = 0:
  1194. gs 'gopsex', 'shgopsex_end'
  1195. end
  1196. end
  1197. !deep in her mouth
  1198. if $ARGS[0] = 'shgopsex_throat':
  1199. cls
  1200. pcs_throat += 1
  1201. pcs_horny += 10
  1202. minut += ''+rand(3,7)+''
  1203. shgopsex_count -= 1
  1204. sh_bjandhj_cum = 1
  1205. gs'stat'
  1206. dynamic $ind_stamina_npc
  1207. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/oral/throat'+rand(1,15)+'.jpg"></center>'
  1208. dynamic $text_sex_bjt
  1209. dynamic $npc_orgasm
  1210. if shgopsex_count > 0:
  1211. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1212. end
  1213. if shgopsex_count = 0:
  1214. gs 'gopsex', 'shgopsex_end'
  1215. end
  1216. end
  1217. !vagina!
  1218. !===============================================================!
  1219. !vagina!
  1220. if $ARGS[0] = 'shgopsex_vag':
  1221. cls
  1222. pcs_horny += 10
  1223. stat['vaginal'] += 1
  1224. minut += ''+rand(3,7)+''
  1225. shgopsex_count -= 1
  1226. sh_bjandhj_cum = 0
  1227. gs'stat'
  1228. dynamic $ind_stamina_npc
  1229. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/pussy/dog'+rand(1,20)+'.jpg"></center>'
  1230. gs 'gopsex', 'gg_devst_deflor'
  1231. dynamic $text_sex_doggy
  1232. gs 'gopsex', 'gg_sex_orgasm'
  1233. dynamic $npc_orgasm
  1234. if shgopsex_count > 0:
  1235. act 'Change position: missionary': dynamic $shgopsex_vag1
  1236. act 'Change position: horsewoman': dynamic $shgopsex_vag2
  1237. act 'Change position: sideways': dynamic $shgopsex_vag3
  1238. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1239. end
  1240. if shgopsex_count = 0:
  1241. gs 'gopsex', 'shgopsex_end'
  1242. end
  1243. end
  1244. $shgopsex_vag1 = {
  1245. cls
  1246. pcs_horny += 10
  1247. minut += ''+rand(3,7)+''
  1248. shgopsex_count -= 1
  1249. gs'stat'
  1250. dynamic $ind_stamina_npc
  1251. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/pussy/miss'+rand(1,20)+'.jpg"></center>'
  1252. dynamic $text_sex_miss
  1253. gs 'gopsex', 'gg_sex_orgasm'
  1254. dynamic $npc_orgasm
  1255. if shgopsex_count > 0:
  1256. act 'Change position: cancer': gt 'gopsex', 'shgopsex_vag'
  1257. act 'Change position: horsewoman': dynamic $shgopsex_vag2
  1258. act 'Change position: sideways': dynamic $shgopsex_vag3
  1259. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1260. end
  1261. if shgopsex_count = 0:
  1262. gs 'gopsex', 'shgopsex_end'
  1263. end
  1264. }
  1265. $shgopsex_vag2 = {
  1266. cls
  1267. pcs_horny += 10
  1268. minut += ''+rand(3,7)+''
  1269. shgopsex_count -= 1
  1270. gs'stat'
  1271. dynamic $ind_stamina_npc
  1272. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/pussy/cow'+rand(1,20)+'.jpg"></center>'
  1273. dynamic $text_sex_cow
  1274. gs 'gopsex', 'gg_sex_orgasm'
  1275. dynamic $npc_orgasm
  1276. if shgopsex_count > 0:
  1277. act 'Change position: cancer': gt 'gopsex', 'shgopsex_vag'
  1278. act 'Change position: missionary': dynamic $shgopsex_vag1
  1279. act 'Change position: sideways': dynamic $shgopsex_vag3
  1280. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1281. end
  1282. if shgopsex_count = 0:
  1283. gs 'gopsex', 'shgopsex_end'
  1284. end
  1285. }
  1286. $shgopsex_vag3 = {
  1287. cls
  1288. pcs_horny += 10
  1289. minut += ''+rand(3,7)+''
  1290. shgopsex_count -= 1
  1291. gs'stat'
  1292. dynamic $ind_stamina_npc
  1293. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/pussy/bok'+rand(1,3)+'.jpg"></center>'
  1294. 'sideways'
  1295. gs 'gopsex', 'gg_sex_orgasm'
  1296. dynamic $npc_orgasm
  1297. if shgopsex_count > 0:
  1298. act 'Change position: cancer': gt 'gopsex', 'shgopsex_vag'
  1299. act 'Change position: missionary': dynamic $shgopsex_vag1
  1300. act 'Change position: horsewoman': dynamic $shgopsex_vag2
  1301. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1302. end
  1303. if shgopsex_count = 0:
  1304. gs 'gopsex', 'shgopsex_end'
  1305. end
  1306. }
  1307. !anal!
  1308. !===============================================================!
  1309. !anal!
  1310. if $ARGS[0] = 'shgopsex_anal':
  1311. cls
  1312. pcs_horny += 5
  1313. minut += ''+rand(3,7)+''
  1314. stat['anal'] += 1
  1315. shgopsex_count -= 1
  1316. sh_bjandhj_cum = 0
  1317. gs'stat'
  1318. dynamic $ind_stamina_npc
  1319. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/anal/dog'+rand(1,20)+'.jpg"></center>'
  1320. dynamic $gop_sex_analplugin
  1321. dynamic $gop_sex_lubri
  1322. dynamic $text_sex_doggy_anal
  1323. gs 'gopsex', 'gg_sex_orgasm'
  1324. dynamic $npc_orgasm
  1325. if shgopsex_count > 0:
  1326. act 'Change position: missionary': dynamic $shgopsex_anal1
  1327. act 'Change position: horsewoman': dynamic $shgopsex_anal2
  1328. act 'Change position: sideways': dynamic $shgopsex_anal3
  1329. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1330. end
  1331. if shgopsex_count = 0:
  1332. gs 'gopsex', 'shgopsex_end'
  1333. end
  1334. end
  1335. $shgopsex_anal1 = {
  1336. cls
  1337. pcs_horny += 5
  1338. minut += ''+rand(3,7)+''
  1339. shgopsex_count -= 1
  1340. gs'stat'
  1341. dynamic $ind_stamina_npc
  1342. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/anal/miss'+rand(1,20)+'.jpg"></center>'
  1343. dynamic $gop_sex_analplugin
  1344. dynamic $gop_sex_lubri
  1345. dynamic $text_sex_miss_anal
  1346. gs 'gopsex', 'gg_sex_orgasm'
  1347. dynamic $npc_orgasm
  1348. if shgopsex_count > 0:
  1349. act 'Change position: cancer': gt 'gopsex', 'shgopsex_anal'
  1350. act 'Change position: horsewoman': dynamic $shgopsex_anal2
  1351. act 'Change position: sideways': dynamic $shgopsex_anal3
  1352. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1353. end
  1354. if shgopsex_count = 0:
  1355. gs 'gopsex', 'shgopsex_end'
  1356. end
  1357. }
  1358. $shgopsex_anal2 = {
  1359. cls
  1360. pcs_horny += 5
  1361. minut += ''+rand(3,7)+''
  1362. shgopsex_count -= 1
  1363. gs'stat'
  1364. dynamic $ind_stamina_npc
  1365. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/anal/cow'+rand(1,20)+'.jpg"></center>'
  1366. dynamic $gop_sex_analplugin
  1367. dynamic $gop_sex_lubri
  1368. dynamic $text_sex_cow_anal
  1369. gs 'gopsex', 'gg_sex_orgasm'
  1370. dynamic $npc_orgasm
  1371. if shgopsex_count > 0:
  1372. act 'Change position: cancer': gt 'gopsex', 'shgopsex_anal'
  1373. act 'Change position: missionary': dynamic $shgopsex_anal1
  1374. act 'Change position: sideways': dynamic $shgopsex_anal3
  1375. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1376. end
  1377. if shgopsex_count = 0:
  1378. gs 'gopsex', 'shgopsex_end'
  1379. end
  1380. }
  1381. $shgopsex_anal3 = {
  1382. cls
  1383. pcs_horny += 5
  1384. minut += ''+rand(3,7)+''
  1385. shgopsex_count -= 1
  1386. gs'stat'
  1387. dynamic $ind_stamina_npc
  1388. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/sex/anal/bok'+rand(1,9)+'.jpg"></center>'
  1389. dynamic $gop_sex_analplugin
  1390. dynamic $gop_sex_lubri
  1391. 'on the side'
  1392. gs 'gopsex', 'gg_sex_orgasm'
  1393. dynamic $npc_orgasm
  1394. if shgopsex_count > 0:
  1395. act 'Change position: cancer': gt 'gopsex', 'shgopsex_anal'
  1396. act 'Change position: missionary': dynamic $shgopsex_anal1
  1397. act 'Change position: horsewoman': dynamic $shgopsex_anal2
  1398. act 'Sex selection': gs 'gopsex', 'shgopsex'
  1399. end
  1400. if shgopsex_count = 0:
  1401. gs 'gopsex', 'shgopsex_end'
  1402. end
  1403. }
  1404. !ending!
  1405. !===============================================================!
  1406. !Cum in mouth
  1407. $shgopsex_swallow = {
  1408. cls
  1409. minut += ''+rand(1,3)+''
  1410. swallow += 1
  1411. gs'stat'
  1412. gs 'boyStat', $gop_ID_npc
  1413. sexpartkno = 1
  1414. spafinloc = 12
  1415. gs 'cum_manage'
  1416. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/swallow'+rand(1,12)+'.jpg"></center>'
  1417. dynamic $text_sex_cumm
  1418. act 'Leave': gt 'shulga_room', 'start'
  1419. }
  1420. !Cum on face
  1421. $shgopsex_cumface = {
  1422. cls
  1423. minut += ''+rand(1,3)+''
  1424. gs 'boyStat', $gop_ID_npc
  1425. sexpartkno = 1
  1426. spafinloc = 11
  1427. gs 'cum_manage'
  1428. facial +=1
  1429. gs'stat'
  1430. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/cumface'+rand(1,17)+'.jpg"></center>'
  1431. dynamic $text_sex_cumface
  1432. act 'Leave': gt 'shulga_room', 'start'
  1433. }
  1434. !Cum on body
  1435. $shgopsex_cumbelly = {
  1436. cls
  1437. minut += ''+rand(1,3)+''
  1438. spafinloc = 14
  1439. gs 'cum_manage'
  1440. gs'stat'
  1441. gs 'boyStat', $gop_ID_npc
  1442. sexpartkno = 1
  1443. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/cumbody'+rand(1,15)+'.jpg"></center>'
  1444. dynamic $text_sex_cumbody
  1445. act 'Leave': gt 'shulga_room', 'start'
  1446. }
  1447. !Cum in pussy
  1448. $shgopsex_cumvag = {
  1449. cls
  1450. minut += ''+rand(1,3)+''
  1451. gs 'cum_manage'
  1452. gs'stat'
  1453. gs 'boyStat', $gop_ID_npc
  1454. sexpartkno = 1
  1455. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/cumvag'+rand(1,5)+'.jpg"></center>'
  1456. dynamic $text_sex_cumvag
  1457. act 'Leave': gt 'shulga_room', 'start'
  1458. }
  1459. !ending in the ass
  1460. $shgopsex_cumanal = {
  1461. cls
  1462. minut += ''+rand(1,3)+''
  1463. gs 'boyStat', $gop_ID_npc
  1464. sexpartkno = 1
  1465. spafinloc = 4
  1466. gs 'cum_manage'
  1467. gs'stat'
  1468. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/cumass'+rand(1,6)+'.jpg"></center>'
  1469. dynamic $text_sex_cumass
  1470. act 'Leave': gt 'shulga_room', 'start'
  1471. }
  1472. !END============END==============END==============END=================END!
  1473. !==============!
  1474. !group sex!
  1475. !===============================================================!
  1476. !text!
  1477. !-----!
  1478. !sucking all at once
  1479. $text_sex_group_bjall = {
  1480. txt_sex_group_bjall = RAND(1,3)
  1481. if txt_sex_group_bjall = 1:$txt_sex_group_bjall = 'You began to do blowjob to three at a time, guys crammed his prick into your mouth.
  1482. Groaning you swallowed their big cocks. While sucking one end, two arms rigidly wanker the other two. The boys were on top of the world.'
  1483. if txt_sex_group_bjall = 2:$txt_sex_group_bjall = '-swallow bitch, and then choke on a dick!, - Deng ordered, - I will teach you now suck, Now you have me take two members!
  1484. -Vitek, that stand watch? to get member, I can see now how you should, And let Vasya let on Fingering.
  1485. The children woke up from the contemplation of the picture, Dan fucks your mouth. Vitya and Vasya come to you, unbuttoned pants and lowered them down with shorts.
  1486. -Come on <<$pcs_nickname>>, Take in my mouth , too, - so cute and just asked Vitek.
  1487. Dan just took out my dick in your mouth, I turned your head and planted it on the member Vic. He made a few moves up and down and then turned me around to its members.
  1488. So you fucked in the mouth has two. After a while, I joined Bob. In order not to suffocate, you had to adjust themselves to breathe in between members.
  1489. The only thing that you did not go, so it is not choked when their members were particularly deep in your throat. You gouged out eyes, choking, coughing, you were given a brief respite , and start all over again. '
  1490. if txt_sex_group_bjall = 3:$txt_sex_group_bjall = 'Vitek felt a freedom of action and putting in your mouth his dick for the most eggs, sometimes I pulled out and drove you on the lips.
  1491. Bob watched-looked, and then , too, he pulled out his penis and already excited to stand beside Vityok and they in turn thrust into your mouth its members sometimes two at once.
  1492. A few minutes later and joined Dan, fuck your mouth has three, the turns, is trying to push through just three dick...'
  1493. '<<$txt_sex_group_bjall>>'
  1494. }
  1495. !suction at a time
  1496. $text_sex_group_bj = {
  1497. txt_sex_group_bj = RAND(1,5)
  1498. if txt_sex_group_bj = 1:$txt_sex_group_bj = 'The guys will put you on your knees and began to masturbate over the face. You began to serve them one by one, first couple of minutes sucking one, then the second, third.
  1499. This went on for a decent amount of time. You great pleasure, stand there and serve children.'
  1500. if txt_sex_group_bj = 2:$txt_sex_group_bj = 'You put on your knees and get you started on a circle suck all present children. '
  1501. if txt_sex_group_bj = 3:$txt_sex_group_bj = 'The children began around you and took turns to give your mouth.'
  1502. if txt_sex_group_bj = 4:$txt_sex_group_bj = 'Here you are standing on the knees and you take turns fuck in the mouth, Matza for boobs, give light slaps and name-calling as the last whore. And you all just more plants.'
  1503. if txt_sex_group_bj = 5:$txt_sex_group_bj = 'You sit on your lap with his mouth open, and the guys take turns and approach you with no hands, nasazhivayas deeply his wonderful mouth. No, you do not suck, You just hard fuck in mouth.'
  1504. '<<$txt_sex_group_bj>>'
  1505. }
  1506. !Vaginal fucking and sucking:
  1507. $text_sex_group_vag = {
  1508. txt_sex_group_vag = RAND(1,2)
  1509. if txt_sex_group_vag = 1:$txt_sex_group_vag = '- Now suck - Deng ordered.
  1510. You obeyed and sat down at his cock, hard working language. You lick his sweaty balls, then licked all the base and slowly licking the barrel got to head.
  1511. Then you began to swallow his cock almost to its foundation. Near perched Bob and asked him to suck too, and you began to handle his mouth two members.
  1512. And Victor , meanwhile, began to get a job back. You feel his fingers Spreading your hole, and wider legs apart. After a moment, you feel his tool is included in your crotch.
  1513. He rhythmically began to fuck you, managing to caress your breasts and ass. The tool he was strong enough and every time you enter his head rested against you in the very womb.
  1514. After five minutes of this they decided to change trahalki.'
  1515. if txt_sex_group_vag = 2:$txt_sex_group_vag = '-What do you whore split, Bob entertain her mouth, and then I see you strut iron, so at least you''ll understand business dick!, said Dan
  1516. Bob walked with obvious enthusiasm and put your cock in her mouth. His cock was not as big, like Dan, but the power is not inferior.
  1517. He enthusiastically began to knead the depth of your throat, look with admiration, how to take out your lips to his pubis and eggs.
  1518. Here your mouth still perched Vitek, and H had already completely put you dick in the vagina and began to pump sweeping movements.
  1519. So you find yourself nasazhannoy to members on both sides. However, they, by agreement, We bumped into you at the same time members, increasing the depth of penetration.
  1520. In their happy moans, you get the idea, it''s crazy like them.'
  1521. '<<$txt_sex_group_vag>>'
  1522. }
  1523. !anal sex and sucking:
  1524. $text_sex_group_anal = {
  1525. txt_sex_group_anal = RAND(1,2)
  1526. if txt_sex_group_anal = 1:$txt_sex_group_anal = 'Here the boys have a desire to fuck your ass. You accepted it with joy. You have put in a comfortable position , and Bob began to fuck you in the ass, the rest of you masturbate and suck dicks.
  1527. After a while the guys have changed, Bob pulled the dick out of your ass and put you in the mouth, and Daniel fell in behind and began to fuck your point.
  1528. With each push you overlap breath, with each output member deep in your mouth you are choking.
  1529. And behind the heat started, Dan and Vitek in turn began to tear your ass. Apparently it is really delivers unprecedented pleasure to fuck in the ass, then give in mouth.'
  1530. if txt_sex_group_anal = 2:$txt_sex_group_anal = 'So let''s take the two on the sides one at the rear - Deng ordered. You tilt, with his hands, Two boys stood on the sides, having put its members to your face, the third came back to you, and, Fingered your ass, became a member of poking between the rolls is attached to your ring anus.
  1531. When the last member came into your hole. You issued a moan of pleasure. Vitek started to fuck you, you then turning his head to one side or the other, They began to lick the members standing next to you guys.
  1532. Gradually the pace of a member in your ass louder, with him was growing and your own excitement.'
  1533. '<<$txt_sex_group_anal>>'
  1534. }
  1535. !double penetration and extraction:
  1536. $text_sex_group_dp = {
  1537. txt_sex_group_dp = RAND(1,4)
  1538. if txt_sex_group_dp = 1:$txt_sex_group_dp = 'Dan pulled you into his chest and began to force and push deep into you my dick, pulling up to the uterus. Then he turned his head to him and said Vaska, To end jerk and began to fuck you in the ass.
  1539. That only this and waited, one bound he was near you, and, kneeling, Member began to insert you in the ass.
  1540. Dan firmly clasped your hands back and froze, allowing Vaska shove member. Naturally, developed ass, He took his penis almost without problems.
  1541. Though when his member pushed his way past the huge member Dan, you thought, they broke the wall between holes and now fuck a big hole.
  1542. At this point, I could not resist this picture and Vitek came to your mouth and stuck his prick, you started skillfully lick his dick.
  1543. And behind first moved only Vasya, and Dan blissfully lay crushed under you , and your breasts. Then they turn to enter into you, but it seemed not enough, and they account again, They began to shoot with me members.
  1544. You get caught in between, like patty in a bun, Even the head was occupied by a dick. You could just muffled groan, while you are getting into their members. '
  1545. if txt_sex_group_dp = 2:$txt_sex_group_dp = 'The three of them, We began to fuck you, Dan pussy, Vitek in the ass, and Vasily got your mouth, they gradually increasing the pace and depth of penetration.
  1546. Vitek so carefully and gently began to knead your breasts and kiss the body, and Dan stroked and rocking your ass, helping you to sit down on their members, you on this head began to happen strange metamorphoses.
  1547. The children finally began to show as much affection, you are even slightly relaxed and began to enjoy.
  1548. You have even started a little podmahivat them backwards, planting helping their members and works hard propihivaya head deeper into the throat of a member of the Basil.
  1549. Vitek was whispering to you all sorts of vulgarity type: that you are the best whore in his life, it is better to fuck a girl he did not , and so on. '
  1550. if txt_sex_group_dp = 3:$txt_sex_group_dp = 'Putting Victor on his back, sat on his cock deep, you are not moving fast ,nasazhivalas the entire depth, at the same time taking in the mouth member Dan, who tried to shove his dick deep.
  1551. Such a buzz you never experienced. There were only one desire - that it never ends! And then your ass raw walked very carefully member Basil.
  1552. It was wonderful! You felt, as two members share only a thin partition. You have from all sides like a rubber doll. '
  1553. if txt_sex_group_dp = 4:$txt_sex_group_dp = 'You have got to Vasya , and sat down on his cock. Member slowly enters your flesh, delivering an incredible pleasure to its owner. Dan, taking out his real fighter, I became clumsy poke you in the ass.
  1554. His cock was long and thin. Initially, the anus resisted and did not let the persistent fighter. Dan stepped up the pressure, his cock was bent, slightly wrinkled. But gradually, first a small part, and then the entire head disappeared in your ass, leaving the outside of the foreskin.
  1555. Some time later, Dan drove the vengeance of his long handsome in your ass. Bob puffed over you, nasazhivaya your vagina, publishing sucking sounds. You writhed on members, inside was growing long-forgotten feeling of impending orgasm.
  1556. The lip poked, that-something soft and warm. He was a member of Viti. Opening his eyes, you took his penis in his hand, and began to passionately suck his head. At the same time working on the trunk by hand.'
  1557. '<<$txt_sex_group_dp>>'
  1558. }
  1559. !double penetration in the ass:
  1560. $text_sex_group_dpa = {
  1561. $txt_sex_group_dpa = 'Dan pulled you into his chest and began to force and push deep into your ass your dick. Then he turned his head to Basil and told him, To end jerk and began to insert dick in the ass Svetkin.
  1562. That only this and waited, one bound he was near you, and, kneeling, Member you started putting in the anus.
  1563. Dan firmly clasped your hands back and froze, allowing Vaska shove member. Naturally, developed ass, He took his penis almost without problems.
  1564. When he propihnul his penis and now together they fuck a big hole. You think that this is your point never closes, Luza and be gay any size.
  1565. I could not resist this picture and Vitek came to your mouth , and his prick prisunul, you started skillfully lick his dick, actively podmahivaet actively nasazhivayas ass on dicks guys.'
  1566. '<<$txt_sex_group_dpa>>'
  1567. }
  1568. !double penetration in the ass:
  1569. $text_sex_group_triple = {
  1570. $txt_sex_group_triple = 'Boys, removing remnants of clothes with you, put you on the bed. You give into their hands like a rubber doll, which you can realize all the fantasies.
  1571. You do not have time to recover, like you have fucked in the ass in three dick. Your body is just used as they wanted...'
  1572. '<<$txt_sex_group_triple>>'
  1573. }
  1574. !sex selection:
  1575. if $ARGS[0] = 'shgopsex_group':
  1576. cla
  1577. gs'stat'
  1578. group_sex_text = RAND(0,8)
  1579. if group_sex_text = 0:$group_sex_text = '- "Well, what <<$gop_text_npcr>> like me <<$gop_sextext1>> awake?", playfully ask you.'
  1580. if group_sex_text = 1:$group_sex_text = '- "<<$gop_gg_name>> How you <<$gop_sextext1>> will?", asks <<$gop_name_npc>>.'
  1581. if group_sex_text = 2:$group_sex_text = '- "<<$gop_gg_name>>, Prepare hollow, Empty schA around!", speaks <<$gop_family_npc>>.'
  1582. if group_sex_text = 3:$group_sex_text = '- "<<$gop_name_gg>>, I can see, holes that itch you, ebatsa want because!?", asks <<$gop_name_npc>>.'
  1583. if group_sex_text = 4:$group_sex_text = '- "<<$gop_name_gg>> - <<$gop_gg_name>>, Three dick is ready to serve?", asks <<$gop_name_npc>>.'
  1584. if group_sex_text = 5:$group_sex_text = '- "<<$gop_name_gg>>, may we love you in all holes at once <<$gop_sextext1>> will?", asks <<$gop_name_npc>>.'
  1585. if group_sex_text = 6:$group_sex_text = '-"<<$gop_name_gg>>, you''re our <<$gop_gg_name>>, Let''s get into all the cracks!", speaks <<$gop_family_npc>>.'
  1586. if group_sex_text = 7:$group_sex_text = 'You have winked and said, kid: -"Your Boys <<$gop_name_gg>> ready for anything, as <<$gop_sextext1>> want to?".'
  1587. if group_sex_text = 8:$group_sex_text = 'You will fucking smiled and said,: -"Your <<$gop_name_gg>> He wants Cum, as <<$gop_sextext1>> awake?".'
  1588. ''
  1589. '<<$group_sex_text>>'
  1590. if mesec > 0 and pcs_vag >=1:
  1591. '<font color = red><b>you warn, that you have a monthly access and pussy closed!</b></font>'
  1592. elseif mesec <=0 and pcs_vag <=0:
  1593. '<font color = red><b>you warn, you are saving her virginity, this does not give in pussy!</b></font>'
  1594. end
  1595. act 'Suck on line': dynamic $shgopsex_group_bj
  1596. if stat['bj'] >= 50:
  1597. act 'Suck all at once': dynamic $shgopsex_group_bja
  1598. end
  1599. if pcs_vag >=1 and mesec <=0:
  1600. act 'The pussy': dynamic $shgopsex_group_vag
  1601. end
  1602. act 'In the ass': dynamic $shgopsex_group_anal
  1603. if pcs_vag >=1 and mesec <=0:
  1604. act 'In the pussy and ass': dynamic $shgopsex_group_dp
  1605. end
  1606. if pcs_ass >= 20:
  1607. act 'Two members in the ass': dynamic $shgopsex_group_twoanal
  1608. end
  1609. if pcs_ass >= 30:
  1610. act 'Three members in the ass': dynamic $shgopsex_group_tripleanal
  1611. end
  1612. if pcs_dom => 10:
  1613. act 'Leave': gt 'shulga_room', 'start'
  1614. end
  1615. end
  1616. !ending sex
  1617. $shgopsex_group_end = {
  1618. cla
  1619. gs'stat'
  1620. !'<<shgopsex_group_count>>'
  1621. !if you suck, cum in mouth, face or body
  1622. if sh_bjandhj_cum >=1:
  1623. act 'In the mouth': dynamic $shgopsex_group_swallow
  1624. act 'On the face': dynamic $shgopsex_group_cumface
  1625. act 'On the body': dynamic $shgopsex_group_cumbelly
  1626. !If you fucked, we finish anywhere
  1627. elseif sh_bjandhj_cum <=0:
  1628. act 'In the mouth': dynamic $shgopsex_group_swallow
  1629. act 'On the face': dynamic $shgopsex_group_cumface
  1630. act 'On the body': dynamic $shgopsex_group_cumbelly
  1631. act 'The pussy': dynamic $shgopsex_group_cumvag
  1632. act 'In the ass': dynamic $shgopsex_group_cumanal
  1633. end
  1634. }
  1635. !suction at a time
  1636. $shgopsex_group_bj = {
  1637. cls
  1638. if pcs_throat < 20: pcs_throat += 1
  1639. pcs_horny += 5
  1640. minut += ''+rand(7,12)+''
  1641. shgopsex_group_count -= 1
  1642. sh_bjandhj_cum = 1
  1643. gs'stat'
  1644. dynamic $ind_stamina_groupnpc
  1645. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/oral/bj'+rand(1,3)+'.jpg"></center>'
  1646. dynamic $text_sex_group_bj
  1647. dynamic $npc_orgasm
  1648. if shgopsex_group_count > 0:
  1649. act 'Sex selection': gs 'gopsex', 'shgopsex_group'
  1650. !act 'Finish': dynamic $shgopsex_group_end
  1651. end
  1652. if shgopsex_group_count = 0:
  1653. dynamic $shgopsex_group_end
  1654. end
  1655. }
  1656. !sucking all at once
  1657. $shgopsex_group_bja = {
  1658. cls
  1659. if pcs_throat < 20: pcs_throat += 1
  1660. pcs_horny += 10
  1661. minut += ''+rand(5,10)+''
  1662. shgopsex_group_count -= 1
  1663. sh_bjandhj_cum = 1
  1664. gs'stat'
  1665. dynamic $ind_stamina_groupnpc
  1666. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/oral/bja'+rand(1,25)+'.jpg"></center>'
  1667. dynamic $text_sex_group_bjall
  1668. dynamic $npc_orgasm
  1669. if shgopsex_group_count > 0:
  1670. act 'Sex selection': gs 'gopsex', 'shgopsex_group'
  1671. !act 'Finish': dynamic $shgopsex_group_end
  1672. end
  1673. if shgopsex_group_count = 0:
  1674. stat['anal'] +=3
  1675. stat['vaginal'] +=3
  1676. stat['bj'] +=3
  1677. dynamic $shgopsex_group_end
  1678. end
  1679. }
  1680. !give in pussy
  1681. $shgopsex_group_vag = {
  1682. cls
  1683. pcs_horny += 10
  1684. minut += ''+rand(10,15)+''
  1685. shgopsex_group_count -= 1
  1686. sh_bjandhj_cum = 0
  1687. if pcs_vag < 20: pcs_vag += 1
  1688. gs'stat'
  1689. dynamic $ind_stamina_groupnpc
  1690. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/vag'+rand(1,26)+'.jpg"></center>'
  1691. dynamic $text_sex_group_vag
  1692. gs 'gopsex', 'gg_sex_orgasm'
  1693. dynamic $npc_orgasm
  1694. if shgopsex_group_count > 0:
  1695. act 'Sex selection': gs 'gopsex', 'shgopsex_group'
  1696. !act 'Finish': dynamic $shgopsex_group_end
  1697. end
  1698. if shgopsex_group_count = 0:
  1699. stat['anal'] +=3
  1700. stat['vaginal'] +=3
  1701. stat['bj'] +=3
  1702. dynamic $shgopsex_group_end
  1703. end
  1704. }
  1705. !to ass
  1706. $shgopsex_group_anal = {
  1707. cls
  1708. if pcs_ass < 20: pcs_ass += 1
  1709. pcs_horny += 10
  1710. minut += ''+rand(10,15)+''
  1711. shgopsex_group_count -= 1
  1712. sh_bjandhj_cum = 0
  1713. gs'stat'
  1714. dynamic $ind_stamina_groupnpc
  1715. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/anal'+rand(1,18)+'.jpg"></center>'
  1716. dynamic $gop_groupsex_analplugin
  1717. dynamic $gop_groupsex_lubri
  1718. dynamic $text_sex_group_anal
  1719. gs 'gopsex', 'gg_sex_orgasm'
  1720. dynamic $npc_orgasm
  1721. if shgopsex_group_count > 0:
  1722. act 'Sex selection': gs 'gopsex', 'shgopsex_group'
  1723. !act 'Finish': dynamic $shgopsex_group_end
  1724. end
  1725. if shgopsex_group_count = 0:
  1726. stat['anal'] +=3
  1727. stat['vaginal'] +=3
  1728. stat['bj'] +=3
  1729. dynamic $shgopsex_group_end
  1730. end
  1731. }
  1732. !dp
  1733. $shgopsex_group_dp = {
  1734. cls
  1735. pcs_horny += 20
  1736. minut += ''+rand(7,15)+''
  1737. shgopsex_group_count -= 1
  1738. sh_bjandhj_cum = 0
  1739. if pcs_vag < 20: pcs_vag += 1
  1740. gs'stat'
  1741. dynamic $ind_stamina_groupnpc
  1742. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/dp'+rand(1,30)+'.jpg"></center>'
  1743. dynamic $gop_groupsex_analplugin
  1744. dynamic $gop_groupsex_lubri
  1745. dynamic $text_sex_group_dp
  1746. gs 'gopsex', 'gg_sex_orgasm'
  1747. dynamic $npc_orgasm
  1748. if shgopsex_group_count > 0:
  1749. act 'Sex selection': gs 'gopsex', 'shgopsex_group'
  1750. !act 'Finish': dynamic $shgopsex_group_end
  1751. end
  1752. if shgopsex_group_count = 0:
  1753. stat['anal'] +=3
  1754. stat['vaginal'] +=3
  1755. stat['bj'] +=3
  1756. dynamic $shgopsex_group_end
  1757. end
  1758. }
  1759. !two dick in the ass
  1760. $shgopsex_group_twoanal = {
  1761. cls
  1762. pcs_horny += 15
  1763. minut += ''+rand(7,15)+''
  1764. shgopsex_group_count -= 1
  1765. sh_bjandhj_cum = 0
  1766. if pcs_ass < 30: pcs_ass += 1
  1767. gs'stat'
  1768. dynamic $ind_stamina_groupnpc
  1769. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/dpa'+rand(1,10)+'.jpg"></center>'
  1770. dynamic $gop_groupsex_analplugin
  1771. dynamic $gop_groupsex_lubri
  1772. dynamic $text_sex_group_dpa
  1773. gs 'gopsex', 'gg_sex_orgasm'
  1774. dynamic $npc_orgasm
  1775. if shgopsex_group_count > 0:
  1776. act 'Sex selection': gs 'gopsex', 'shgopsex_group'
  1777. !act 'Finish': dynamic $shgopsex_group_end
  1778. end
  1779. if shgopsex_group_count = 0:
  1780. stat['anal'] +=3
  1781. stat['vaginal'] +=3
  1782. stat['bj'] +=3
  1783. dynamic $shgopsex_group_end
  1784. end
  1785. }
  1786. !Three dick in the ass
  1787. $shgopsex_group_tripleanal = {
  1788. cls
  1789. pcs_horny += 20
  1790. minut += ''+rand(5,15)+''
  1791. shgopsex_group_count -= 1
  1792. sh_bjandhj_cum = 0
  1793. gs'stat'
  1794. dynamic $ind_stamina_groupnpc
  1795. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/sex/triple'+rand(1,4)+'.jpg"></center>'
  1796. dynamic $gop_groupsex_analplugin
  1797. dynamic $gop_groupsex_lubri
  1798. dynamic $text_sex_group_triple
  1799. gs 'gopsex', 'gg_sex_orgasm'
  1800. dynamic $npc_orgasm
  1801. if shgopsex_group_count > 0:
  1802. act 'Sex selection': gs 'gopsex', 'shgopsex_group'
  1803. !act 'Finish': dynamic $shgopsex_group_end
  1804. end
  1805. if shgopsex_group_count = 0:
  1806. stat['anal'] +=3
  1807. stat['vaginal'] +=3
  1808. stat['bj'] +=3
  1809. dynamic $shgopsex_group_end
  1810. end
  1811. }
  1812. !=========!
  1813. !ending!
  1814. !---------!
  1815. !Cum on face
  1816. $shgopsex_group_cumface = {
  1817. cls
  1818. gs 'boyStat', $gop_ID_npc
  1819. sexpartkno = 1
  1820. spafinloc = 11
  1821. gs 'cum_manage'
  1822. facial +=1
  1823. pcs_hairbsh = 0
  1824. minut += ''+rand(2,5)+''
  1825. gs'stat'
  1826. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/cumface'+rand(1,23)+'.jpg"></center>'
  1827. '<<$gop_text_npcr>> obkonchalsya your pretty face.'
  1828. act 'Leave': gt 'shulga_room', 'start'
  1829. }
  1830. !Cum in mouth
  1831. $shgopsex_group_swallow = {
  1832. cls
  1833. gs 'boyStat', $gop_ID_npc
  1834. sexpartkno = 1
  1835. spafinloc = 12
  1836. gs 'cum_manage'
  1837. swallow += 1
  1838. pcs_hairbsh = 0
  1839. minut += ''+rand(2,5)+''
  1840. gs'stat'
  1841. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/swallow'+rand(1,12)+'.jpg"></center>'
  1842. '<<$gop_text_npcr>> We poured semen into your mouth and you swallow it.'
  1843. act 'Leave': gt 'shulga_room', 'start'
  1844. }
  1845. !Cum on body
  1846. $shgopsex_group_cumbelly = {
  1847. cls
  1848. gs 'boyStat', $gop_ID_npc
  1849. sexpartkno = 1
  1850. spafinloc = 14
  1851. gs 'cum_manage'
  1852. pcs_hairbsh = 0
  1853. minut += ''+rand(2,5)+''
  1854. gs'stat'
  1855. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/cumbody'+rand(1,15)+'.jpg"></center>'
  1856. '<<$gop_text_npcr>> obtruhali your whole body.'
  1857. act 'Leave': gt 'shulga_room', 'start'
  1858. }
  1859. !Cum in pussy
  1860. $shgopsex_group_cumvag = {
  1861. cls
  1862. gs 'boyStat', $gop_ID_npc
  1863. gs 'cum_manage'
  1864. pcs_hairbsh = 0
  1865. minut += ''+rand(2,5)+''
  1866. gs'stat'
  1867. '<center><img src="images/locations/pavlovsk/resident/apartment/shulginhome/bigroom/gopsex/group/cum/cumvag'+rand(1,6)+'.jpg"></center>'
  1868. '<<$gop_text_npcr>> in turn, poured out to you in the pussy.'
  1869. act 'Leave': gt 'shulga_room', 'start'
  1870. }
  1871. !ending in the ass
  1872. $shgopsex_group_cumanal = {
  1873. cls
  1874. gs 'boyStat', $gop_ID_npc
  1875. sexpartkno = 1
  1876. spafinloc = 4
  1877. gs 'cum_manage'
  1878. pcs_hairbsh = 0
  1879. minut += ''+rand(2,5)+''
  1880. gs'stat'
  1881. '<center><img src="images/pc/body/cum/cumass/cumass'+rand(1,19)+'.jpg"></center>'
  1882. '<<$gop_text_npcr>> in turn, pumped up your asshole with sperm.'
  1883. act 'Leave': gt 'shulga_room', 'start'
  1884. }
  1885. --- gopsex ---------------------------------